Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View gizmomogwai's full-sized avatar

Christian Köstlin gizmomogwai

View GitHub Profile
#!/bin/sh
repo forall -c 'if git status 2> /dev/null | grep -E "modified|deleted|Untracked|Changes"; then pwd; sleep 3;tig status; fi'
@gizmomogwai
gizmomogwai / clone_vmware_image.rb
Created May 3, 2013 15:13
Clone a stopped VMWare vm.
from = ARGV[0]
to = ARGV[1]
puts "copy from #{from} to #{to}"
def run(cmd)
puts "Executing #{cmd}"
if !system(cmd)
raise "error while executing #{cmd}"
end
end
@gizmomogwai
gizmomogwai / structs_vs_classes.d
Created September 26, 2011 18:13
calloverhead of methods of structs and classes
import std.datetime;
import std.stdio : writeln;
struct HStruct {
size_t c;
void add() {
c = c % 3 +1;
}
size_t get() {
@gizmomogwai
gizmomogwai / gist:1014032
Created June 8, 2011 08:27
measurement of progresslistener
require 'benchmark'
class ProgressListener
def initialize
s = Benchmark.bm do |x|
x.report('ProgressListener.initialize') do
@todo = 0.0
@needed_tasks = {}
Rake::application.top_level_tasks.each do |name|
tasks = find_tasks_for_toplevel_task(name)
tasks.each do |t|
@gizmomogwai
gizmomogwai / gist:987837
Created May 23, 2011 23:18
gs-core with os x
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<excludes>
<exclude>org/graphstream/stream/file/FileSinkSWF.java</exclude>
</excludes>
<compilerId>eclipse</compilerId>
</configuration>
@gizmomogwai
gizmomogwai / parser.d
Created December 10, 2010 16:50
a shot at combinator parsing for d
module pc.parser;
import std.stdio;
import std.array;
import std.ctype;
import std.string;
import std.conv;
import std.regex;
import std.variant;
import std.functional;