View file1.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Aren't gists great! |
View example.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<b>Bolded!!!!!!</b> | |
<h1>header</h1> | |
<p>hello<p> |
View byronbay1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"0": { | |
"link": "https:\/\/www.facebook.com\/Cavanbah\/", | |
"id": "128923005880", | |
"name": "Byron Bay", | |
"location": { | |
"city": "Byron Bay", | |
"country": "Australia", | |
"latitude": -28.642760546087, |
View mygist.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log('mygist works!'); |
View Gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
</head> | |
<body> | |
<%= yield %> | |
<%= debug(PP.pp(request.env, "")) if Rails.env.development? %> | |
</body> | |
</html> |
View ztype.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log document.getElementById "test" |
NewerOlder