Skip to content

Instantly share code, notes, and snippets.

View zwongeer's full-sized avatar
🉑

Ruzey Onairelav zwongeer

🉑
View GitHub Profile
@varqox
varqox / install_debian_with_debootstrap_howto.md
Last active May 18, 2025 08:16
Instructions how to install Debian using debootstrap
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxy
git config --global --unset https.proxy
npm config delete proxy
@msg555
msg555 / gist:5418199
Last active September 10, 2024 12:44
Stack Switching
#include <stdio.h>
#include <stdlib.h>
#define STACK_SIZE (1 << 26)
#define STACK_PAD 128
int rec(int n) {
return n == 0 ? 0 : rec(n - 1) + 1;
}