View parser.d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
View gist:987837
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
View gist:1014032
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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| |
View structs_vs_classes.d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import std.datetime; | |
import std.stdio : writeln; | |
struct HStruct { | |
size_t c; | |
void add() { | |
c = c % 3 +1; | |
} | |
size_t get() { |
View clone_vmware_image.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
View repo-tig.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
repo forall -c 'if git status 2> /dev/null | grep -E "modified|deleted|Untracked|Changes"; then pwd; sleep 3;tig status; fi' |
View rt.fish
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function rt -d "select one rake task" | |
if rake -T | fzf > $TMPDIR/fzf.result | |
set fzf_result (cat $TMPDIR/fzf.result | cut -d ' ' -f 2) | |
set h "rake $fzf_result" | |
commandline $h | |
end | |
end |
View rt.bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function rt() { | |
local task | |
task=$(rake -T | fzf | cut -d ' ' -f 2) | |
rake $task | |
} |
View cloud-config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
ssh_authorized_keys: | |
- ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAs5zpVBQD4paP5RVkb6LGsjGjQXANP0S7SUxXkTY4+3Muov651wzcX/VmDHBQFLSmT92PdqSXL2+8HiAvlPxaHohZIsIu7JEOO5yvAeb/y/rw5Gp1ggVieVojLLbhhnZ5ECTR4Wj7/TvQI7IaL0WH8KHzo8Q+nBz1ZzLkIDTjGAfcgwxZ32ieGAea5rDjFouxmIZTisMIdroAZT0M/QvM1GgbXmHaairYLsJJDE1CUI5GjHGLFbCE10qRlXqHMyw6GKkoXiV4LzvnIcQ1J0l7GIWq6vnvy2NWkMBckA/DLnL123Z95676KwIHlzDw11LPzXv1ncwf5lOOWRuLa+OWcw== gizmo@armadillo |
View up.fish
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function up -d "lastpass user and password" | |
if lpass ls | fzf > /tmp/fzf.result | |
cat /tmp/fzf.result | |
set account_name (cat /tmp/fzf.result | cut -f 1 -d ' ') | |
lpass show --username $account_name | pbcopy | |
read -p 'echo username stored in clipboard ... press return to continue' | |
lpass show --password $account_name | pbcopy | |
read -p 'echo password stored in clipboard ... press return to continue' | |
end | |
end |
OlderNewer