Skip to content

Instantly share code, notes, and snippets.

View eddywashere's full-sized avatar
🔥
loading...

Eddy Hernandez eddywashere

🔥
loading...
View GitHub Profile
@eddywashere
eddywashere / html5boilerplate.jade
Created November 11, 2012 22:06 — forked from xtian/html5boilerplate.jade
HTML5 Boilerplate in jade
!!! 5
//if lt IE 7
<html class="no-js lt-ie9 lt-ie8 lt-ie7">
//if IE 7
<html class="no-js lt-ie9 lt-ie8">
//if IE 8
<html class="no-js lt-ie9">
//[if gt IE 8]><!
html(class='no-js')
//<![endif]
@eddywashere
eddywashere / ubuntu-setup.sh
Created August 19, 2012 16:27
Ubuntu Setup (12.04)
#!/bin/sh
## current 1 liner
# wget http://url.com/ubuntu-setup.sh && chmod 700 ubuntu-setup.sh && ./ubuntu-setup.sh
# use raw url from github ;]
echo "Choose setup: user, setup, or mail"
read choice
if [ $choice = user ]
@eddywashere
eddywashere / nodeinstall.md
Last active October 8, 2015 04:58
Install nodejs for a local user with git

setup directory and clone from githhub

mkdir ~/.local

cd ~/.local

git clone https://github.com/joyent/node.git

cd node
@eddywashere
eddywashere / html-css-js-resources.md
Last active August 27, 2020 19:47
HTML/CSS/JS resources

HTML/CSS/JS Resources

###Video

  • 30 Days to Learn HTML & CSS
    • Plenty of short tuts on html/css. (Kind of boring but definitely thorough)
  • Functional HTML5 & CSS3
    • Practical applications of html5 and css3, works its way into a site build with good info along the way
  • CSS Cross-Country
  • Very, very in depth look at css. Definitely the best video css resource I've come across.