Skip to content

Instantly share code, notes, and snippets.

View constantine-nikolaou's full-sized avatar

Constantine Nikolaou constantine-nikolaou

View GitHub Profile

Here's how to install PostgreSQL and have it run automatically at startup, on an Ubuntu 10.04 virtual machine using Vagrant. This took me a while to figure out:

Add the default lucid32 base box to your vagrant, if you haven't already:

host> vagrant box add lucid32 http://files.vagrantup.com/lucid32.box 

Now make a new lucid32 virtual machine and install postgresql on it:

@constantine-nikolaou
constantine-nikolaou / gist:1438212
Created December 6, 2011 13:31
Convert string chars to hex values
ree-1.8.7-2011.03 :027 > array = []
=> []
ree-1.8.7-2011.03 :028 > "hello".each_byte {|x| array << x}
=> "hello"
ree-1.8.7-2011.03 :029 > array.join(",")
=> "104,101,108,108,111"
@constantine-nikolaou
constantine-nikolaou / super_simple_sqs.rb
Created October 26, 2011 13:15 — forked from ssimeonov/super_simple_sqs.rb
This is a simple way to post a message to Amazon SQS w/o any gems (the queue must already exist)
module Amazon
module Authentication
SIGNATURE_VERSION = "2"
@@digest = OpenSSL::Digest::Digest.new("sha256")
def sign(auth_string)
Base64.encode64(OpenSSL::HMAC.digest(digester, aws_secret_access_key, auth_string)).strip
end
def digester
@constantine-nikolaou
constantine-nikolaou / compress_requests.rb
Created August 5, 2011 11:42 — forked from subdigital/compress_requests.rb
Rack Middleware to automatically unzip gzipped/deflated POST data
class CompressedRequests
def initialize(app)
@app = app
end
def call(env)
if env['REQUEST_METHOD'] =~ /(POST|PUT)/
if env.keys.include? 'HTTP_CONTENT_ENCODING'
input = env['rack.input'].read
# Dutch translation in YML by Ariejan de Vroom <[email protected]>
# - Sponsored by Kabisa ICT - http://kabisa.nl
#
# Fully compatible with Translate (the Rails translation plugin)
# - http://developer.newsdesk.se/2009/01/21/translate-new-rails-i18n-plugin-with-a-nice-web-ui/
---
nl:
number:
format:
separator: ","
@constantine-nikolaou
constantine-nikolaou / git reset --hard HEAD ; git pull --rebase origin 2.0.0pre
Created June 14, 2011 11:41
git reset --hard HEAD ; git pull --rebase origin 2.0.0pre
(14:38) user:~/dev/rubinius(master)$ git reset --hard HEAD ; git pull --rebase origin 2.0.0pre
HEAD is now at 9175c06 Merge pull request #1014 from apotheon/master
remote: Counting objects: 8015, done.
remote: Compressing objects: 100% (3301/3301), done.
remote: Total 7234 (delta 4511), reused 6178 (delta 3695)
Receiving objects: 100% (7234/7234), 3.40 MiB | 51 KiB/s, done.
Resolving deltas: 100% (4511/4511), completed with 320 local objects.
From git://github.com/rubinius/rubinius
* branch 2.0.0pre -> FETCH_HEAD
First, rewinding head to replay your work on top of it...
@constantine-nikolaou
constantine-nikolaou / rvm + rubinius
Created June 14, 2011 09:56
installing rubinius using rvm
(12:17) user:~$ rvm install rbx-2.0.0pre
rbx-2.0.0pre installing #dependencies
Pulling from origin 2.0.0pre
ERROR: Error running 'git reset --hard HEAD ; git pull --rebase origin 2.0.0pre', please read /Users/user/.rvm/log/rbx-2.0.0pre/rbx.repo.log
fatal: Not a git repository (or any of the parent directories): .git
Copying from repo to source...
chmod: ./configure: No such file or directory
rbx-2.0.0pre - #configuring
ERROR: Error running '/Users/user/.rvm/wrappers/ree-1.8.7-2011.03/ruby ./configure --prefix=/Users/user/.rvm/rubies/rbx-2.0.0pre --skip-system ', please read /Users/user/.rvm/log/rbx-2.0.0pre/configure.log
ERROR: There has been an error while running '/Users/user/.rvm/wrappers/ree-1.8.7-2011.03/ruby ./configure --prefix=/Users/user/.rvm/rubies/rbx-2.0.0pre --skip-system '.
# capistrano deployment
require "bundler/capistrano"
require "capistrano/ext/multistage"
set :stages, %w(canary production)
set :default_stage, "canary"
set :application, "lolcats"
set :deploy_to, "/srv/#{application}"
require 'rubygems'
require 'sinatra'
require 'fileutils'
# upload with:
# curl -v -F "data=@/path/to/filename" http://localhost:4567/user/filename
post '/:name/:filename' do
userdir = File.join("files", params[:name])
config.gem 'factory_girl',
:version => '>= 1.2.3' unless File.directory?(File.join(Rails.root, 'vendor/plugins/factory_girl'))
# Cucumber and dependencies
config.gem 'polyglot', :lib => false,
:version => '0.2.9' unless File.directory?(File.join(Rails.root, 'vendor/plugins/polyglot'))
config.gem 'treetop', :lib => false,
:version => '1.4.3' unless File.directory?(File.join(Rails.root, 'vendor/plugins/treetop'))
config.gem 'term-ansicolor', :lib => false,