This file contains hidden or 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
| /* | |
| DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE | |
| Version 1, October 2013 | |
| Everyone is permitted to copy and distribute verbatim or modified copies | |
| of this license document, and changing it is allowed as long as the name | |
| is changed. | |
| DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE TERMS | |
| AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION: |
This file contains hidden or 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
| /* | |
| DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE | |
| Version 1, October 2013 | |
| Everyone is permitted to copy and distribute verbatim or modified copies | |
| of this license document, and changing it is allowed as long as the name | |
| is changed. | |
| DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE TERMS | |
| AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION: | |
| 0. You just DO WHAT THE FUCK YOU WANT TO. |
This file contains hidden or 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
| /* Tiny calc | |
| */ | |
| #include <ctype.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| char expr[100]; | |
| char op[100]; |
This file contains hidden or 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
| /* | |
| DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE | |
| Version 1, October 2013 | |
| Everyone is permitted to copy and distribute verbatim or modified copies | |
| of this license document, and changing it is allowed as long as the name | |
| is changed. | |
| DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE TERMS | |
| AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION: |
This file contains hidden or 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
| /* | |
| DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE | |
| Version 1, October 2013 | |
| Everyone is permitted to copy and distribute verbatim or modified copies | |
| of this license document, and changing it is allowed as long as the name | |
| is changed. | |
| DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE TERMS | |
| AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION: |
This file contains hidden or 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 <iostream> | |
| #include <numeric> | |
| #include <vector> | |
| #include <cstdlib> | |
| #include <cassert> | |
| #define cimg_display 3 | |
| #define cimg_use_png 1 | |
| #include <CImg.h> |
This file contains hidden or 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
| /* | |
| * This is free and unencumbered software released into the public domain. | |
| * | |
| * For more information, please refer to <https://unlicense.org> | |
| */ | |
| //Regular text | |
| #define BLK "\e[0;30m" | |
| #define RED "\e[0;31m" | |
| #define GRN "\e[0;32m" |
This file contains hidden or 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 -e | |
| #usage old_directory new_directory | |
| modfiles=$(find ${2} -type f -exec grep -Iq . {} \; -print) | |
| #origfiles=${modfiles//$2/$1} | |
| rm patchfiles -rf | |
| mkdir patchfiles | |
| echo $modfiles |
This file contains hidden or 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
| # MEDIA SIZE 300 pixels per inch | |
| export LETTER="2550x3300" | |
| export LONG="2550x3900" | |
| export LEGAL="2550x4200" | |
| export A4="2490x3510" | |
| export 3R="1050x1500" | |
| export 4R="1200x1800" | |
| export 5R="1500x2100" |
This file contains hidden or 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
| /* gcc wmain2.c tracer.c utils.c math.c -fopenmp -lm -lmingw32 -lSDL2main -lSDL2 | |
| * -mwindows -Dmain=SDL_main -o wmain2 */ | |
| #include "common.h" | |
| #include <SDL2/SDL.h> | |
| #include <assert.h> | |
| #include <process.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> |
NewerOlder