Skip to content

Instantly share code, notes, and snippets.

View stoplion's full-sized avatar
🎯
Focusing

George Norris stoplion

🎯
Focusing
  • Ottertune
  • Elsewhere
View GitHub Profile
This file has been truncated, but you can view the full file.
[{"athlete":"Michael Phelps","age":23,"country":"United States","year":2008,"date":"24/08/2008","sport":"Swimming","gold":8,"silver":0,"bronze":0,"total":8},
{"athlete":"Michael Phelps","age":19,"country":"United States","year":2004,"date":"29/08/2004","sport":"Swimming","gold":6,"silver":0,"bronze":2,"total":8},
{"athlete":"Michael Phelps","age":27,"country":"United States","year":2012,"date":"12/08/2012","sport":"Swimming","gold":4,"silver":2,"bronze":0,"total":6},
{"athlete":"Natalie Coughlin","age":25,"country":"United States","year":2008,"date":"24/08/2008","sport":"Swimming","gold":1,"silver":2,"bronze":3,"total":6},
{"athlete":"Aleksey Nemov","age":24,"country":"Russia","year":2000,"date":"01/10/2000","sport":"Gymnastics","gold":2,"silver":1,"bronze":3,"total":6},
{"athlete":"Alicia Coutts","age":24,"country":"Australia","year":2012,"date":"12/08/2012","sport":"Swimming","gold":1,"silver":3,"bronze":1,"total":5},
{"athlete":"Missy Franklin","age":17,"country":"United States","year":2012,"da
We can't make this file beautiful and searchable because it's too large.
Name, Quick Description — Description, Price, Hours open
Account Name, - , ,
Panxa, Nuevo Latino Restaurant - , , 3:00 to 10:00 PM
Waterman's Harbor, Restaurant - , , 11:00 AM to 9:00 PM
agave, - , ,
Cucina Picarelli, Italian Restaurant - , , 3:30 to 9:30 PM
MadChefKitchen, Caterer - , , 6:00 AM to 10:00 PM
Daily Grill Downtown Los Angeles, Bar & Grill - Modern casual chain offering a broad menu of American comfort food plus a full bar., ,
Guido's Italian, Italian Restaurant - Long-standing establishment providing homemade Italian dishes in a cozy old-school atmosphere., $$$ ,
window.DSCR = window.DSCR || {};
DSCR.hostname = DSCR.hostname || "www.opentable.com";
DSCR.cookies = DSCR.cookies || {};
DSCR.templates = DSCR.templates || {};
DSCR.xhr = DSCR.xhr || {};
DSCR.util = DSCR.util || {};
DSCR.init = DSCR.init || {};
window.DSCR.cookies = {
setCookie: function(name, value, days) {
window.DSCR = window.DSCR || {};
DSCR.hostname = DSCR.hostname || "www.opentable.com";
DSCR.cookies = DSCR.cookies || {};
DSCR.templates = DSCR.templates || {};
DSCR.xhr = DSCR.xhr || {};
DSCR.util = DSCR.util || {};
DSCR.init = DSCR.init || {};
window.DSCR.cookies = {
setCookie: function(name, value, days) {
@stoplion
stoplion / gist:a9d83bfddfa0eabeb2d9
Created December 8, 2015 06:38 — forked from deps/gist:6028795
A reminder to myself and anyone wanting to use Sinatra on Nitrous.IO
require 'sinatra'
# Set port for compatability with Nitrous.IO
configure :development do
set :bind, '0.0.0.0'
set :port, 3000 # Not really needed, but works well with the "Preview" menu option
end
get '/' do
"Sinatra on Nitrous.IO"
@stoplion
stoplion / dscr_injector_test.js
Last active December 14, 2015 21:36
dscr_injector_test
window.DSCR = window.DSCR || {};
DSCR.hostname = DSCR.hostname || "www.opentable.com";
DSCR.cookies = DSCR.cookies || {};
DSCR.templates = DSCR.templates || {};
DSCR.xhr = DSCR.xhr || {};
DSCR.util = DSCR.util || {};
DSCR.init = DSCR.init || {};
window.DSCR.cookies = {
setCookie: function(name, value, days) {
[
{ "keys": ["ctrl+s"], "command": "toggle_side_bar" },
{ "keys": ["ctrl+super+r"], "command": "reveal_in_side_bar"},
{ "keys": ["shift+ctrl+p"], "command": "expand_selection_to_paragraph"},
{ "keys": ["shift+space"], "command": "move", "args": {"by": "characters", "forward": true} }
]
@stoplion
stoplion / gist:4e277a004d2d4927bb33
Created September 16, 2015 05:45
Sublime Text Settings
{
"bold_folder_labels": true,
"color_scheme": "Packages/Seti_UI/Scheme/Seti_orig.tmTheme",
"detect_indentation": true,
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
"fade_fold_buttons": false,
"folder_exclude_patterns":
[
".svn",
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')