Skip to content

Instantly share code, notes, and snippets.

View sveneisenschmidt's full-sized avatar
🚀

Sven Eisenschmidt sveneisenschmidt

🚀
View GitHub Profile
@dbu
dbu / Vagrantfile
Created November 13, 2012 09:26
vagrant setup
# -*- mode: ruby -*-
# vi: set ft=ruby :
this_dir = File.dirname(__FILE__) + "/"
require this_dir + "vagrant/hostmaster.rb"
Vagrant::Config.run do |config|
# define some colors for our output
def colorize(text, color_code) "#{color_code}#{text}\033[0m" end
<?php
class Foo {
public $bar;
function __construct($bar)
{
$this->bar = $bar;
}
}