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 / 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.
@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 / 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 / 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 / grunt config
Created November 30, 2012 19:48 — forked from siygle/grunt config
deploy to s3
grunt.registerMultiTask('deploy', 'deploy program to cloud', function() {
var pkgcloud = require('pkgcloud')
, walk = require('walk')
, fs = require('fs')
, done = this.async()
, self = this;
grunt.log.w
@eddywashere
eddywashere / awesome.zsh-theme
Last active December 10, 2015 04:48
An awesome oh-my-zsh theme
function prompt_char {
git branch >/dev/null 2>/dev/null && echo '±' && return
hg root >/dev/null 2>/dev/null && echo '☿' && return
svn info >/dev/null 2>/dev/null && echo 'ಠ_ಠ' && return
echo '○'
}
function virtualenv_info {
[ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
}
@eddywashere
eddywashere / susy-non-semantic-grid.css
Last active December 14, 2015 11:38
A Non Semantic Grid with Susy
.col-1 {
width: 6.85484%;
float: left;
margin-right: 1.6129%;
display: inline;
}
.col-2 {
width: 15.32258%;
float: left;
@eddywashere
eddywashere / secret.rake
Last active December 17, 2015 12:09 — forked from SFEley/secret.rake
Open an encrypted data bag item or create it if it doesn't exist. Takes two arguments, databag and item name.
namespace :secret do
desc "Edit an encrypted data bag item in EDITOR"
task :edit, :data_bag, :bag_item do |t, args|
unless ENV['EDITOR']
puts "No EDITOR found. Try:"
puts "export EDITOR=vim"
puts "or"
puts "export EDITOR='subl -w'"
exit 1
end
@eddywashere
eddywashere / mongoose-schematypes.js
Created September 6, 2013 23:02
mongoose schematypes
var schema = new Schema({
name: String,
binary: Buffer,
living: Boolean,
updated: { type: Date, default: Date.now }
age: { type: Number, min: 18, max: 65 }
mixed: Schema.Types.Mixed,
_someId: Schema.Types.ObjectId,
array: [],
ofString: [String],
@eddywashere
eddywashere / frontend.md
Last active December 24, 2015 06:49
My resources for keeping up with frontend design and web development