View file1.txt
Aren't gists great! |
View example.html
<b>Bolded!!!!!!</b> | |
<h1>header</h1> | |
<p>hello<p> |
View byronbay1.json
{ | |
"0": { | |
"link": "https:\/\/www.facebook.com\/Cavanbah\/", | |
"id": "128923005880", | |
"name": "Byron Bay", | |
"location": { | |
"city": "Byron Bay", | |
"country": "Australia", | |
"latitude": -28.642760546087, |
View mygist.js
console.log('mygist works!'); |
View Gemfile
gem 'rails', '4.1.1' | |
# Use jquery as the JavaScript library | |
gem 'jquery-rails' | |
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks | |
gem 'turbolinks' | |
gem 'jquery-turbolinks' | |
# Gems for twitter LESS -> CSS and JS support | |
gem 'execjs' |
View index.html
<!DOCTYPE html> | |
<html data-ng-app="app" id="ng-app"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Circuit</title> | |
<script data-require="angular.js@1.2.0-rc2" data-semver="1.2.0-rc2" src="http://code.angularjs.org/1.2.0-rc.2/angular.js"></script> | |
<script data-require="jquery@1.8.3" data-semver="1.8.3" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.3/jquery.js"></script> | |
<script src="circuit.js"></script> | |
<link rel="stylesheet" href="circuit.css" type="text/css"> | |
<style id="jsbin-css"> |
View sample.txt
A few short lines of text right here will make your visitors want to find out more about your business and what it can do for them. It doesn't take much. Just a line or two.A few short lines of text right here will make your visitors want to find out more about your business and what it can do for them. It doesn't take much. Just a line or two.A few short lines of text right here will make your visitors want to find out more about your business and what it can do for them. It doesn't take much. Just a line or two.A few short lines of text right here will make your visitors want to find out more about your business and what it can do for them. It doesn't take much. Just a line or two.A few short lines of text right here will make your visitors want to find out more about your business and what it can do for them. It doesn't take much. Just a line or two.A few short lines of text right here will make your visitors want to find out more about your business and what it can do for them. It doesn't take much. Just |
View application.html.erb
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
</head> | |
<body> | |
<%= yield %> | |
<%= debug(PP.pp(request.env, "")) if Rails.env.development? %> | |
</body> | |
</html> |
View ztype.js
// Built with IMPACT - impactjs.org | |
(function (window) { | |
"use strict"; | |
Number.prototype.map = function (istart, istop, ostart, ostop) { | |
return ostart + (ostop - ostart) * ((this - istart) / (istop - istart)); | |
}; | |
Number.prototype.limit = function (min, max) { | |
return Math.min(max, Math.max(min, this)); | |
}; | |
Number.prototype.round = function (precision) { |
View index.coffeescript
console.log document.getElementById "test" |
NewerOlder