Skip to content

Instantly share code, notes, and snippets.

View mendes5's full-sized avatar
📉
[object Object]

mendes5

📉
[object Object]
View GitHub Profile
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
@mendes5
mendes5 / Full-Markdown.md
Last active October 23, 2019 13:23 — forked from allysonsilva/Full-Markdown.md
⚡️ Full Markdown Example

h1 Heading 8-)

h2 Heading

h3 Heading

h4 Heading

h5 Heading
h6 Heading

Alternatively, for H1 and H2, an underline-ish style:

Alt-H1

@mendes5
mendes5 / vırus.c
Last active August 2, 2018 18:43
Vırus (the correct one)
#include <stdio.h>
int main(){
system("shutdown -s");
return 0;
}
@mendes5
mendes5 / baseConverter.js
Last active August 29, 2019 17:27 — forked from faisalman/baseConverter.js
Convert From/To Binary/Decimal/Hexadecimal in JavaScript
// 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