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
| Scoot 08/02/2018 | |
| On the darkside, I just spent 60 dollars USD to fill up my tank | |
| REAL BITTERSWEET | |
| hurray full tank | |
| Blizik 08/02/2018 | |
| that's a lot of dollars | |
| Scoot 08/02/2018 | |
| but like |
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
| /* | |
| Geordie P. (github/GeordieP) | |
| Find proper documentation on MDN: | |
| https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment | |
| Some general destructuring rules | |
| Gist viewers: Feel free to leave a comment suggesting more, or corrections/improvements to these! | |
| --------------------------------- | |
| - if the right side of a colon is an identifier, the identifier is brought into scope (an alias) and refers to the object on the left side. (eg. see a2) |
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
| "========================== | |
| " visuals | |
| "========================== | |
| set title | |
| set titleold="Terminal" | |
| set titlestring=%F | |
| set guioptions=egmrti | |
| set gcr=a:blinkon0 | |
| set scrolloff=5 | |
| set laststatus=2 |
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
| /* ------------------------------------------------------------------ | |
| 1: set module.exports to an object literal | |
| ------------------------------------------------------------------ */ | |
| module.exports = { | |
| someField: 123, | |
| someFn: function(a) { | |
| console.log(a) | |
| } | |
| } |
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
| "========================== | |
| " visuals | |
| "========================== | |
| set title | |
| set titleold="Terminal" | |
| set titlestring=%F | |
| set guioptions=egmrti | |
| set gcr=a:blinkon0 | |
| set scrolloff=5 | |
| set laststatus=2 |
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
| /*--- | |
| * TITLE BAR | |
| ---*/ | |
| /* title bar */ | |
| .chat>.title-wrap { | |
| min-height: 0px; | |
| } | |
| /* window control buttons */ | |
| .win-buttons { |
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
| /* | |
| Written by Geordie Powers | |
| https://github.com/GeordieP/ | |
| https://gist.github.com/GeordieP/ | |
| MIT License | |
| */ | |
| /* | |
| USAGE: | |
| Create a one-shot timer named "myTimer" with duration 3 seconds, and |
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
| #!/usr/bin/python | |
| import json | |
| import urllib.request | |
| class Main: | |
| def __init__(self): | |
| num = 0; | |
| # Output File Formatting Strings |
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
| #!/usr/bin/python | |
| import json | |
| import urllib.request | |
| class Main: | |
| def __init__(self): | |
| # XML Formatting Strings | |
| xmlPre = '<?xml version="1.0" encoding="UTF-8"?><opml version="2.0"><head><title>MusicBee Radio Station List</title><dateCreated>Tue, 29 Jul 2014 13:37:00 GMT</dateCreated></head><body>\n' | |
| xmlPost = '</body></opml>' |
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
| #!/bin/bash | |
| # A script to extract the wallpapers from the Caledonia wallpaper collection | |
| for directory in *; do | |
| cd "$directory" | |
| if [ -d 'content' ]; then | |
| cd 'content' | |
| elif [ -d 'contents' ]; then | |
| cd 'contents' |