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 [ "$(whoami)" = "root" ] | |
| then CARETCOLOR="red" | |
| else CARETCOLOR="white" | |
| fi | |
| host_color=0 | |
| local i=1 | |
| for val in $(echo $HOST | od -A n -t dC); do | |
| host_color=$(($host_color + $i * $val)) | |
| i=$((i + 1)) |
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
| { | |
| "asi": false, | |
| "boss": false, | |
| "camelcase": false, | |
| "curly": true, | |
| "eqeqeq": true, | |
| "eqnull": false, | |
| "esversion": 6, | |
| "evil": false, | |
| "expr": false, |
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
| app-root-path | |
| aws-sdk | |
| aws-sdk-apis | |
| babel-cli | |
| cross-env | |
| coffeescript | |
| coffee-script | |
| coffee2js |
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
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
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
| { | |
| "PersistentRegexHighlight": | |
| { | |
| "enabled": true | |
| }, | |
| "atomic_save": false, | |
| "bold_folder_labels": true, | |
| "caret_style": "phase", | |
| "color_scheme": "Packages/User/SublimeLinter/Ksix (SL).tmTheme", | |
| "fade_fold_buttons": false, |
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 | |
| declare -a CLEAN=( | |
| ./.sass-cache | |
| ./eslint-debug.log | |
| ./npm-debug.log | |
| ./yarn-error.log | |
| ./logs | |
| ./node_modules | |
| ./build |
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
| module.exports = [{ | |
| code: 'AD', | |
| name: 'Andorra', | |
| greeting: 'Hola' | |
| }, { | |
| code: 'AE', | |
| name: 'United Arab Emirates', | |
| greeting: 'Marhaba' | |
| }, { | |
| code: 'AF', |
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/sh | |
| # Before running script, git must be installed | |
| cd Desktop/ | |
| mkdir usr | |
| cd usr/ | |
| mkdir git-sample-repos | |
| cd git-sample-repos/ | |
| git clone git@github.com:DanialK/advanced-security-in-backbone.git |
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
| { | |
| "version": "2017b", | |
| "zones": [ | |
| "Africa/Abidjan|LMT GMT|g.8 0|01|-2ldXH.Q|48e5", | |
| "Africa/Accra|LMT GMT +0020|.Q 0 -k|012121212121212121212121212121212121212121212121|-26BbX.8 6tzX.8 MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE|41e5", | |
| "Africa/Nairobi|LMT EAT +0230 +0245|-2r.g -30 -2u -2J|01231|-1F3Cr.g 3Dzr.g okMu MFXJ|47e5", | |
| "Africa/Algiers|PMT WET WEST CET CEST|-9.l 0 -10 -10 -20|0121212121212121343431312123431213|-2nco9.l cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 DA0 Imo0 rd0 De0 9Xz0 1fb0 1ap0 16K0 2yo0 mEp0 hwL0 jxA0 11A0 dDd0 17b0 11B0 1cN0 2Dy0 1cN0 1fB0 1cL0|26e5", | |
| "Africa/Lagos|LMT WAT|-d.A -10|01|-22y0d.A|17e6", | |
| "Africa/Bissau|LMT -01 GMT|12.k 10 0|012|-2ldWV.E 2xonV.E|39e4", | |
| "Africa/Maputo|LMT CAT|-2a.k -20|01|-2GJea.k|26e5", |
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
| // install with: | |
| // npm i -g devtool | |
| // npm i img javascript-natural-sort electron-canvas-to-buffer | |
| // | |
| // run: | |
| // devtool tile-folder.js -qch | |
| var fs = require('fs') | |
| var path = require('path') | |
| var loadImage = require('img') |