Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View UpperLEFTY's full-sized avatar
:octocat:
https://soundcloud.com/upper-lefty/sets/sub_pop-vs-indie-rock

Essence Alexander UpperLEFTY

:octocat:
https://soundcloud.com/upper-lefty/sets/sub_pop-vs-indie-rock
View GitHub Profile
@chantastic
chantastic / gulpfile.js
Last active October 13, 2023 03:20
This a script for a Full Stack Talk, given 3/13/14. Feel free to follow along at your own pace.
var gulp = require('gulp');
var coffee = require('gulp-coffee');
gulp.task('scripts', function () {
gulp.src('src/*.coffee')
.pipe(coffee())
.pipe(gulp.dest('./'));
});
gulp.task('watch', function () {
@spilth
spilth / rails-crash-course.md
Created September 18, 2012 22:53
Ruby on Rails Crash Course

Ruby on Rails Crash Course

This is a course meant to give you the basics of Ruby and Rails with the assumption that you'll use the resources provided below to further your learning.

It assumes you are familiar with basic programming concepts and the basics of object oriented programming.

Basics

Create a Ruby Script