This file contains 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
++ id -un | |
+ [[ root != \d\o\k\k\u ]] | |
+ [[ deploy != plugins-install* ]] | |
+ [[ deploy != \p\l\u\g\i\n\s\-\u\p\d\a\t\e ]] | |
+ sudo -u dokku -E -H /usr/local/bin/dokku deploy www | |
++ id -un | |
+ [[ dokku != \d\o\k\k\u ]] | |
+ [[ -n '' ]] | |
+ case "$1" in | |
+ APP=www |
This file contains 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
angular.element(document.querySelector('.ng-scope')).injector().get('MyService') |
This file contains 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
for i in */; do | |
cd $i | |
zip $i * | |
cd .. | |
done |
This file contains 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
# | |
# it suits my purposes, no warranty if is suits yours | |
# Iļja Ketris | |
# | |
include "/usr/share/X11/locale/en_US.UTF-8/Compose" | |
<Multi_key> <minus> <greater> : "→" U2192 # RIGHT | |
<Multi_key> <less> <minus> : "←" U2190 # LEFT | |
<Multi_key> <period> <space> : "…" U2026 # HORIZONTAL ELLIPSIS, многоточие |
This file contains 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains 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
ike@osaka:~$ cat /etc/nginx/sites-available/node-configly | |
server { | |
listen 80; | |
server_name www.config.ly; | |
location / { | |
proxy_pass http://unix:/var/run/proxy.sock/node-configly.80:$uri$is_args$args; | |
proxy_http_version 1.1; | |
proxy_set_header Upgrade $http_upgrade; |
This file contains 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
# Delete branches not tracked by remote | |
git remote prune origin | |
# Prettier log | |
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit |
This file contains 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 bases = require('bases'); | |
var crypto = require('crypto'); | |
// Returns a base-62 (alphanumeric only) string of the given length: | |
function randomStr(length) { | |
// We generate a random number in a space at least as big as 62^length, | |
// and if it's too big, we just retry. This is still statistically O(1) | |
// since repeated probabilities less than one converge to zero. Hat-tip to | |
// a Google interview for teaching me this technique! ;) |
This file contains 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
indexB: -> | |
x = fs.readFileSync xmlInput | |
parser.parseString x, (error_xml, res_xml) -> | |
for product in res_xml?.products?.product[0..0] | |
r = request | |
uri: S.Found.uri + '/stock/one' | |
method: 'POST' | |
json: product | |
r.pipe process.stdout |
This file contains 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
getImageSize = (image, cb) -> | |
fromHex = (hex) -> parseInt "0x#{hex}", 16 | |
req = http.request image, (res) -> | |
res.setEncoding 'hex' | |
res.on 'error', (e) -> cb "getImageSize error (#{image}): " + e, null, image | |
res.on 'data', (chunk) -> | |
m = switch res.headers['content-type'] | |
when 'image/jpeg' | |
chunk.match 'ffc0001108(....)(....)' | |
when 'image/png' |