I hereby claim:
- I am morungos on github.
- I am morungos (https://keybase.io/morungos) on keybase.
- I have a public key ASCd1oTZKTv3xw9lQKbNRRAD7l40-Z_S-1hawBYo4Tk_wgo
To claim this, I am signing this object:
#!/usr/bin/perl -w | |
use strict; | |
use Carp; | |
use DBI; | |
use File::Spec; | |
use File::Path qw(make_path); | |
use Getopt::Long; | |
my ($verbose, $username, $password, $hostname, $tabs); |
#!/usr/bin/perl -w | |
=data | |
db.data.drop(); | |
db.data.insert({_id: "Food"}); | |
db.data.insert({_id: "Fruit", parent: "Food"}); | |
db.data.insert({_id: "Red", parent: "Fruit"}); | |
db.data.insert({_id: "Cherry", parent: "Red"}); | |
db.data.insert({_id: "Yellow", parent: "Fruit"}); | |
db.data.insert({_id: "Banana", parent: "Yellow"}); |
var express = require('express'); | |
var app = module.exports.app = express(); | |
function logErrors(err, req, res, next) { | |
console.error(err.stack); | |
next(err); | |
} | |
function clientErrorHandler(err, req, res, next) { |
#!/usr/bin/env perl -w | |
use strict; | |
use warnings; | |
# Basic script to convert DCC output for SNPs to a VCF file capable of being | |
# used for later analysis. More complex variants won't yet work, due to the need | |
# for reference genome information which we don't get from the DCC output yet. | |
# | |
# Written to use minimal Perl dependencies. |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" | |
"http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>org.mongodb.mongod</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/local/mongodb/bin/mongod</string> |
find . -name '*.xml.gz' -print0 | sort -z | xargs -r0 -I "{}" -P 4 sh -c "gzip -d -c {} | grep --label={} -H 1229467" |
--- WordNet-3.0/src/stubs.c 2007-01-04 12:47:55.000000000 -0500 | |
+++ WordNet-3.0.1/src/stubs.c 2014-05-15 15:05:32.000000000 -0400 | |
@@ -40,8 +40,7 @@ int wn_findvalidsearches (ClientData cli | |
char *morph; | |
int pos; | |
if (argc != 3) { | |
- interp -> result = | |
- "usage: findvalidsearches searchword partofspeechnum"; | |
+ Tcl_SetResult(interp, "usage: findvalidsearches searchword partofspeechnum", TCL_DYNAMIC); | |
return TCL_ERROR; |
I hereby claim:
To claim this, I am signing this object:
--- | |
- name: "Local action: Mark the deployment" | |
local_action: shell echo '|' `git log -n1 | grep -E "^commit"` '|' {{inventory_hostname}} '|' `date` '|' `whoami` '|' >> deploy.md | |
run_once: yes |
license: gpl-3.0 |