I hereby claim:
- I am kirkins on github.
- I am kirkins (https://keybase.io/kirkins) on keybase.
- I have a public key ASAXjgrSOptyNHsgzr5ZNwy67OTcRmYh_U-YnsksWl1p2Qo
To claim this, I am signing this object:
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDI59XZEW0EMbCrzf8d6iaIth6C5lgPWAY4LJTOcXxedw09kDhgISfeiEVXtkxx4UJbrS/5WGTsqH/SGabi8RmXlUQBhgmEyNnQGAqwrRd+P5OW8xI0T8lWdyFM1qc80MIKX4TYCJ5AUMbLr/Bh2eKbxFbwyf3RGWEJ2F1+SfFGluysyBgcNBt50mPIsvhfsgPyzjalFx/JY5JlTy/X2dNzg38pRfDJmXUdaG87pCLDvxH1ujPto9V3HKjN7PoYrCJ6aWwOfHnxtN0jOvB2MTY9t789vCcJyjxlwe4fBGOZWKQVooLEmC3TEZIpZySHJ5u2RCbyTpGFcXtvPralqMV5 philip@philip-ThinkPad-T420 |
I hereby claim:
To claim this, I am signing this object:
| while read v; do | |
| echo "$v" | |
| youtube-dl "$v" || echo "$v" > failed | |
| sleep 200 | |
| done <videos.txt |
| for d in */; do | |
| if [ $d = "unique" ]; then | |
| echo unique | |
| else | |
| cp "$d"/* unique | |
| fi | |
| done |
| void FixedUpdate() | |
| { | |
| //rigidBody.AddForce(Vector3.down * 5); | |
| if (direction) | |
| { | |
| transform.localScale += new Vector3(sizeValue, sizeValue, sizeValue) * Time.deltaTime; | |
| sizeCounter++; | |
| if (sizeCounter > 50) | |
| { | |
| direction = !direction; |
| #!/bin/bash | |
| printf "https://youtube.com/" | |
| URL="https://hooktube.com/random?$((1 + RANDOM % 100000000))" | |
| curl $URL -s -L -I -o /dev/null -w '%{url_effective}' \ | |
| | cut -d "/" -f 4 |
| // factorial | |
| f = (n) => { | |
| n = BigInt(n); | |
| return (n>1) ? n * f(n-1n) : n; | |
| } | |
| // sum of digits in the number | |
| s = (n) => { | |
| return n.toString().split("") | |
| .map(x => parseInt(x)) |
| var cheerio = require('cheerio'); | |
| var fs = require('fs'); | |
| let messageFolder = './messages/'; | |
| fs.readdirSync(messageFolder).forEach(file => { | |
| fs.readFile('./'+messageFolder+file, 'utf8', function(err, data) { | |
| if (err) throw err; |
| #!/usr/bin/env bash | |
| # Source script from: https://github.com/grondilu/bitcoin-bash-tools.git | |
| source ./bitcoin.sh | |
| while read p; do | |
| PRIVATE=$(echo $p | sha256sum | cut -f 1 -d " ") | |
| P1=$(newBitcoinKey 0x$PRIVATE \ | |
| | grep bitcoin\ address \ | |
| | head -1 \ |
| #!/usr/bin/env bash | |
| # first input should be number of private keys to generate | |
| for ((i=1;i<=$1;i++)); | |
| do | |
| WORDS=15; LC_ALL=C grep -x '[a-z]*' /usr/share/dict/words \ | |
| | shuf --random-source=/dev/urandom -n ${WORDS} | paste -sd " " \ | |
| | sha256sum | cut -f 1 -d " " | |
| done |