- Go to the Homebrew Cask GitHub Project Page.
- Click “Find File” (Shortcut: T).
- Type in the application name.
- Click the *.rb file of the application you need.
- Click “History.”
- Find the version you need by reading the commit messages and viewing the raw file. Confirm the version variable (normally on line 2) is the version you need.
- Copy the raw link to the file.
- Install the specific version you need using brew cask install.
ssh-add --apple-use-keychain ~/.ssh/id_ed25519sudo touch ~/.ssh/configsudo nano ~/.ssh/config
Host *
UseKeychain yes
AddKeysToAgent yes
IdentityFile ~/.ssh/id_ed25519)+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:
\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(
?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[
\t]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\0
31]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\
](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+
(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:
(?:\r\n)?[ \t])*))*|(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z
|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Type in terminal nano ~/.inputrc | |
| set completion-ignore-case on | |
| set show-all-if-ambiguous on | |
| TAB: menu-complete | |
| # CTRL + O, CTRL + X | |
| # Reopen terminal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Problem with tests on Windows: Jest encountered an unexpected token... SyntaxError: Unexpected token... | |
| // Reason: Node.js treats slashes differently on Unix => foo/bar and Windows => foo\\bar | |
| // Solution: Use Regex for both systems [/\\\\] | |
| module.exports = { | |
| transform: { | |
| 'foo[/\\\\]bar[/\\\\].*\\.svg$': require.resolve('./mocks/svg.js'), | |
| }, | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (allTimeShekeli <= 500) { | |
| slogan.innerHTML = "Ты уличный еврей."; | |
| } else if (allTimeShekeli <= 1000) { | |
| slogan.innerHTML = "Ты воруешь деньги у котов и собак."; | |
| } else if (allTimeShekeli <= 5000) { | |
| slogan.innerHTML = "Твои навыки поражают всю твою семью."; | |
| } else if (allTimeShekeli <= 10000) { | |
| slogan.innerHTML = "Ты воруешь деньги у местных политиков."; | |
| } else if (allTimeShekeli <= 20000) { | |
| slogan.innerHTML = "Ты начал курс 'Юного Еврея'"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| MAC: | |
| /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --args --disable-web-security | |
| Windows: | |
| "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-web-security |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function fakeDefaultExport(moduleRelativePath, stubs) { | |
| if (require.cache[require.resolve(moduleRelativePath)]) { | |
| delete require.cache[require.resolve(moduleRelativePath)]; | |
| } | |
| Object.keys(stubs).forEach(function (dependencyRelativePath) { | |
| require.cache[require.resolve(dependencyRelativePath)] = { | |
| exports: stubs[dependencyRelativePath] | |
| }; | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ! Updated on: 21.02.2022 | |
| ! 2020-11-23 https://meduza.io | |
| meduza.io##.App-bannerTop | |
| meduza.io##.DFPBanner-inorder.DFPBanner-root | |
| ! https://observador.pt | |
| observador.pt##body.premium-article:not(.premium-user) .article-body p:not(:first-child):style(opacity: 1 !important; visibility: visible !important;) | |
| observador.pt##body.premium-article:not(.premium-user) .article-body:not(:first-child):style(opacity: 1 !important; visibility: visible !important;) | |
| observador.pt##body.premium-article:not(.premium-user) .article-block:style(opacity: 1 !important; visibility: visible !important;) |
NewerOlder