Skip to content

Instantly share code, notes, and snippets.

View diegoarigony's full-sized avatar

Diego G Arigony diegoarigony

View GitHub Profile

The list

Ada is a tank. A butt-ugly tank that never breaks down. People laugh uncontrollably if you tell them you drive Ada, but really, do you want to be driving a sports car in a war zone? [from Amit Dubey]

Assembly Language is a bare engine; you have to build the car yourself and manually supply it with gas while it's running, but if you're careful it can go like a bat out of hell.

[From "Subterfug" off digg.com:]

Assembly Language: you are the car.

@diegoarigony
diegoarigony / css3-gradients.scss
Created April 25, 2014 14:25
CSS3 Linear Gradient
.content-block .small-btn { border:0; height:40px; width:121px;
-ms-filter:'progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffffff", endColorstr="#ffe6e6e6")';
background: linear-gradient(
to bottom,
#fff,
#e6e6e6);
background: -moz-linear-gradient(
top,
#fff 0%,
#e6e6e6);
::-webkit-input-placeholder { /* WebKit browsers */ color:#999; }
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color:#999; opacity:1; }
::-moz-placeholder { /* Mozilla Firefox 19+ */ color:#999; opacity:1; }
:-ms-input-placeholder { /* Internet Explorer 10+ */ color:#999; }
/* FOCUS */
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder { color:#a8a8a8 !important; }
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder { color:#a8a8a8 !important; opacity:1; }
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder { color:#a8a8a8 !important; opacity:1; }
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder { color:#a8a8a8 !important; }