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
SYSDIG_SRC?=$(HOME)/work/dev/sysdig/ | |
KERNEL_SRC?=/usr/src/linux | |
KERNEL_CONFIG?=/usr/src/linux/.config | |
CONFIG_MODULE_SIG_KEY?=$(shell sed -r '/CONFIG_MODULE_SIG_KEY/ !d;s/.*="(.*)"/\1/' $(KERNEL_CONFIG)) | |
CONFIG_MODULE_SIG_HASH=$(shell sed -r '/CONFIG_MODULE_SIG_HASH/ !d;s/.*="(.*)"/\1/' $(KERNEL_CONFIG)) | |
.PHONY: sign-sysdig | |
sign-sysdig: | |
sed 's/@PROBE_NAME@/sysdig-probe/;s/@KBUILD_FLAGS@//' $(SYSDIG_SRC)/driver/Makefile.in > $(SYSDIG_SRC)/driver/Makefile |
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
### Keybase proof | |
I hereby claim: | |
* I am baloo on github. | |
* I am baloo (https://keybase.io/baloo) on keybase. | |
* I have a public key whose fingerprint is A97A 15F5 F4E0 6FEE 03D8 47C2 204C 197F 8552 2F3F | |
To claim this, I am signing this object: |
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
<link rel="import" href="../topeka-elements/category-images.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-icons/av-icons.html"> | |
<link rel="import" href="../paper-fab/paper-fab.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> |
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
"Get back a mongodb operator from a lens" in { | |
val lens = JsLens.init \ "author" \ "firstname" | |
Json.stringify(mongo.prune(lens)) must equalTo("""{"$unset":{"author.firstname":1}}""") | |
} |
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 | |
LDNS_SIGNZONE="ldns-signzone" | |
errx() { | |
echo "$1" >&2 | |
exit 1 | |
} | |
parse_opts() { |