Skip to content

Instantly share code, notes, and snippets.

View berga's full-sized avatar

Marco Bergantin berga

  • Lutech spa
  • Cagliari, Italy
View GitHub Profile
@stantonk
stantonk / doit
Created November 15, 2012 22:46
Install python 2.7.3 on CentOS 5.8
#!/bin/bash
# Source: http://toomuchdata.com/2012/06/25/how-to-install-python-2-7-3-on-centos-6-2/
yum groupinstall "Development tools"
yum install zlib-devel
yum install bzip2-devel openssl-devel ncurses-devel
wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2
tar xf Python-2.7.3.tar.bz2
cd Python-2.7.3
@shokai
shokai / httpd.rb
Created July 18, 2011 21:54
httpd.rb
#!/usr/bin/env ruby
require 'webrick'
port = 8080
port = ARGV.first.to_i unless ARGV.empty?
#document_root = ENV['HOME']
document_root = './'
server = WEBrick::HTTPServer.new({