This file contains 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
school | |
books | |
book | |
notebook | |
calendar | |
snake | |
angry | |
pill | |
running | |
child |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>unicode symbols</title> | |
<style> | |
body { | |
color: white; | |
background: black; | |
} |
This file contains 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
#!/usr/bin/env python3 | |
from requests import post | |
from itertools import permutations | |
from string import ascii_lowercase, digits | |
import sys | |
from telethon import TelegramClient | |
from telethon.tl.functions.users import GetFullUserRequest | |
import asyncio | |
This file contains 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
#!/usr/bin/env python3 | |
from PIL import Image | |
img = Image.open('image.jpg').convert('L') | |
img.save('greyscale.jpg') |
This file contains 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
*.md linguist-documentation=false | |
*.md linguist-detectable | |
*.adoc linguist-documentation=false | |
*.adoc linguist-detectable | |
*.rst linguist-documentation=false | |
*.rst linguist-detectable | |
*.sql linguist-documentation=false | |
*.sql linguist-detectable | |
*.creole linguist-documentation=false | |
*.creole linguist-detectable |
This file contains 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
while [ 1 ] | |
do | |
p=$(date +%Y)/$(date +%m)/$(date +%d)/$(date +%H) | |
mkdir -p $p | |
out=$p/$(date +%s).txt | |
curl "http://api.open-notify.org/iss-now.json" > $out | |
git add -A | |
git commit -m "changed $(date +%s)" | |
git push | |
date |
This file contains 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
for file in *.jpg.jpg; do | |
mv -- "$file" "${file%.jpg.jpg}.jpg" | |
done |
This file contains 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
#include <stdio.h> | |
#include <string.h> | |
char tracks[][80] = { | |
"I left my heart in Harvard Med School", | |
"Newark, Newark - a wonderful town", | |
"Dancing with a Dork", | |
"From here to maternity", | |
"The girl from Iwo Jima", | |
}; |
This file contains 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
set-alias cat get-content | |
set-alias cd set-location | |
set-alias clear clear-host | |
set-alias cp copy-item | |
set-alias h get-history | |
set-alias history get-history | |
set-alias kill stop-process | |
set-alias lp out-printer | |
set-alias ls get-childitem | |
set-alias mount new-mshdrive |
This file contains 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
#!/usr/bin/make -f | |
cc = gcc | |
cc_standard = -std=c17 | |
cc_optimization = -Ofast -march=native | |
cc_warnings = -Werror -Wall -Wextra -Wpedantic -Wshadow -Wconversion \ | |
-Wmissing-prototypes -Wstrict-prototypes -Wold-style-definition -g | |
cc_link = -lgmp | |
target_file?=main.c | |
build: |
NewerOlder