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
Intro: | |
- Name + Music | |
# Quote! | |
"If I have a thousand ideas and only one turns out to be good, I am satisfied." - Alfred Nobel | |
- One good idea is better than none! | |
- About Dynamite | |
- Created by Alert Nobel | |
- Yes, he also instituted the Nobel Peace Prize. |
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
var params = function () { | |
var vars = [], hash; | |
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&'); | |
for(var i = 0; i < hashes.length; i++) { | |
hash = hashes[i].split('='); | |
vars.push(hash[0]); | |
vars[hash[0]] = hash[1]; | |
} | |
return vars; | |
}() |
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
.center { | |
width: 500px; | |
position: absolute; | |
left: 50%; | |
margin-left: -250px; /* Exactly half of the width. */ | |
} | |
/* | |
Full Formula: | |
margin-left = width/2 if left = 50% |
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
#include <iostream> | |
#include <string> | |
using namespace std; | |
// declare main function with argv abilities | |
int main(int argc, char* argv[]) { | |
// first string | |
string statement; |
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
.centered { | |
display: block; | |
margin-left: auto; | |
margin-right: auto; | |
text-align: 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
$ gem install hyde-ftp |
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
// make key | |
adt –certificate -cn SelfSigned 1024-RSA sampleCert.pfx samplePassword | |
// make installer | |
adt -package -storetype pkcs12 -keystore sampleCert.pfx HelloWorld.air | |
HelloWorld-app.xml HelloWorld.html AIRAliases.js | |
// to include whole directory use this command | |
dir\ | |
// with dir being the directory name |
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
session_save_path("tmp"); |
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
.glowingtext { | |
text-shadow: none; | |
-webkit-transition: .25s linear 0s; | |
-moz-transition: .25s linear 0s; | |
-o-transition: .25s linear 0s; | |
transition: .25s linear 0s; | |
} | |
.glowingtext:hover { | |
text-shadow: -1px 1px 8px #ffffff, 1px -1px 8px #ffffff; | |
} |
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
document.write('.fadein { | |
opacity: 0.5; | |
transition: opacity .25s ease-in-out; | |
-moz-transition: opacity .25s ease-in-out; | |
-webkit-transition: opacity .25s ease-in-out; | |
} | |
.fadein:hover { | |
opacity: 1; | |
}') |