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
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: |
# | |
# 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) |
[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 |
*.pbxproj -crlf -diff -merge |
/*! | |
* 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($) { |
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
#!/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.) |
# 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] |
This.rubyforge_project = 'codeforpeople' | |
This.author = "Ara T. Howard" | |
This.email = "[email protected]" | |
This.homepage = "http://github.com/ahoward/#{ This.lib }" | |
task :default do | |
puts((Rake::Task.tasks.map{|task| task.name.gsub(/::/,':')} - ['default']).sort) | |
end |
# instead of setting all paths individually, you set all of them relative to | |
# another root, say my_gem/lib/rails/engine this way | |
if defined?(Rails) | |
module MyGem | |
class Engine < Rails::Engine | |
paths.path = MyGem.engine_dir |