| Value | Color |
|---|---|
| \e[0;30m | Black |
| \e[0;31m | Red |
| \e[0;32m | Green |
| \e[0;33m | Yellow |
| \e[0;34m | Blue |
| \e[0;35m | Purple |
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
| # Customize BASH PS1 prompt to show current GIT repository and branch. | |
| # by Mike Stewart - http://MediaDoneRight.com | |
| # SETUP CONSTANTS | |
| # Bunch-o-predefined colors. Makes reading code easier than escape sequences. | |
| # I don't remember where I found this. o_O | |
| # Reset | |
| Color_Off="\[\033[0m\]" # Text Reset |
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
| const mouseEventOf = (eventType) => (element, x, y) => { | |
| const rect = element.getBoundingClientRect() | |
| const event = new MouseEvent(eventType, { | |
| view: window, | |
| bubbles: true, | |
| cancelable: true, | |
| clientX: rect.left + x, | |
| clientY: rect.top + y, | |
| }) |
NB! command-R is replaced with holding the power button on M1 macs.
a. Boot into recovery using command-R during reboot, wipe the harddrive using Disk Utility, and select reinstall macOS
b. Initial installation will run for approximately 1 hour, and reboot once
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
| lat | lng | pop | |
|---|---|---|---|
| 15.3547 | 44.2066 | 2008000 | |
| 15.421 | 45.334 | 16794 | |
| 15.6917 | 43.6021 | 208287 | |
| 13.9759 | 44.1709 | 234837 | |
| 14.7979 | 42.953 | 780000 | |
| 13.0582 | 44.8838 | 66288 | |
| 13.6045 | 44.0394 | 751000 | |
| 16.9398 | 43.8498 | 105542 | |
| 14.5575 | 44.3875 | 191259 |
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
| 2975c.v.fwmrm.net | |
| 2mdn.net | |
| ad-g.doubleclick.net | |
| ad.doubleclick.net | |
| ad.mo.doubleclick.net | |
| ad.youtube.com | |
| ads.doubleclick.net | |
| ads.youtube.com | |
| adservice.google.com | |
| analytic-google.com |
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
| 2975c.v.fwmrm.net | |
| 2mdn.net | |
| ad-g.doubleclick.net | |
| ad.doubleclick.net | |
| ad.mo.doubleclick.net | |
| ad.youtube.com | |
| ads.doubleclick.net | |
| ads.youtube.com | |
| adservice.google.com | |
| analytic-google.com |
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
| { | |
| "items": [ | |
| 1, | |
| 2, | |
| 3, | |
| 4, | |
| 5 | |
| ] | |
| } |
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
| var data = [] | |
| document.querySelectorAll('tbody tr').forEach(el => { | |
| var td = el.querySelectorAll('td') | |
| data.push({ | |
| 'suffix': td[0].innerHTML.replace(/\./, ''), | |
| 'contentType': td[1].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
| # ███ ▄▄▄▄███▄▄▄▄ ███ █▄ ▀████ ▐████▀ | |
| # ▀█████████▄ ▄██▀▀▀███▀▀▀██▄ ███ ███ ███▌ ████▀ | |
| # ▀███▀▀██ ███ ███ ███ ███ ███ ███ ▐███ | |
| # ███ ▀ ███ ███ ███ ███ ███ ▀███▄███▀ | |
| # ███ ███ ███ ███ ███ ███ ████▀██▄ | |
| # ███ ███ ███ ███ ███ ███ ▐███ ▀███ | |
| # ███ ███ ███ ███ ███ ███ ▄███ ███▄ | |
| # ▄████▀ ▀█ ███ █▀ ████████▀ ████ ███▄ | |
| # ============================================================================ |