Skip to content

Instantly share code, notes, and snippets.

View eltoncezar's full-sized avatar
💤

Elton Cezar eltoncezar

💤
View GitHub Profile
@manualbashing
manualbashing / blog.md
Last active October 8, 2025 18:30 — forked from joncloud/pr.md
Checkout Azure DevOps Pull Requests locally

Forked from piscisaureus

Fetch and checkout one specific pull request

To identify one particular pull request, find the pull request number on the Azure DevOps site:

image

Then fetch and checkout the pull request in a local branch named pull/137

@aesophor
aesophor / remove-firefox-sound-tab.scss
Last active February 27, 2026 03:33 — forked from superbiche/remove-firefox-sound-tab.scss
Disable sound indicator icons in Firefox pinned tabs
Paste this fucking shit into userChrome.css
```
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
.tabbrowser-tab[pinned] :-moz-any(.tab-icon-overlay[soundplaying]) {
display: none !important;
}
```