I hereby claim:
- I am zarelit on github.
- I am zarelit (https://keybase.io/zarelit) on keybase.
- I have a public key whose fingerprint is 416B FA1B D107 1E3C 49BF 5E9A 8C02 E514 694A E632
To claim this, I am signing this object:
-- takes a PGM file and outputs an ASCII list of triplets (coordinates) | |
-- in order to import a kinect depth map in meshlab as a point cloud | |
import Data.Char(toLower) | |
main = interact pgm2triplets | |
pgm2triplets :: String -> String | |
pgm2triplets whole = unlines $ map showTriplet noHoles | |
where tokens=words whole | |
height=read$tokens!!2 :: Int |
#!/usr/bin/env ruby | |
hits = [] | |
checks = { | |
#'_spec\.rb$' => ['focus:[:space:]*true'], | |
'\.(rb|erb)$' => ['binding\.pry', 'debugger', 'byebug'] | |
} | |
# Find the names of all the filenames that have been (A)dded (C)opied or (M)odified | |
filenames = `git diff --cached --name-only --diff-filter=ACM`.split("\n") |
[annex]$ cat git-trace.log | |
12:49:27.838912 git.c:564 trace: exec: 'git-annex' 'webapp' | |
12:49:27.839054 run-command.c:336 trace: run_command: 'git-annex' 'webapp' | |
12:49:28.242593 git.c:351 trace: built-in: git 'config' '--null' '--list' | |
12:49:28.682977 git.c:351 trace: built-in: git 'show-ref' 'git-annex' | |
12:49:28.873175 git.c:351 trace: built-in: git 'show-ref' '--hash' 'refs/heads/git-annex' | |
12:49:28.911249 git.c:351 trace: built-in: git 'log' 'refs/heads/git-annex..e936fbcafa9895c8f1b5c9ca5b1afa9896f8a91b' '--pretty=%H' '-n1' | |
12:49:31.025794 git.c:351 trace: built-in: git 'cat-file' '--batch' | |
12:49:31.193102 git.c:351 trace: built-in: git 'show-ref' 'git-annex' | |
12:49:31.194723 git.c:351 trace: built-in: git 'show-ref' '--hash' 'refs/heads/git-annex' |
{ config, pkgs, lib, ... }: | |
{ | |
# Other host options | |
## Containers | |
# Containers are bridged with the physical LAN adapter | |
networking.bridges.br0.interfaces = ["eth0"]; | |
# Example with gogs (VM name: projects) | |
containers.projects = { |
diff --git a/nixops/backends/__init__.py b/nixops/backends/__init__.py | |
index 86ed0f4..c52e9d3 100644 | |
--- a/nixops/backends/__init__.py | |
+++ b/nixops/backends/__init__.py | |
@@ -93,6 +93,17 @@ class MachineState(nixops.resources.ResourceState): | |
except nixops.ssh_util.SSHCommandFailed: | |
return None | |
+ def get_os_arch(self): | |
+ """Get the machine's OS archicture.""" |
#!/usr/bin/env python | |
# | |
# Adds the ability to add / modify tasks using a "blocks:" attribute, | |
# the opposite of "depends:". | |
# | |
# This script acts as an on-modify, on-add and on-launch hook at the same time. | |
# | |
### SETUP | |
# Save this file as | |
# ~/.task/hooks/on-modify.blocks_attr.py |
I hereby claim:
To claim this, I am signing this object:
cribbed from http://pastebin.com/xgzeAmBn
Templates to remind you of the options and formatting for the different types of objects you might want to document using YARD.
require 'webrick' | |
require 'fileutils' | |
if ARGV.length != 0 | |
root = ARGV.first.gsub('\\', '/') | |
else | |
root = '.' | |
end | |
BACKUP_DIR = 'bak' |
# Full NixOS configuration for a ZFS server with full disk encryption hosted on Hetzner. | |
# See <https://mazzo.li/posts/hetzner-zfs.html> for more information. | |
{ config, pkgs, ... }: | |
let | |
# Deployment-specific parameters -- you need to fill these in where the ... are | |
hostName = "..."; | |
publicKey = "..."; | |
# From `ls -lh /dev/disk/by-id` |