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
# Auth token is optional | |
# Get user repos | |
NAME="username"; PAGE=1; TOKEN="your_personal_token"; | |
curl -H "Authorization: token $TOKEN" "https://api.github.com/users/$NAME/repos?page=$PAGE&per_page=100" | | |
grep -e 'git_url*' | | |
cut -d \" -f 4 | | |
xargs -L1 git clone | |
# Get org repos |
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
/* | |
Given a basic Lisp-like string expression, parse it, | |
where the available functions are | |
add, subtract, multiply, and divide, | |
and they all take in 2 values. | |
Examples: | |
babyLisp('(add 1 2)') | |
3 |
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
; nasm -felf64 a.asm && ld -o a.out a.o | |
; then | |
; gdb a.out | |
section .data | |
; initialize some data | |
someValue dq 8 | |
initialTable dq 40, 871, 181, 157, 268, 790, 310, 211 | |
fileName db "zaliczenie.txt" |
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
find . -name "node_modules" -type d -prune -exec rm -rf '{}' + |