Skip to content

Instantly share code, notes, and snippets.

View zackn9ne's full-sized avatar

zackn9ne zackn9ne

  • earth, New York
View GitHub Profile
# _ _ __ _ _
# | |__ __ _ ___| |__ _ __ _ __ ___ / _(_) | ___
# | '_ \ / _` / __| '_ \ | '_ \| '__/ _ \| |_| | |/ _ \
# | |_) | (_| \__ \ | | | | |_) | | | (_) | _| | | __/
# |_.__/ \__,_|___/_| |_| | .__/|_| \___/|_| |_|_|\___|
# |_|
# SYSTEM SETTINGS
##########################################################################
# _ _ __ _ _
# | |__ __ _ ___| |__ _ __ _ __ ___ / _(_) | ___
# | '_ \ / _` / __| '_ \ | '_ \| '__/ _ \| |_| | |/ _ \
# | |_) | (_| \__ \ | | | | |_) | | | (_) | _| | | __/
# |_.__/ \__,_|___/_| |_| | .__/|_| \___/|_| |_|_|\___|
# |_|
# SYSTEM SETTINGS
##########################################################################
@zackn9ne
zackn9ne / app.js
Created June 17, 2014 19:22
app.js for drops
$(function(){ //same as document ready
var info = []; //get ready the array called info
//who is draggable, cards
$( ".ui-draggable" ).draggable({
connectToSortable: "#card-pile",
stack: '#content',
revert: "invalid"
});
@zackn9ne
zackn9ne / index.html.erb
Created June 18, 2014 21:17
index.html.erb
<body>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container">
<h1>Hello, world!</h1>
<div id="radar_chart">
@zackn9ne
zackn9ne / app.css
Created June 18, 2014 21:18
app.css
/* Add some margin to the page and set a default font and colour */
body {
margin: 30px;
font-family: "Georgia", serif;
line-height: 1.8em;
color: #333;
}
/* Give headings their own font */
@zackn9ne
zackn9ne / gist:8744928a88fd10589197
Created June 24, 2014 18:30
Git go back to current commit
git checkout -- .
@zackn9ne
zackn9ne / _spec.rb
Created June 24, 2014 18:34
rspec -e
$ rspec -e "already-sent SMS"
@zackn9ne
zackn9ne / syntax.html
Created June 25, 2014 00:42
syntax highlighting via: This page was formatted via http://alexgorbatchev.com/SyntaxHighlighter/
<pre class="brush:ruby">
</pre>
@zackn9ne
zackn9ne / Gemfile
Created June 27, 2014 14:46
Gemfile for rails SASS
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.3'
rails new penguin --database=postgresql --skip-spring