Skip to content

Instantly share code, notes, and snippets.

View hellwolf's full-sized avatar

Miao ZhiCheng hellwolf

View GitHub Profile
@hellwolf
hellwolf / sync.gs
Created November 10, 2016 09:34
sync.gs
function GetSyncListItems(serviceInstanceId, listId, accountSid, authToken) {
var url = "https://preview.twilio.com/Sync/Services/" + serviceInstanceId + "/Lists/" + listId + "/Items";
var result = ImportJSON(url, "", "", accountSid, authToken);
return result;
}
@hellwolf
hellwolf / add-watermark.sh
Created December 3, 2016 15:46
ImageMagick command: add water mark to picture
composite -dissolve 30% -gravity southwest ../utilities/roth_emblem_105_bordered.png fed-assets-2003-2016.png fed-assets-2003-2016-marked.png
@hellwolf
hellwolf / supervisord
Last active August 29, 2018 12:29
/etc/init.d/supervisord for `pip install supervisor` supervisor@^3.3.4
#!/bin/bash
#
# supervisord This scripts turns supervisord on
#
# Author: Mike McGrath <[email protected]> (based off yumupdatesd)
# Jason Koppe <[email protected]> adjusted to read sysconfig,
# use supervisord tools to start/stop, conditionally wait
# for child processes to shutdown, and startup later
# Cameron Kerr <[email protected]> adjusted 'status'
# to return an LSB-compliant return code so things like
@hellwolf
hellwolf / encstream.html
Last active October 21, 2018 16:42
Example crypto.subtle encrypt/decrypt with AES-CTR
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example crypto.subtle encrypt/decrypt with AES-CTR</title>
<meta name="description" content="The HTML5 Herald">
<meta name="author" content="SitePoint">
@hellwolf
hellwolf / truffle-json-inspect-sizes.sh
Last active February 19, 2019 14:19
jq sort truffle contract json artifact
jq -r '[
. as $root | keys[] as $k | $root[$k] | @json | length as $len | { key: $k, length: $len }
] | sort_by(.length) | reverse | map("\(.key) \(.length)")[]' $CONTRACT_JSON_FILE
@hellwolf
hellwolf / truffle-minimize.sh
Created February 19, 2019 14:39
Truffle minimize json artifacts
#!/usr/bin/env bash
# Notes:
# - Shchema: https://github.com/trufflesuite/truffle/tree/develop/packages/truffle-contract-schema
# - bytecode vs deployedBytecode: https://ethereum.stackexchange.com/questions/32234/difference-between-bytecode-and-runtime-bytecode
for i in "$1"/*.json;do
[ -z "${i%%*.min.json}" ] && continue # already minified
m=${i%%.json}.min.json
echo "Minimizing truffle json artifact: $i"
echo "Original size: $(wc -c "$i")"
@hellwolf
hellwolf / eesti-same-birthday.sh
Last active October 25, 2019 06:36
Estonian residents of the same birthday
YOUR_BIRTHDAY=YYMMDD;for a in 3 4;do
for i in `seq 9999`;do
kood=${a}${YOUR_BIRTHDAY}$(printf %04d $i)
# https://www.sk.ee/en/repository/ldap
found=$(ldapsearch -x -H ldaps://esteid.ldap.sk.ee -b c=EE "(serialNumber=PNOEE-$kood)" | sed -n 's/cn::\? \(.*\)$/\1/p' | uniq)
[ -z "${found%%*=}" ] && found=`echo $found|base64 -d`;[ ! -z "$found" ] && echo $kood $found;
done;
done
@hellwolf
hellwolf / gen-secp384r1-keypairs.sh
Created April 7, 2019 09:20
Generate secp384r1 key pairs
openssl ecparam -name secp384r1 -genkey -noout -out new-secp384r1-private-key.pem
openssl ec -in new-secp384r1-private-key.pem -pubout -outform DER -out new-secp384r1-public-key.der
@hellwolf
hellwolf / test-ecdh1-derive.sh
Created April 7, 2019 09:21
test ecdh1 derive mechanism
#!/bin/bash
openssl pkeyutl -derive -inkey new-secp384r1-private-key.pem -peerkey XXXXXXXX-pin1-public-key.pem | xxd -p | tr '\n' '|' | sed 's/|//g'
echo
pkcs11-tool --derive --token-label PIN1 --login --id 01 -m ECDH1-DERIVE --input-file new-secp384r1-public-key.der --output-file >(xxd -p | tr '\n' '|' | sed 's/|//g')
@hellwolf
hellwolf / mail.php
Last active January 20, 2021 17:20
mail.php
<?php
$SECRET = '....';
header("Content-type: application/json");
if ($_GET["secret"] != $SECRET) {
http_response_code(401);
echo json_encode(array(
"success" => false,
"status_code" => 401