Explore >> Select a destination


You are here

royvanrijn.com
| | blog.josefsson.org
2.8 parsecs away

Travel
| |
| | tashian.com
3.1 parsecs away

Travel
| | The story of a major hash table vulnerability, and how it took a decade to uncover and resolve.
| | dusted.codes
1.9 parsecs away

Travel
| | SHA-256 is not a secure password hashing algorithm
| | entangledlogs.com
28.4 parsecs away

Travel
| Generic Programming: Generating part of programs Introduction Generic Programming: Programming with generic parameters to avoid unnecessary code duplication and encourage code reuse. Polymorphism is also another technique to solve code reuse Puts implicit constraints on the generic types that are to be fulfilled by concrete types. template T adder(T LHS, T RHS) { return LHS + RHS; } struct Foo { inv Val = 0; } Foo f = adder(Foo{}, Foo{}): In this code snippet, we assume that Foo meets the requirement tha...