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
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") |
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
$(function(){ | |
var widths = {}, | |
wrapped = {}, | |
brokenIESelects = $(".brokenIESelects"); | |
brokenIESelects.live("activate", function(){ | |
var $elem = $(this), | |
id = $elem.attr("id"); | |
if(widths[id] === undefined){ |
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
-5.times do | |
.herpderp | |
Lorem Ipsum dolor sit amet |
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
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: |
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
foo = "string " | |
bar = "interpolation" | |
s = "this is a string doing #{foo + bar}" | |
#{this is a comment} |
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
#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 |
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
array.reduce({}) do |hash, elem| | |
hash[elem.foo] = elem.bar | |
hash | |
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
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) |
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
# 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 | |
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
class FooController < ApplicationController | |
def an_action | |
do_thing | |
end | |
private | |
def do_thing | |
@side_effect = a_value | |
end |