Skip to content

Instantly share code, notes, and snippets.

puts [1, 2, "fizz", 4, "buzz", "fizz", 7, 8, "fizz", "buzz", 11, "fizz", 13, 14, "fizzbuzz", 16, 17, "fizz", 19, "buzz", "fizz", 22, 23, "fizz", "buzz", 26, "fizz", 28, 29, "fizzbuzz", 31, 32, "fizz", 34, "buzz", "fizz", 37, 38, "fizz", "buzz", 41, "fizz", 43, 44, "fizzbuzz", 46, 47, "fizz", 49, "buzz", "fizz", 52, 53, "fizz", "buzz", 56, "fizz", 58, 59, "fizzbuzz", 61, 62, "fizz", 64, "buzz", "fizz", 67, 68, "fizz", "buzz", 71, "fizz", 73, 74, "fizzbuzz", 76, 77, "fizz", 79, "buzz", "fizz", 82, 83, "fizz", "buzz", 86, "fizz", 88, 89, "fizzbuzz", 91, 92, "fizz", 94, "buzz", "fizz", 97, 98, "fizz", "buzz"].join("\n")
$(function(){
var widths = {},
wrapped = {},
brokenIESelects = $(".brokenIESelects");
brokenIESelects.live("activate", function(){
var $elem = $(this),
id = $elem.attr("id");
if(widths[id] === undefined){
-5.times do
.herpderp
Lorem Ipsum dolor sit amet
s = "my confirmation is: #{confirmation_choice}"
s = "My confirmation is: "
s << confirmation_choice.to_s
s = "My confirmation is: "
s << confirmation_choice # <=== if it's already a string you probably don't need the to_s
s = <<EOS
My confirmation is:
foo = "string "
bar = "interpolation"
s = "this is a string doing #{foo + bar}"
#{this is a comment}
#include <stdio.h>
#include <stdlib.h>
//Input filename typedefs
#define SBOX "aes_sbox.txt"
#define INVSBOX "aes_inv_sbox.txt"
//Number of 32-bit words comprising the state
array.reduce({}) do |hash, elem|
hash[elem.foo] = elem.bar
hash
end
App.Router ->
@route "Foo" # => Route is foo, FooController, model is Foo, etc
@resource "Herp", -> # => Route is herp, HerpController, model is Herp, etc
@route "Derp" # => Route is herp.derp, HerpDerpController, model is Derp (I think)
@resource "Animal", -> # => Route is animal, AnimalController, Animal, etc
@resource "Cat", -> # => route is cat, CatController, Cat, etc. BECAUSE IT IS A
# RESOURCE IT OPENS A NEW SCOPE, instead of being (for example) AnimalCatController
@route "Meow" # => Route is cat.meow, CatMeowController, model is Meow (I think)
# As soon as #account returns, cls stops existing because it's a local
# so you call .calls on the returned object, which attemts to return a
# non-existant local variable. In javascript/lisp/etc cls would be retained
# in a closure.
class BrokenMockTwilioClient
def account
act = Object.new
cls = Object.new
class FooController < ApplicationController
def an_action
do_thing
end
private
def do_thing
@side_effect = a_value
end