Skip to content

Instantly share code, notes, and snippets.

import timeit
def debugPrint(n, R, expected):
start_time = timeit.default_timer()
result = ist_aequivalenzrelation(n, R)
elapsed = timeit.default_timer() - start_time
if result != expected or elapsed > 1.5:
rstring = str(R)
if len(rstring) > 100:
@ramsesoriginal
ramsesoriginal / GAW
Last active August 29, 2015 14:05
News
<b>03.11.2014:</b>Released my first game, A-Maze-Ball! (http://ramsesoriginal.itch.io/gaw1)
<b>27.10.2014:</b> <i>Started working on the first real Game a Week game</i>
<b>22.08.2014:</b> Released the protoype game for Game a Week, EXTREME BALLS! (http://ramsesoriginal.info/GAW-1/)
### Keybase proof
I hereby claim:
* I am ramsesoriginal on github.
* I am ramsesoriginal (https://keybase.io/ramsesoriginal) on keybase.
* I have a public key whose fingerprint is 1C6A 3147 7C72 5DA7 252A 71AE F210 1CC4 226C 2571
To claim this, I am signing this object:
@ramsesoriginal
ramsesoriginal / dabblet.css
Created September 28, 2013 13:36
Untitled
/*Logo new*/
html {
background-color: red;
}
svg {
max-width: 100%;
}
@ramsesoriginal
ramsesoriginal / dabblet.css
Created September 6, 2013 06:49
Example for images with copyable code sample on click
/**
* Example for images with copyable code sample on click
*/
*:focus {
outline: none;
}
figure {
box-sizing: border-box;
width: 440px;
@ramsesoriginal
ramsesoriginal / dabblet.css
Created April 29, 2013 08:49
Collapsing menu using flexbox
/**
* Collapsing menu using flexbox
*/
ul {
list-style: none;
display: block;
position: relative;
padding: 0;
margin: 0;
@ramsesoriginal
ramsesoriginal / dabblet.css
Created February 19, 2013 10:21
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
.container {
width: 800px;
height: 800px;
position: relative;
}
@ramsesoriginal
ramsesoriginal / dabblet.css
Created January 23, 2013 13:14
doodling menu
/**
* doodling menu
*/
* {
box-sizing: border-box;
transition: all 0.5s ease;
vertical-align: middle;
}
@ramsesoriginal
ramsesoriginal / dabblet.css
Created January 18, 2013 09:04
doodling menu
/**
* doodling menu
*/
@ramsesoriginal
ramsesoriginal / dabblet.css
Created November 23, 2012 09:12
Layout doodles
/**
* Layout doodles
*/
* {
box-sizing: border-box;
transition: all 0.5s ease;
vertical-align: middle;
}
html {