Explore >> Select a destination


You are here

www.pathsensitive.com
| | qntm.org
12.0 parsecs away

Travel
| |
| | henrikwarne.com
11.7 parsecs away

Travel
| | I really liked A Philosophy of Software Design by John Ousterhout. It is compact and short, only 170 pages, so it is a quick read, but it contains many good ideas. The focus is on how to structure systems to make them easy to understand and work with. The author is a professor of Computer...
| | stratus3d.com
18.0 parsecs away

Travel
| | Abstract Erlang is known for its use in systems that are fault tolerant and reliable. One of the ideas at the core of the Erlang runtime system&# ...
| | blog.nuculabs.de
87.3 parsecs away

Travel
| Hello, This challenge is not that hard but it's quite confusing. To solve this challenge very quickly all you have to do is patch it in 2 places and then run it with different arguments until the flags get's spiten out. Here's a sample script that runs the binary 100 times with arguments from 1 to 100 [code language="bash"] printf 'start\n' for i in {1..100} do printf "$i " ./program "$i" | xxd -r -p printf '\n' done printf '\nend\n' [/code]