Alternatively, for H1 and H2, an underline-ish style:
Alt-H1
| Parallelizing the Naughty Dog engine using fibers by Christian Gyrling | |
| http://www.swedishcoding.com/wp-content/uploads/2015/03/parallelizing_the_naughty_dog_engine_using_fibers.pdf | |
| id Tech 5 Challenges | |
| From Texture Virtualization to Massive Parallelization by J.M.P. van Waveren | |
| http://s09.idav.ucdavis.edu/talks/05-JP_id_Tech_5_Challenges.pdf | |
| Doom3 BFG Source Code Review: Multi-threading by Fabien Sanglard |
| #include <stdio.h> | |
| int main(){ | |
| system("shutdown -s"); | |
| return 0; | |
| } |
| // This is licensed under the terms of the WTFPL license | |
| const convert = (from, to) => value => parseInt(value, from).toString(to); | |
| // Works with any bases btw | |
| // convert(2, 10)('111') // '7' | |
| // convert(10, 16)('42') // '2a' | |
| // convert(16, 2)('f8') // '11111000' | |
| // convert(10, 2)('22') // '10110' | |
| // You can even cache those |