Skip to content

Instantly share code, notes, and snippets.

@kairusds
kairusds / 1-termux-adb.md
Last active April 12, 2025 13:33
Instructions for connecting Termux's android-tools adb to the current device via Wireless debugging and fixing phantom process killing

Install android-tools if you haven't already:

pkg update ; pkg upgrade
pkg install android-tools

adb pair localhost:port
@rarecoil
rarecoil / CF-RZ4-Windows10-Install.md
Last active May 15, 2025 14:49
Using the Panasonic Let's Note CF-RZ4 in America

I own a Japanese-market Panasonic Let's Note RZ series as a go-everywhere laptop running some Windows utilities, WSL2, and a terminal to access more powerful hardware in the cloud. I vastly prefer its clamshell layout to current-gen competitors such as the Microsoft Surface Go - my RZ4 is also still relatively capable compared to the Surface Go 2 hardware which is using a newer but similar Core M processor. The Intel Core M 5Y71 is the same processor as used in the original 12" MacBook and is still plenty fast for use as a netbook-type device.

Unfortunately, this computer is basically unknown to the American market. The keyboard is nowhere near full size, all of the manuals and websites are in Japanese, and most western reviews I can find of the Let's Note RZ look at the laptop's design as dated, its price tag exorbitant and its accessibility overall poor. I believe that they are completely missing the point of this 10 inch d

@samiraguiar
samiraguiar / MC Cheat Sheet
Last active May 26, 2025 18:18 — forked from maciakl/MC Cheat Sheet
Midnight Commander Cheat Sheet / Shortcuts
Note for newcomers:
In the shortcuts below, "C" stands for CTRL and "A" stands for "ALT". This is a convention
used in the Midnight Commander documentation and was kept here.
You can also use "ESC" instead of "ALT", which is useful on Macbooks.
Main View
---------------------------------------------------------------
- File/directory operations
/* The world's smallest Brainfuck interpreter in C, by Kang Seonghoon
* http://j.mearie.org/post/1181041789/brainfuck-interpreter-in-2-lines-of-c */
s[99],*r=s,*d,c;main(a,b){char*v=1[d=b];for(;c=*v++%93;)for(b=c&2,b=c%7?a&&(c&17
?c&1?(*r+=b-1):(r+=b-1):syscall(4-!b,b,r,1),0):v;b&&c|a**r;v=d)main(!c,&a);d=v;}