I hereby claim:
- I am k9ert on github.
- I am k9ert (https://keybase.io/k9ert) on keybase.
- I have a public key whose fingerprint is 2C1E 6526 9F3D 11C8 2907 F647 EBE0 90A9 5354 FBCB
To claim this, I am signing this object:
curl -u user:password -s https://soemartifactory.com/api/storage/repo-id/com/company/someotherpath/theartifact | jq .children | jq 'map(.uri)' | sort | tail -2 | head -1 | sed 's/^ *"\///' | sed 's/",$//' |
#!/bin/bash | |
PORT=2003 | |
SERVER=graphite.yourcompany.com | |
yesterday=`date --date="yesterday" +%Y-%m-%d` | |
counter=`less /some/log/file/program-${yesterday}.log | grep "An errormessage" | wc -l` | |
#echo "echoing $counter" |
kim@kopti:~/tmp$ cat ba-21-01-2015.txt | grep -v ben_vulpes | grep -v asciilifeform | grep -v lobbes | grep -v "^$" | gpg --clearsign | |
-----BEGIN PGP SIGNED MESSAGE----- | |
Hash: SHA1 | |
18:00:01 gavinandresen: howdy y'all | |
18:00:54 kakobrekla: hi | |
18:01:28 felipelalli: hi! | |
18:02:11 gavinandresen: I came here so you can tell me how I’m going to ruin bitcoin (again…) | |
18:03:06 davout: gavinandresen: hello |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env ruby | |
require 'pp' | |
require 'uri' | |
require 'net/http' | |
require 'octokit' | |
require 'nokogiri' | |
require 'celluloid' | |
require 'mongo' | |
require 'logger' |
if (grailsApplication.config.zenboot.processing.workerThreads.respondsTo("toInteger") && | |
grailsApplication.config.zenboot.processing.workerThreads.toInteger() > 0) { | |
// do something here | |
} |
APT::Get::AllowUnauthenticated true; | |
APT::Install-Recommends false; | |
APT::Get::AutomaticRemove true; | |
#APT::Cache-Limit 31457280; | |
DPkg::Options {"--force-confold";}; |
#!/bin/bash | |
vagrant destroy -f | |
timeout 3600 vagrant up | |
VAGRANT_RESULT=$? | |
echo "===============================================================" | |
if [ $VAGRANT_RESULT -eq 124 ]; then | |
echo "vagrant up timed out: 3600 seconds" | |
else | |
echo "Vagrant exited with code: $VAGRANT_RESULT" |
// https://wiki.jenkins-ci.org/display/JENKINS/Email-ext+plugin | |
// An example for a Pre-send Script | |
// Assume output log-output like: | |
// ERROR: [email protected] please fix | |
import javax.mail.internet.* | |
logger.print("This ends up in the log as well"); | |
String encodingOptions = "text/html; charset=UTF-8;"; | |
// msg.setContent("please check!!!!", encodingOptions); |
#!/usr/bin/perl | |
my @grabbed; | |
while (<STDIN>) { | |
if (/$ARGV[0]/) { | |
print $_; | |
while (<STDIN>) { | |
last if /^$/; | |
print $_; | |
} | |
} |