I hereby claim:
- I am abemassry on github.
- I am abemassry (https://keybase.io/abemassry) on keybase.
- I have a public key ASB-tG-_Cn6QZZMgeeq4rQFPGbBHVuZL54tmpVWi26xIlgo
To claim this, I am signing this object:
#!/bin/bash | |
convert $1 -resize 128x128 $2 |
#!/bin/bash | |
rnd=$RANDOM | |
fname=$1 | |
name=$(echo $fname | sed 's/\..*$//') | |
mkdir /tmp/frames$rnd | |
ffmpeg -i $fname -vf scale=320:-1:flags=lanczos,fps=10 /tmp/frames$rnd/ffout%03d.png | |
convert -loop 0 /tmp/frames$rnd/ffout*.png "$name".gif | |
cd /tmp/frames$rnd | |
rm *.png | |
cd /tmp |
for i in `bc <<< "obase = 16 ; $(seq 0 65536)" | tr '\n' ' '`; do printf "$i:"; printf "\u$i"; printf '\n'; done | rs -e | less |
Uncaught (in promise) TypeError: Cannot read property 'cpu' of undefined | |
at new DashboardPage (eval at <anonymous> (bundle.js:4603), <anonymous>:2:902) | |
at eval (eval at <anonymous> (bundle.js:8647), <anonymous>:98:24) | |
at instantiate (eval at <anonymous> (bundle.js:8647), <anonymous>:106:9) | |
at new DashboardPage (eval at proxyClass (eval at <anonymous> (bundle.js:8647)), <anonymous>:4:17) | |
at eval (eval at <anonymous> (bundle.js:8191), <anonymous>:295:18) | |
at measureLifeCyclePerf (eval at <anonymous> (bundle.js:8191), <anonymous>:75:12) | |
at ReactCompositeComponentWrapper._constructComponentWithoutOwner (eval at <anonymous> (bundle.js:8191), <anonymous>:294:16) | |
at ReactCompositeComponentWrapper._constructComponent (eval at <anonymous> (bundle.js:8191), <anonymous>:280:21) | |
at ReactCompositeComponentWrapper.mountComponent (eval at <anonymous> (bundle.js:8191), <anonymous>:188:21) |
./assets/weblish/xterm.css: z-index: -10; | |
./assets/weblish/xterm.css: z-index: 1; | |
./gist:./assets/weblish/xterm.css: z-index: -10; | |
./gist:./assets/weblish/xterm.css: z-index: 1; | |
./gist:./node_modules/bootstrap/dist/css/bootstrap-flex.css: z-index: 1000; | |
./gist:./node_modules/bootstrap/dist/css/bootstrap-flex.css: z-index: 990; | |
./gist:./node_modules/bootstrap/dist/css/bootstrap-flex.css: z-index: 2; | |
./gist:./node_modules/bootstrap/dist/css/bootstrap-flex.css: z-index: 2; | |
./gist:./node_modules/bootstrap/dist/css/bootstrap-flex.css: z-index: 2; | |
./gist:./node_modules/bootstrap/dist/css/bootstrap-flex.css: z-index: 3; |
./assets/weblish/xterm.css: z-index: -10; | |
./assets/weblish/xterm.css: z-index: 1; | |
./gist:./assets/weblish/xterm.css: z-index: -10; | |
./gist:./assets/weblish/xterm.css: z-index: 1; | |
./gist:./node_modules/bootstrap/dist/css/bootstrap-flex.css: z-index: 1000; | |
./gist:./node_modules/bootstrap/dist/css/bootstrap-flex.css: z-index: 990; | |
./gist:./node_modules/bootstrap/dist/css/bootstrap-flex.css: z-index: 2; | |
./gist:./node_modules/bootstrap/dist/css/bootstrap-flex.css: z-index: 2; | |
./gist:./node_modules/bootstrap/dist/css/bootstrap-flex.css: z-index: 2; | |
./gist:./node_modules/bootstrap/dist/css/bootstrap-flex.css: z-index: 3; |
I hereby claim:
To claim this, I am signing this object:
var https_options = { | |
certificate: fs.readFileSync(config.tls.cert).toString(), | |
key: fs.readFileSync(config.tls.key).toString() | |
}; |
#!/bin/bash | |
while [ 1 ]; do | |
before=`cat $1` | |
sleep 1 | |
after=`cat $1` | |
if [ "$before" != "$after" ]; then | |
today=`date` | |
echo "$1 changed on: $today" >> logfile.log | |
echo "$1 changed on: $today and logged" | |
fi |
#!/usr/bin/python | |
# | |
import os, sys | |
import pycurl | |
import time | |
import datetime | |
from StringIO import StringIO | |
from datetime import date, timedelta | |
from HTMLParser import HTMLParser |