Skip to content

Instantly share code, notes, and snippets.

View bidah's full-sized avatar

Rodrigo Figueroa bidah

View GitHub Profile
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl https://npmjs.org/install.sh | sh
@bidah
bidah / gist:7001558
Created October 16, 2013 02:06
form ni para mailchimp cn design ni
<form action="http://colaboractive.us7.list-manage1.com/subscribe/post" method="POST">
<input type="hidden" name="u" value="99b3688f0acc5c3138908d9fd">
<input type="hidden" name="id" value="4effd1e32d">
<input type="email" autocapitalize="off" autocorrect="off" name="MERGE0" id="MERGE0" class="input" placeholder="Tu correo electrónico">
<input class="submit" type="submit" value="Suscribir">
</form>
/**
* Loading animation like the one seen on http://www.freeger.com/projects/contextad/ with CSS
* Caveat: Not DRY. The content needs to be repeated in a data- attribute (or directly in the CSS).
*/
body {
background: #ccc51c;
min-height: 100%;
}
Sass and Compass Resources
=====================================================
***ONLINE***
> Official: http://sass-lang.com
> Official: http://compass-style.org
> http://thesassway.com
@bidah
bidah / dabblet.css
Created March 13, 2013 15:16
centering with absolute position
/**
* centering with absolute position
*/
div {
width: 130px;
height: 130px;
background-color: blue;
position: absolute;
top:0;
@bidah
bidah / dabblet.css
Created May 19, 2012 03:13
Untitled
.one {
background-color:red;
position:relative;
width: 100px;
height:100px;
}
.two {