Skip to content

Instantly share code, notes, and snippets.

View jtpio's full-sized avatar
🌳
Keep it simple

Jeremy Tuloup jtpio

🌳
Keep it simple
View GitHub Profile
@jtpio
jtpio / malmomilen.ipynb
Last active August 29, 2015 14:01
Start group distribution for the MalmöMilen race
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jtpio
jtpio / README.md
Last active March 2, 2016 00:10 — forked from gre/README.md
JS1K WebGL Template

JS1K Boilerplate for WebGL entries

Inspired by @greweb's boilerplate

Flow

First time? Install the tools:

@jtpio
jtpio / input
Last active August 29, 2015 14:22
Solving the math puzzle of the Schönbrunn maze in Vienna
5 5
4 2
2 2
2 -2 4 -1 3
-3 3 -1 3 -2
1 -2 0 -2 3
-3 2 -3 2 -4
4 -2 1 -3 2
@jtpio
jtpio / MathJam-2015-11-17.py
Last active December 7, 2015 21:07
MathJam Shout 2015-11-17 solution checker for the factorial puzzle
from math import factorial
# Calculate the product of factorials without 50!
# P = 1!2!3!4!...49!51!...98!99!100!
P = 1
for i in range(1, 101):
if i == 50:
continue
P *= factorial(i)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jtpio
jtpio / MathsJam-2016-02-16_Pancakes.ipynb
Last active February 20, 2016 12:55
MathsJam February 2016 - Investigate Pancakes Stacks
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jtpio
jtpio / MathsJam-2016-04_Reverse_Pairs.ipynb
Created April 20, 2016 21:25
MathsJam April 2016 - Reverse Pairs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jtpio
jtpio / Robot_Rock_Band.ipynb
Last active December 1, 2016 19:43
Code Jam APAC 2017 - Problem B. Robot Rock Band
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jtpio
jtpio / index.html
Created May 10, 2017 13:23
Nine-Color Cube Puzzle
<html>
<head>
<title>Cube</title>
<script src='https://cdnjs.cloudflare.com/ajax/libs/three.js/85/three.min.js'></script>
</head>
<body>
<div id="nine-colors-cube-container"></div>
<script src='./orbitcontrols.js'></script>
<script src='./main.js'></script>
</body>