This file contains hidden or 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
(1..100).each do |n| | |
o = "" | |
o << "Fizz" if (n % 3) == 0 | |
o << "Buzz" if (n % 5) == 0 | |
puts "#{o.empty? ? n : o}" | |
end |
This file contains hidden or 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
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
"Highlight whitespace at the end of lines | |
" From: http://vim.wikia.com/wiki/Highlight_unwanted_spaces | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
highlight ExtraWhitespace ctermbg=red guibg=red | |
match ExtraWhitespace /\s\+$/ | |
autocmd BufWinEnter * match ExtraWhitespace /\s\+$/ | |
autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/ | |
autocmd InsertLeave * match ExtraWhitespace /\s\+$/ |
This file contains hidden or 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
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Automatically strip trailing whitespace from lines within files | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
autocmd BufWinEnter,BufRead,InsertLeave,BufEnter * call RemoveTrailingWhitespace() | |
function! RemoveTrailingWhitespace() | |
silent! execute '%s/\s\+$//g' | |
endfunction |
This file contains hidden or 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
# Load plugins (only those I whitelist) | |
Pry.config.should_load_plugins = false | |
# Launch Pry with access to the entire Rails stack. | |
# If you have Pry in your Gemfile, you can pass: ./script/console --irb=pry instead. | |
# If you don't, you can load it through the lines below :) | |
rails = File.join Dir.getwd, 'config', 'environment.rb' | |
if File.exist?(rails) && ENV['SKIP_RAILS'].nil? | |
require rails |
This file contains hidden or 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
var app = require('http').createServer(handler); | |
var statusCode = 200; | |
app.listen(9000); | |
function handler (req, res) { | |
var data = ''; | |
if (req.method == "POST") { | |
req.on('data', function(chunk) { |
This file contains hidden or 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
{ | |
id: "f4ef6656-172c-4c09-9808-f07e03357519", | |
type: "form.create", | |
owner_id: "00053caf-4b6e-4c86-88b6-64695895dffe", | |
data: { | |
name: "Intersections", | |
description: "Intersection in Colorado Springs", | |
bounding_box: null, | |
record_title_key: "94f8", | |
status_field: { }, |
This file contains hidden or 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
{ | |
id: "dfb667fb-f192-4d6d-8794-e89ece5db6ed", | |
type: "form.update", | |
owner_id: "00053caf-4b6e-4c86-88b6-64695895dffe", | |
data: { | |
name: "Intersections", | |
description: "Intersection in the city of Colorado Springs.", | |
bounding_box: null, | |
record_title_key: "94f8", | |
status_field: { }, |
This file contains hidden or 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
{ | |
id: "8faf0917-1987-4ac6-bcc7-4fbf71d191f3", | |
type: "record.create", | |
owner_id: "00053caf-4b6e-4c86-88b6-64695895dffe", | |
data: { | |
status: null, | |
version: 1, | |
id: "7553fd44-78bb-41eb-a453-8b301ae5e52e", | |
form_id: "295eda4a-7795-4881-9f62-085a930b356e", | |
project_id: null, |
This file contains hidden or 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
{ | |
id: "1908484a-fc1b-4c0b-ba79-ddeb83790637", | |
type: "record.update", | |
owner_id: "00053caf-4b6e-4c86-88b6-64695895dffe", | |
data: { | |
status: null, | |
version: 2, | |
id: "7553fd44-78bb-41eb-a453-8b301ae5e52e", | |
form_id: "295eda4a-7795-4881-9f62-085a930b356e", | |
project_id: null, |
This file contains hidden or 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
{ | |
id: "1371c81d-367b-45d3-9f7c-91da5de9518e", | |
type: "record.delete", | |
owner_id: "00053caf-4b6e-4c86-88b6-64695895dffe", | |
data: { | |
status: null, | |
version: 3, | |
id: "7553fd44-78bb-41eb-a453-8b301ae5e52e", | |
form_id: "295eda4a-7795-4881-9f62-085a930b356e", | |
project_id: null, |
OlderNewer