Skip to content

Instantly share code, notes, and snippets.

@luoq
luoq / message.txt
Last active June 20, 2025 07:20
Following files with corresponding sha1sum
ebce596c6ba3687f8d0d8185240899916ba9b6bc proof_of_trading.pdf
02d315d3242816a567ee4eba7d3346af5544fb4f data.zip or data.zip.pdf
are for answering
(a). Please could you explain how you have grown any cryptocurrency investments from your initial trades and provide evidence of this activity.
from https://digitalmarketsclaim.pwc.com/p/home/12666373962042770 communication send at 16/06/2025, 10:59 for account [email protected].
efibootmgr --create --disk /dev/nvme0n1p1 --loader /EFI/netboot.xyz/netboot.xyz.efi --label "Netboot.xyz"
@luoq
luoq / backup_git_repos.sh
Last active January 1, 2024 13:03
backup git repos under a directory
#!/bin/bash
set -eu
src_root=$1
dst_root=$2
max_depth=${3:-5}
cd $src_root
for repo in $(find . -maxdepth $max_depth -type d -name .git); do
repo=$(dirname $repo)
echo "backup $repo"
dst_repo=$dst_root/${repo}.git
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@luoq
luoq / README.md
Last active November 10, 2017 02:01

test pickle for instance method

pickling instance method failed for python2

@luoq
luoq / vw_hash.md
Last active August 20, 2020 11:34
how feature hash is calculated in vw

feature hashing in vw

base hash function

Murmur32 hash is implemented in uniform_hash in hash.cc. It takes a string and a seed and return uint64_t.

There are two hash modes specified by --hash option.

Strings mode (hashstring in parse_primitives.cc)