Explore >> Select a destination


You are here

btorpey.github.io
| | rtx.meta.security
4.5 parsecs away

Travel
| | Technical writeups by Meta's Security folks, including Red Team.
| | shafik.github.io
4.7 parsecs away

Travel
| | What You Need to Know when Optimizations Changes the Behavior of Your C++ ??
| | sergioprado.blog
1.7 parsecs away

Travel
| | The best way to spend less time fixing bugs in software is not creating bugs in the first place, and a static analysis tool is perfect for this job.
| | eyakubovich.github.io
31.6 parsecs away

Travel
| It's a simple task -- you want iterate over all the lines in a file and perform an action on each one. In Python it's as simple as:for line in open("somefile.txt"): print lineHow about C++11. How hard can it be? This stackoverflow post gives us a starting point. We...