This allows you to use the following video streaming services outside of the US from your Mac without having to use a proxy or VPN, so no big bandwidth issues:
- Netflix
- Hulu / HuluPlus
- CBS
- ABC
- MTV
- theWB
- CW TV
- Crackle
[color] | |
diff = auto | |
status = auto | |
branch = auto | |
interactive = auto | |
[alias] | |
br = branch | |
st = status | |
ci = commit -m | |
ca = commit -a -m |
#!/usr/bin/env ruby | |
require 'date' | |
require 'mustache' | |
require 'stringex' | |
require 'cgi' | |
export = File.open(ARGV[0]) | |
target_dir = ARGV[1] |
" Select files to work on with :args | |
:args app/views/*/* | |
" Perform any action on the previous selected files | |
:argdo %s/search/replace/gec | update |
// The 'rb_define_global_function' can be found in class.c | |
/*! | |
* Defines a global function | |
* \param name name of the function | |
* \param func the method body | |
* \param argc the number of parameters, or -1 or -2. see \ref defmethod. | |
*/ | |
void | |
rb_define_global_function(const char *name, VALUE (*func)(ANYARGS), int argc) |
This allows you to use the following video streaming services outside of the US from your Mac without having to use a proxy or VPN, so no big bandwidth issues:
autocmd FileType ruby compiler ruby | |
function Run() | |
let executable=b:current_compiler | |
if !getbufvar("%", "&saved") | |
let tmpfile = tempname() | |
silent! exe "write " . tmpfile . ".rb" | |
endif |
Capistrano::Configuration.instance(:must_exist).load do | |
set :resque_local_start_port, 7070 | |
set :resque_remote_port, 8282 | |
def resque_local_ports | |
@resque_local_ports ||= Enumerator.new do |yielder| | |
current_port = fetch(:resque_local_start_port) | |
loop do | |
yielder.yield current_port | |
current_port += 1 |
# Verdienstziele und weitere Parameter | |
# =============================================================================================== | |
Jahr=2012 | |
# Gewerbesteuer berücksichtigen, "ja" oder "nein"? | |
GewerbesteuerEinrechnen = "nein" | |
# Jeweilige Jahresziele sollten in 10 Monaten erreicht werden | |
# ...wegen Weiterbildungen, Urlaub, Krankheit, Open Source Contribution | |
# MaxStd entspricht dabei dann 100% Auslastung |
class Gateway | |
attr_reader :connection | |
def initialize(connection = Application.config.default_connection) | |
@connection = connection | |
end | |
def get(params) | |
request(:get, params) | |
end |
This is my color scheme definition to be used with @chriskempson base16 builder. It is based on the original base16 color set with some pink modifications. I use the resulting 256 colors variant.