This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Hosted, with love, by DualDev Logo | |
*/ | |
html, body { | |
height: 100%; | |
} | |
body { | |
margin: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* DualDev Logo (white) | |
*/ | |
html, body { | |
height: 100%; | |
} | |
body { | |
margin: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* DualDev Logo | |
*/ | |
html, body { | |
height: 100%; | |
} | |
body { | |
margin: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Hosted, with love, by DualDev Logo | |
*/ | |
html, body { | |
height: 100%; | |
} | |
body { | |
margin: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.box { | |
width: 350px; | |
height: 95px; | |
border: 1px solid #555; | |
background : #CFC; | |
display: box; | |
box-orient: horizontal; | |
box-pack: center; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="actual"> | |
<div class="" id="blurred"> | |
<div class="gear1"></div> | |
<div class="gear2"></div> | |
<div class="circle"></div> | |
<div class="wheel"> | |
<div class="slot"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="actual"> | |
<div class="" id="blurred"> | |
<div class="gear1"></div> | |
<div class="gear2"></div> | |
<div class="circle"></div> | |
<div class="wheel"> | |
<div class="slot"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Menu element that rolls in from the left --> | |
<div class="meny"> | |
<h2>More Experiments</h2> | |
<ul> | |
<li><a href="http://lab.hakim.se/radar/">Radar</a></li> | |
<li><a href="http://lab.hakim.se/forkit-js/">forkit.js</a></li> | |
<li><a href="http://lab.hakim.se/scroll-effects/">stroll.js</a></li> | |
<li><a href="http://lab.hakim.se/zoom-js">zoom.js</a></li> | |
<li><a href="http://lab.hakim.se/reveal-js">reveal.js</a></li> | |
<li><a href="http://itunes.apple.com/us/app/sinuous/id543097218">Sinuous iOS</a></li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CSS States */ | |
body { | |
background: url(http://dabblet.com/img/noise.png); | |
background-color: #F5F2F0; | |
font-family: Georgia, serif; | |
font-size: 18px; | |
line-height: 1.6em; | |
text-shadow: 0 2px 0 white; | |
color: #222; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# first, download the code from http://www.vnsecurity.net/2010/03/codegate_challenge15_sha1_padding_attack/ | |
import json | |
import sys | |
import urllib | |
import requests | |
import hashlib | |
from shaext import shaext |