I hereby claim:
- I am griff on github.
- I am nibsoar (https://keybase.io/nibsoar) on keybase.
- I have a public key ASCSvIuA2mbnQ-CpjqeUcK1uBsIvDJT0nH_cOmh8DpAMCQo
To claim this, I am signing this object:
{ config, lib, pkgs, ... }: | |
with lib; | |
let | |
cfg = config.services.mail-awstats; | |
package = pkgs.awstats; | |
domainsOpts = {name, config, ...}: { | |
options = { | |
domain = mkOption { |
I hereby claim:
To claim this, I am signing this object:
(ns om-tutorial.core | |
(:require [goog.dom :as gdom] | |
[om.next :as om :refer-macros [defui]] | |
[om.dom :as dom])) | |
(enable-console-print!) | |
(def init-data | |
{:list/one {:modal {:visible false} | |
:list [{:name "John" :points 0 :manager [:person/by-name "Jeff"] :employees []} |
struct EventKey { | |
event_id: u64 | |
} | |
impl ToMdbValue for EventKey { | |
fn to_mdb_value(&self) -> MdbValue { | |
let mut key : Vec<u8> = "events:".as_bytes().to_vec(); | |
let mut buf = [0; 8]; | |
BigEndian::write_u64(&mut buf, self.event_id); | |
for n in &buf { |
source 'https://rubygems.org/' | |
ruby '1.9.3', engine: 'jruby', engine_version: '1.7.19' | |
gem 'trinidad' | |
gem 'httparty' | |
gem 'sinatra' | |
gem 'jbundler' |
# Generates key-aa, key-ab, ... | |
gpg --export-secret-key $1 | paperkey --output-type raw | split -b 1500 - key- | |
# Convert each of them to a PNG image | |
for K in key-*; do | |
dmtxwrite -e 8 $K > $K.png | |
done | |
montage key-*.png -page A4 -tile 2x -geometry +5+5 master-secret-key.pdf |
INFO global: Vagrant version: 1.1.4 | |
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.1.4/plugins/commands/box/plugin.rb | |
INFO manager: Registered plugin: box command | |
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.1.4/plugins/commands/destroy/plugin.rb | |
INFO manager: Registered plugin: destroy command | |
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.1.4/plugins/commands/halt/plugin.rb | |
INFO manager: Registered plugin: halt command | |
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.1.4/plugins/commands/init/plugin.rb | |
INFO manager: Registered plugin: init command | |
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.1.4/plugins/commands/package/plugin.rb |
AsyncCopyTest.xcodeproj/*.mode1v3 | |
AsyncCopyTest.xcodeproj/*.pbxuser | |
AsyncCopyTest.xcodeproj/xcuserdata/* | |
AsyncCopyTest.xcodeproj/*/xcuserdata/* | |
build | |
require 'test/unit' | |
include Test::Unit::Assertions | |
EXPECTED = "\211PNG\r\n\032\n" | |
File.open('test.dmp', 'wb') do |f| | |
f.write(EXPECTED) | |
end | |
o = File.new('test.dmp', 'rb') | |
assert_equal EXPECTED, o.read(8), "not in binmode" # works |
class BugTest1 < Hash | |
# Any interface will do | |
include Java::JavaLang::Runnable | |
def run | |
puts "Hello from BugTest1" | |
end | |
end |