I hereby claim:
- I am nabijaczleweli on github.
- I am nabijaczleweli (https://keybase.io/nabijaczleweli) on keybase.
- I have a public key whose fingerprint is 7D69 474E 8402 8C5C C0C4 4163 BCFD 0B01 8D26 58F1
To claim this, I am signing this object:
| #include <cstddef> | |
| #include <utility> | |
| template<class T, class... TT> | |
| struct over_all { | |
| using next = over_all<TT...>; | |
| static const constexpr std::size_t size = 1 + next::size; | |
| template<class C> |
| --- | |
| Language : Cpp | |
| BasedOnStyle : LLVM | |
| AlignAfterOpenBracket : true | |
| AlignEscapedNewlinesLeft : true | |
| AlignConsecutiveAssignments : true | |
| AllowShortFunctionsOnASingleLine : Empty | |
| AlwaysBreakTemplateDeclarations : true | |
| ColumnLimit : 160 | |
| ConstructorInitializerIndentWidth : 6 |
| # I normally put this in a separate file, but v0v | |
| ifeq "$(OS)" "Windows_NT" | |
| devnull := nul | |
| DLL := .dll | |
| MKDIR := busybox mkdir | |
| PIC := | |
| PREDLL = | |
| FIND = busybox find | |
| else | |
| devnull := /dev/null |
| void f00() { | |
| throw 'f'; | |
| } |
| if(bugfree::Context * curctx = bugfree::Context::GetCurrentContext()) | |
| curctx->GoToShit(); |
| #include <mutex> | |
| #include <vector> | |
| #include <iostream> | |
| #include <algorithm> | |
| using namespace std; | |
| int main() { | |
| vector<mutex> mutexes(20); | |
| for(int i = 0; i < 10; ++i) |
| 16 16 | |
| {x=4,y=13} = | |
| {x=5,y=13} = | |
| {x=6,y=13} = | |
| {x=7,y=13} = | |
| {x=8,y=13} = | |
| {x=10,y=14} = | |
| {x=11,y=14} = |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/awk -f | |
| BEGIN { | |
| place = 1 | |
| } | |
| /{/ { | |
| sub(/[\[ ] { /, "") | |
| sub(/ ]/, "") | |
| gsub(/},/, "") |
| void strip_line(string & line) { | |
| static const vector<regex> regices = [&]() { | |
| vector<regex> temp(3); | |
| for(const auto reg : {"#.*", " +$", "^ +"}) // comment, start-of-line space, end-of-line space | |
| temp.emplace_back(reg, regex_constants::optimize); | |
| return temp; | |
| }(); // <-- any better way of doing this? | |
| for(const auto & rgx : regices) | |
| line = regex_replace(line, rgx, ""); |