Skip to content

Instantly share code, notes, and snippets.

[cv@bacon ~]$ curl -i http://localhost:3000/passport_applications/new.xml
HTTP/1.1 200 OK
Connection: close
Date: Thu, 31 Jul 2008 01:52:51 GMT
Set-Cookie: _webdocs_session=BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--859666d5b96dd9ae67722dc0c8f410d3b6b365b6; path=/
Status: 200 OK
X-Runtime: 0.00808
ETag: "5f8af8da6299af5a000c21dc2a796e46"
Cache-Control: private, max-age=0, must-revalidate
Server: Mongrel 1.1.5
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>YUI Base Page</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/2.5.1/build/reset-fonts-grids/reset-fonts-grids.css" type="text/css">
<style type="text/css" media="screen" >
* { padding:0; margin: 0; font-family: helvetica;}
body { background: margin:1em; padding:0; }
@cv
cv / git-histogram.sh
Created July 22, 2008 11:10
Runs a script for every commit in a git repository
moved to http://github.com/cv/git-utils :)
@cv
cv / gist:751
Created July 22, 2008 09:13 — forked from anonymous/gist:698
class RegisterMail < ActionMailer::Base
def send_mail(client_email, username)
subject "Someone have signed up."
recipients "#{client_email}"
from 'test@test.com'
charset "utf-8"
content_type 'text/html'
body "#{username}" + "have been signed up."
end
end