I hereby claim:
- I am rafalcieslak on github.
- I am rafalcieslak (https://keybase.io/rafalcieslak) on keybase.
- I have a public key ASBr_0gqY5OCZQecjJcKB2tMn2jRPNO-62QyKEOCQNg95go
To claim this, I am signing this object:
| import re | |
| import os | |
| import glob | |
| CAMDATA = """ | |
| ;==================== | |
| ; Custom Camera | |
| ;==================== | |
| CAMATTACHED { |
I hereby claim:
To claim this, I am signing this object:
| Aalst | |
| Aalter | |
| Aarschot | |
| Abaetetuba | |
| Abomey | |
| Abomey-Calavi | |
| Abovyan | |
| Abreu e Lima | |
| Abu Dhabi | |
| Acaraú |
| # When using System.IO.Compression.ZipFile.CreateFromDirectory in PowerShell, it still uses backslashes in the zip paths | |
| # despite this https://docs.microsoft.com/en-us/dotnet/framework/migration-guide/mitigation-ziparchiveentry-fullname-path-separator | |
| # Based upon post by Seth Jackson https://sethjackson.github.io/2016/12/17/path-separators/ | |
| # | |
| # PowerShell 5 (WMF5) & 6 | |
| # Using class Keyword https://msdn.microsoft.com/powershell/reference/5.1/Microsoft.PowerShell.Core/about/about_Classes | |
| # |
| #!/usr/bin/env python3 | |
| import random | |
| A = ['elastic', 'elastic', 'elastic', 'elasti', 'reliable', 'managed', 'simple', 'virtual', 'amazon', 'redundant'] | |
| B = ['database', 'server', 'compute', 'storage', 'load', 'network', 'email', 'queue', 'notification', 'data'] | |
| C = ['service', 'service', 'service', 'storage', 'cloud', 'processing', 'adapter', 'balancing', 'system', 'pipeline', 'workflow'] | |
| a,b,c = random.choice(A),random.choice(B),random.choice(C) | |
| a,b,c = (x.capitalize() for x in [a,b,c]) | |
| q = a[0] + b[0] + c[0] |
| const char* code = R"( | |
| #include <iostream> | |
| int main() { | |
| std::cout << "const char* code = R\"(" << code << ")\";" << code; | |
| } | |
| )"; | |
| #include <iostream> | |
| int main() { | |
| std::cout << "const char* code = R\"(" << code << ")\";" << code; | |
| } |
| #include <iostream> | |
| int main() { | |
| std::string code1 = R"( | |
| #include <iostream> | |
| int main() { | |
| )"; | |
| std::string code2 = R"( | |
| std::cout << code1 | |
| << " std::string code1 = R\"(" << code1 << ")\";\n" |
| typedef struct | |
| { | |
| float x; | |
| float y; | |
| } SDL_FPoint; | |
| typedef struct | |
| { | |
| float x; | |
| float y; |