Skip to content

Instantly share code, notes, and snippets.

View whyakari's full-sized avatar
:octocat:

Akari whyakari

:octocat:
View GitHub Profile
download_scripts() {
wget -O clang.sh https://raw.githubusercontent.com/MoeKernel/clang/main/clang.sh
wget -O date_.txt https://raw.githubusercontent.com/MoeKernel/clang/main/date_.txt
chmod +x clang.sh
}
download_pkgs() {
sudo apt install bc neovim -y # download packages required.
}
@whyakari
whyakari / test.c
Last active May 5, 2024 18:10
test
#include <stdio.h>
int main() {
printf("Hello, world!\n");
for (size_t i = 1; i <= 10000000; i++) {
printf("%ld\n", i);
}
for (size_t i = 1; i <= 20000000; i++) {