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
| Linux laptop-name 4.7.5-1-ARCH #1 SMP PREEMPT Sat Sep 24 13:04:22 CEST 2016 x86_64 GNU/Linux |
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 <array> | |
| #include <atomic> | |
| #include "./blockingconcurrentqueue.h" | |
| using namespace std::chrono_literals; | |
| // global counter | |
| // * the program can exit when it reaches 1000 | |
| // * incremented by tasks | |
| std::atomic<int> ctr{0}; |
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
| BasedOnStyle: LLVM | |
| AccessModifierOffset: -4 | |
| AlignOperands: true | |
| AlignEscapedNewlinesLeft: true | |
| AlignTrailingComments: true | |
| AllowAllParametersOfDeclarationOnNextLine: true | |
| AllowShortCaseLabelsOnASingleLine: true | |
| AllowShortFunctionsOnASingleLine: false | |
| AllowShortIfStatementsOnASingleLine: true | |
| AllowShortLoopsOnASingleLine: true |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <style-scheme version="1.0" name="veeMonokai (copy)"> | |
| <style name="Text" foreground="#e6e5e2" background="#1e201a"/> | |
| <style name="Link" foreground="#66d9ef"/> | |
| <style name="Selection" foreground="#e6e5e2" background="#49483e"/> | |
| <style name="LineNumber" foreground="#a0a19c" background="#272822"/> | |
| <style name="SearchResult" foreground="#ffffff" background="#2572b8"/> | |
| <style name="SearchScope" foreground="#000000" background="#e2efff"/> | |
| <style name="Parentheses" foreground="#ff0000" background="#515d6a"/> | |
| <style name="CurrentLine" background="#3e3d32"/> |
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 <thread> | |
| #include <mutex> | |
| #include <condition_variable> | |
| // https://github.com/meganz/mingw-std-threads | |
| #include "./mingw-std-threads/mingw.thread.h" | |
| #include "./mingw-std-threads/mingw.mutex.h" | |
| #include "./mingw-std-threads/mingw.condition_variable.h" | |
| #define BOOST_THREAD_PROVIDES_FUTURE 1 |
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 <exception> | |
| #include <functional> | |
| #ifdef __EMSCRIPTEN__ | |
| #include <emscripten.h> | |
| #include <SDL.h> | |
| #include <SDL_image.h> | |
| #include <SDL_ttf.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
| dmenu-launch | |
| libcurl-compat | |
| lsx | |
| menda-themes-dark | |
| mint-x-icons | |
| numix-frost-themes | |
| numix-themes-archblue-git | |
| numix-themes-git | |
| oh-my-zsh-git | |
| python-gnupg |
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
| class BaseBtn | |
| { | |
| private: | |
| int pin; | |
| public: | |
| BaseBtn(int mPin) : pin(mPin) | |
| { | |
| pinMode(pin, INPUT); | |
| } |
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 <type_traits> | |
| #include <tuple> | |
| #include <iostream> | |
| // Link: https://github.com/aeyakovenko/notes | |
| //count arguments | |
| //COUNT_ARGS :: ... -> Int | |
| #define COUNT_ARGS(...) COUNT_ARGS_(,##__VA_ARGS__,6,5,4,3,2,1,0) | |
| #define COUNT_ARGS_(z,a,b,c,d,e,f,cnt,...) cnt |
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
| g++ -std=c++1y -O3 -I"." -I"./include" .\include\GGJ2015\main.cpp -I"./extlibs/SSVStart/include" -I"C:\SFML\include" -I"./extlibs/SSVUtils/include" -L"C:\SFML\lib" -lsfml-system -lsfml-graphics -lsfml-audio -lsfml-window |