This list will hopefully shrink faster than it can grow. (yeah, right)
jQuery deparam / deparam+ / sortObject (WIP)
https://gist.github.com/1025817
jQuery infiniteScroller (WIP)
jQuery scrollinout event
# Store rake tasks specific to [company] | |
namespace :[company] do | |
# Migrate [Company]'s data into the new CRM | |
namespace :migrate do | |
require 'progressbar' | |
desc "Run all [company] migration tasks" | |
task :all => [:config, :users, :comments, :accounts] |
#!/bin/bash | |
# | |
# => $ sudo apt-get install -y --force-yes curl; sudo su - -c "bash < <(curl -sL http://is.gd/..........)" | |
# | |
# Deploy Fat Free CRM (rails3 branch) to a freshly installed Ubuntu machine. | |
# -------------------------------------------------------------------------- | |
# | |
# Steps: | |
# | |
# *) Install required packages (git, postgresql, etc.) |
This list will hopefully shrink faster than it can grow. (yeah, right)
jQuery deparam / deparam+ / sortObject (WIP)
https://gist.github.com/1025817
jQuery infiniteScroller (WIP)
jQuery scrollinout event
/*! | |
* jQuery Farthest Decendant - v0.2pre - 6/1/2011 | |
* http://benalman.com/ | |
* | |
* Copyright (c) 2011 "Cowboy" Ben Alman | |
* Dual licensed under the MIT and GPL licenses. | |
* http://benalman.com/about/license/ | |
*/ | |
;(function($) { |
*.pbxproj -crlf -diff -merge |
[aaron@higgins ~]$ irb | |
irb(main):001:0> File.write('hello.rb', 'class Foo; def bar; 1 + 1; end end') | |
=> 34 | |
irb(main):002:0> RubyVM::InstructionSequence.compile_file 'hello.rb' | |
=> <RubyVM::InstructionSequence:<main>@hello.rb> | |
irb(main):003:0> puts _.disasm | |
== disasm: <RubyVM::InstructionSequence:<main>@hello.rb>================ | |
0000 trace 1 ( 1) | |
0002 putspecialobject 3 | |
0004 putnil |
# | |
# background.rb | |
# | |
# a minimalist toolset for managing arbitrary background tasks in rails. | |
# background.rb handles | |
# | |
# - daemonization | |
# - cli tools for start/stop/restart/pid, etc | |
# - ensuring only one process is running at a time | |
# - processing loop with responsive sleep (wakes on signal) |
1) Consider the following HTML: | |
<div id="content" class="foo"> | |
<div class="bar"> | |
<a href="/foobar">Foobar</a> | |
</div> | |
</div> | |
And the CSS for this page is: |