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 | |
| log() { echo -e "\x1b[0m\033[1;30m$(date +%H:%M:%S)\x1b[0m $@ \x1b[0m" ; } | |
| INFO='\x1b[0m\033[1;30m[>]\x1b[0m' | |
| OK='\x1b[0m\033[1;32m[✔]\x1b[0m' | |
| WARN='\x1b[0m\033[1;33m[?]' | |
| ERROR='\x1b[0m\033[1;31m[!]' | |
| NODEVER=v17.0.1 | |
| MONGODBNAME=appdb |
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 fs = require('fs') | |
| const exec = (cmd) => require('child_process').execSync(cmd, { shell: '/bin/bash' }) | |
| try { | |
| let nodePath = exec('which node').toString().replace('\n', '') | |
| let nodeVer = exec('node -v').toString().replace('\n', '') | |
| const expectedNodeVer = fs.readFileSync('.nvmrc', 'utf-8').replace('\n', '') | |
| const npmVer = exec('npm -v').toString().replace('\n', '') | |
| const nodeVerComparison = versionCompare(nodeVer.substring(1), expectedNodeVer.substring(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
| const color = { | |
| reset: '\x1b[0m', | |
| bright: '\x1b[1m', | |
| dim: '\x1b[2m', | |
| underscore: '\x1b[4m', | |
| blink: '\x1b[5m', | |
| reverse: '\x1b[7m', | |
| hidden: '\x1b[8m', | |
| fgBlack: '\x1b[30m', |
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/env bash | |
| # Backup Android via ADB | |
| set -euf -o pipefail | |
| # configuration | |
| ADB_DEVICE_ID="beefdead" # your device id from `adb devices` | |
| OUT_DIR="/Volumes/SOMEDRIVE/Android Backups" | |
| FILENAME="android-$(date +%Y-%m-%d-%H%M).ab" | |
| # change to script directory |
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() { | |
| 'use strict'; | |
| angular.module('shopperTrak.validators') | |
| .directive('blacklistedCharacters', function (){ | |
| return { | |
| require: 'ngModel', | |
| restrict:'A', | |
| link: function(scope, elem, attrs, ngModel) { |
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() { | |
| 'use strict'; | |
| angular.module('shopperTrak.validators') | |
| .directive('blacklistedValues', function (){ | |
| return { | |
| require: 'ngModel', | |
| restrict:'A', | |
| link: function(scope, elem, attr, ngModel) { |
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
| GroupAdd, Browsers, ahk_class Chrome_WidgetWin_1 | |
| GroupAdd, Browsers, ahk_class MozillaWindowClass | |
| GroupAdd, Browsers, ahk_class ApplicationFrameWindow | |
| #MaxHotkeysPerInterval 219 | |
| ;-----three finger tap for middle click----- | |
| +^#F22:: | |
| SendInput, {MButton} | |
| return |
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
| // Browser support | |
| (function (d, h, w, n) { | |
| //function hasProperties(properties, tagName) { | |
| // var isStyle = !!!tagName; | |
| // tagName = tagName || 'div'; | |
| // var el = d.createElement(tagName); | |
| // for (var prop in properties) { | |
| // if ((isStyle ? el.style[properties[prop]] : el[properties[prop]]) !== undefined ) { | |
| // return true; |
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 (w, d, undefined) { | |
| 'use strict'; | |
| // TODO: Make some methods private for better inheritance | |
| var h = d.documentElement; | |
| function getNamespace(ns, names) { | |
| for (var i = 0, n = names.split('.'), l = n.length; i < l; i++) { |
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
| FROM debian:latest | |
| RUN apt-get -y update && apt-get install -y fortunes | |
| CMD /usr/games/fortune |