- typing animation ltr
- big "yahoo" on first 2 column jump
- lvl 1 - YeHaron A-Aor
- unlike after getting first power from Li, which is transalted
- "try again" after fail/gameover (any level)
- yahoo on all yellow looms in a level
- lessi ride level "GO"
- ZeAdat HaAIm
- "You made it rayman" - race level after lessi
- HaBaio
This file contains hidden or 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
Create BLANK.png with white background and some gray "filler / fill page" text | |
A4 I had had 3308 x 4678 pixels |
This file contains hidden or 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
# socks4 (https://github.com/jgaa/shinysocks) | |
# windows built | |
# inetcpl.cpl -> connections tab -> Lan setting button -> Advanced button | |
docker run --rm --name shiny -p 1070:1080 -d jgaafromnorth/shinysocks | |
# socks5 (https://github.com/serjs/socks5-server) | |
# firefox etc | |
docker run -d --name socks5 -p 1090:9090 -e PROXY_PORT=9090 serjs/go-socks5-proxy |
This file contains hidden or 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
# install | |
sudo apt install graphicsmagick-imagemagick-compat | |
# in place convert | |
find . -name "*.jpg" | xargs -n1 mogrify -resize 25% | |
# save to other file | |
find . -name "*.jpg" | xargs -I{} convert -resize 25% "{}" "{}.small.jpg" |
This file contains hidden or 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
function make_CRS_Buffer(size) { | |
//based on https://stackoverflow.com/a/60285222/1997873 | |
return { | |
arr: [], | |
arr_i: 0, | |
arr_size: size, | |
size: function () { | |
return this.arr.length; | |
}, | |
full: function () { |
This file contains hidden or 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
const win1255 = [ | |
..."àýáýâýãýäýåýæýçýèýéýëýêìýîýðýñýòýôýöý÷ýøýùýúíýïóýõáÌâÌãÌëÌêÌôÌóÌùÑùÒúÌ×ÈýÇýÂÅýÆýÁÉýÃËÌÄåÌ", | |
].filter((e) => e != "ý"); | |
const hebutf8 = [ | |
..."אבגדהוזחטיכךלמנסעפצקרשתםןףץבּגּדּכּךּפּףּשׁשׂתּ׳ֱֲֳִֵֶַָֹֻּוּ", | |
].filter((e) => !!e && e.charCodeAt(0) != 8206); | |
function win1255toUTF(str) { | |
return [...str] | |
.map((e) => (win1255.indexOf(e) > -1 ? hebutf8[win1255.indexOf(e)] : e)) |
Export the following map Zip -> Files
.
So this will not include rows for deleted files. Only when they were added/changed.
Run on latest SQLite Version
- I suggest to use the free
SQLiteStudio
GUI from https://sqlitestudio.pl/ (cross platform)
- Open the
.bkc
file. It is a SQLite file. Might be password protected with the user-defined backup password.
Psono to Bitwarden Import Script is a script for importing passwords/logins and secure notes from a Psono.pw export file into your Bitwarden vault.
This script requires Python 3 and the Bitwarden CLI client!
$ psono-importer.py [-p|--psonofile] <exported psono file>
Working set size: 196
Progress:-----------------------------------------------------------------| 0/196
This file contains hidden or 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
const csv_safe_quote = '"'; | |
const csv_safe_escapedQuote = '""""'; | |
function safe_csv_item(item:any) : string { | |
try { | |
if (item === "") { | |
return '""' | |
} | |
// Force string: |
NewerOlder