Skip to content

Instantly share code, notes, and snippets.

View znut's full-sized avatar
👋

Nut Sornchumni znut

👋
  • Bangkok, Thailand
  • 17:49 (UTC +07:00)
View GitHub Profile
@znut
znut / main.ps
Created August 15, 2021 11:03
Reboot WSL
Get-Service LxssManager | Restart-Service
@znut
znut / to-jpg.sh
Created December 10, 2018 05:58
convert images to jpg
find . -type f -exec convert {} -quality 80 {}.jpg \;
@znut
znut / plan.md
Last active February 14, 2020 03:11
$list = Get-WinUserLanguageList
Set-WinUserLanguageList $($list[0])
@znut
znut / day-1.md
Last active October 24, 2017 13:01

init

$ virtualenv --no-site-packages SOME_DIR
$ virtualenv --python=/usr/bin/python3.6 SOME_DIR
$ pip install requirements.txt
@znut
znut / test.c
Last active June 19, 2017 14:51
int i = 5; // [5] <- p
^
i
(...) p = &i;
[] = memory block
p = 0x1234 // addr
*p = 5 // value at addr p