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
| /** | |
| * Using Operator Mono in Atom | |
| * | |
| * 1. Open up Atom Preferences. | |
| * 2. Click the “Open Config Folder” button. | |
| * 3. In the new window’s tree view on the left you should see a file called “styles.less”. Open that up. | |
| * 4. Copy and paste the CSS below into that file. As long as you have Operator Mono SSm installed you should be golden! | |
| * 5. Tweak away. | |
| * | |
| * Theme from the screenshot (http://cdn.typography.com/assets/images/blog/operator_ide2.png): |
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
| [...document.querySelectorAll('.invite-card')].forEach(card => { | |
| const headline = card.querySelector('.headline').textContent; | |
| const accept = card.querySelector('.bt-invite-accept'); | |
| const decline = card.querySelector('.bt-invite-decline'); | |
| const name = card.querySelector('.name').textContent; | |
| if(headline.match(/recruit/gi)) { | |
| console.log(`Nah. ${name} looks a little fishy to me. 🚷🚷🚷`); | |
| decline.click(); | |
| } else { |
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
| // This is free and unencumbered software released into the public domain. | |
| // | |
| // Anyone is free to copy, modify, publish, use, compile, sell, or | |
| // distribute this software, either in source code form or as a compiled | |
| // binary, for any purpose, commercial or non-commercial, and by any | |
| // means. | |
| // | |
| // In jurisdictions that recognize copyright laws, the author or authors | |
| // of this software dedicate any and all copyright interest in the | |
| // software to the public domain. We make this dedication for the benefit |
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
| fatal: unable to connect to git.qemu-project.org: | |
| git.qemu-project.org[0: (my ip address)]: errno=Connection refused | |
| firewall may be blocking outbound git:// protocol | |
| override with a variety of scopes: | |
| git config --global url."https://".insteadOf git:// | |
| git config --global url.https://github.com/.insteadOf git://github.com/ | |
| git config --global url.https://git.qemu.org/git/.insteadOf git://git.qemu-project.org/ | |
| git config --global url.https://anongit.freedesktop.org/git/.insteadOf git://anongit.freedesktop.org/ |
OlderNewer