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
(pipe (pipe (exec 'cat file.txt') | |
(exec 'grep -i \'hello\'')) | |
(exec 'less')) |
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
arg1: db 'hello world' | |
push arg1 | |
exec echo | |
---------------------- | |
arg: db 'file1.txt' | |
arg0: db 'hello world' | |
arg1: db '-i' | |
push arg | |
pipe cat |
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
// give it a character string, the length of the line and time to wait before drawing the next char | |
void draw_string(int delay, int line_length, char str[]) | |
{ | |
int i, j; | |
for (i = 0, j = 0; str[i] < string_length(str); i++, j++) | |
if (j > line_length) { | |
draw_char(NEWLINE); | |
j = 0; | |
} | |
draw_char(str[i]); |
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
(setq fibonacci-list `(0 1 1 2 3 5 8 13 21 34 55)) | |
(defun compute-fibonacci (n) | |
(let ((x (+ (get-fibonacci (- n 1)) | |
(get-fibonacci (- n 2))))) | |
(prog2 | |
(setq fibonacci-list (append fibonacci-list (list x))) | |
x))) | |
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
Twitch - http://www.twitch.tv | |
Picarto - https://www.picarto.tv/ | |
Hitbox - http://www.hitbox.tv | |
Vaughn Live - http://vaughnlive.tv/ | |
Instagib - http://instagib.tv/ | |
Bambuser - http://bambuser.com/ | |
AzubuTV - http://www.azubu.tv | |
Connect Cast TV - https://www.connectcast.tv/ |
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
The general registers: | |
¹ ½ ¾ | |
binary: | |
² | |
trinary: | |
³ | |
push: |
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
#!/bin/zsh | |
audiochannels=2 | |
fps=15 | |
inres=1280x1024 | |
audiocodec=pcm_s16le | |
videocodec=libx264 | |
preset=ultrafast | |
threads=0 | |
outfile=output.mkv |