Skip to content

Instantly share code, notes, and snippets.

@gus
gus / gist:180907
Created September 4, 2009 14:24 — forked from mtodd/gist:180398
Ruby and Heredocs
Surround a heredoc with quotes and you can continue the code on the same line:
render :status => 404, :text => <<-'EOH' and return unless setup
article not found<br/>
I, as a server, have failed<br/>
https?
EOH
Quotes also give you more freedom/creativity with the terminal ID:
@nolim1t
nolim1t / gist:271018
Created January 7, 2010 05:29
Sample HTTP Request in Powershell
Powershell HTTP Request
$r = [System.Net.WebRequest]::Create("http://url/")
$resp = $r.GetResponse()
$reqstream = $resp.GetResponseStream()
$sr = new-object System.IO.StreamReader $reqstream
$result = $sr.ReadToEnd()
write-host $result
Username and passwords
@defunkt
defunkt / ruby.sh
Created May 19, 2010 17:53
My Ruby Setup
# directory structure of /ruby
$ tree -L 1 /ruby
/ruby
|-- default -> ree-1.8.7
|-- ree-1.8.7
`-- ruby-1.9.1-p376
3 directories, 0 files
@toothrot
toothrot / weird.rb
Created June 15, 2010 22:53
if it's seen by the compiler, it's not a NameError
hey = nil
yo = "foo"
baz = 3 if false
puts hey.inspect
puts yo.inspect
puts baz.inspect # Nil!!
puts spaz.inspect # Name Error
@toothrot
toothrot / eigenclass_your_face.rb
Created July 9, 2010 21:44
a modular way to smack up eigenclass
module Farts
def farts
"pfft"
end
end
hey = "yo"
hey.farts # NoMethodError: undefined method `farts' for "yo":String
@toothrot
toothrot / output.txt
Created July 9, 2010 21:45
how setups get run in Riot
context setups
+ asserts should only run the setup once
+ asserts even with multiple assertions
context setups that are nested
+ asserts gets run again
+ asserts only once per nesting, even with multiple assertions
4 passes, 0 failures, 0 errors in 0.000148 seconds
@gus
gus / a-bundler-whoa.markdown
Created October 25, 2010 14:32
Gus' Bundler Woes

I'm not sure what the feature is called in 0.9.26, so I'll describe it instead; essentially, I can package (vendor/cache) my gems for use in deployment and if during the deployment (bundle install vendor/bundle) a gem is found in the shared gems repo (managed through RVM gemsets per project) then that gem is used without unpacking it in vendor/bundle. This is useful to me because my ops dude pre-installs gems needing compilation on all of the systems needing it (managed through Puppet for now); these gems are currently unicorn and bson_ext.

You can argue that he just shouldn't do that and I won't argue back, but that's something he likes since he doesn't want to have to recompile unicorn, bson_ext, etc. for each system as deploys are running; we have a few systems to manage and the list is growing; we also have several services working together and not all are ruby, so he just wants simple deploys. I also can't argue too much with that as there are oodles of things he concerns himself with that I don't have/

irb(main):034:0> D, Y = 8, 0
=> [8, 0]
irb(main):035:0> 8===D-- ( Y )
=> true
@toothrot
toothrot / strings.rb
Created April 22, 2011 00:09
Single vs Double quotes
require 'benchmark'
Benchmark.bmbm do |b|
b.report("single") do
10_000.times do
'some string'
end
end
b.report("double") do
10_000.times do
"some string"
@jairoglyph
jairoglyph / emoji-campfire
Created April 25, 2011 14:35
Emoji emoticons for Campfire
:sunny:
:zap:
:leaves:
:lipstick:
:cop:
:wheelchair:
:fish:
:hammer:
:moneybag:
:calling: