$ rails g model User
belongs_to
has_one
| #!/bin/zsh | |
| HISTFILE=~/.histfile | |
| HISTSIZE=10000 # about a year's worth | |
| SAVEHIST=10000 | |
| bindkey -e | |
| # don't overwrite history | |
| setopt APPEND_HISTORY |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| $stack, $draws = [], {} | |
| def method_missing *args | |
| return if args[0][/^to_/] | |
| $stack << args.map { |a| a or $stack.pop } | |
| $draws[$stack.pop(2)[0][0]] = args[1] if args[0] == :< | |
| end | |
| class Array | |
| def +@ |
| ### | |
| # Scheme code is translated to YARV byte code, then evaluated in the | |
| # Ruby Virtual Machine | |
| require 'rbconfig' | |
| require 'dl' | |
| require 'fiddle' | |
| require 'strscan' | |
| class RubyVM |
In August 2007 a hacker found a way to expose the PHP source code on facebook.com. He retrieved two files and then emailed them to me, and I wrote about the issue:
http://techcrunch.com/2007/08/11/facebook-source-code-leaked/
It became a big deal:
http://www.techmeme.com/070812/p1#a070812p1
The two files are index.php (the homepage) and search.php (the search page)
| var preventCloseEvent = function() { | |
| var appWindow = Ti.UI.getCurrentWindow(); | |
| appWindow.addEventListener(Ti.CLOSE, function(event) { | |
| appWindow.hide(); | |
| event.preventDefault(); | |
| return false; | |
| }); | |
| return appWindow; |
| var xLBD = {}; | |
| xLBD.c = function (){ | |
| xLBD.f = unescape(document.querySelector("[flashvars]").getAttribute("flashvars")).substring(7); | |
| xLBD.f = JSON.parse(xLBD.f.substring(0, xLBD.f.lastIndexOf("}") + 1)).video_data[0].hd_src; | |
| xLBD.a = "<div style='position:absolute;top:100px;height:300px;left:15%;background:#fff;border:10px solid #000;font-size:5em;padding:100px;'>Click <a download='lookback.mp4' href='"+xLBD.f+"'>here<\/a> to download your lookBack video.</div>"; | |
| document.body.innerHTML += xLBD.a; | |
| } | |
| if(document.readyState == "complete") | |
| xLBD.c(); | |
| else window.onload = xLBD.c; |