I hereby claim:
- I am corpix on github.
- I am corpix (https://keybase.io/corpix) on keybase.
- I have a public key whose fingerprint is BE24 A859 6D62 D58B 60A2 EEBF 50BE EC20 48B4 DB04
To claim this, I am signing this object:
| /* | |
| $ nix-instantiate --eval --expr 'with (import <nixpkgs> {}); with lib; builtins.toJSON ((import ./ip6.nix { lib = pkgs.lib; }).expandIP6 "ea5f::")' | jq -r . | jq . | |
| "ea5f:0000:0000:0000:0000:0000:0000:0000" | |
| $ nix-instantiate --eval --expr 'with (import <nixpkgs> {}); with lib; builtins.toJSON ((import ./ip6.nix { lib = pkgs.lib; }).expandIP6 "::ea5f")' | jq -r . | jq . | |
| "0000:0000:0000:0000:0000:0000:0000:ea5f" | |
| $ nix-instantiate --eval --expr 'with (import <nixpkgs> {}); with lib; builtins.toJSON ((import ./ip6.nix { lib = pkgs.lib; }).expandIP6 "ea5f::ff")' | jq -r . | jq . | |
| "ea5f:0000:0000:0000:0000:0000:0000:00ff" | |
| */ |
| Jan 21 21:18:09: ----- cjdns memory snapshot ----- | |
| Jan 21 21:18:09: Core.c:338 [157264] bytes | |
| Jan 21 21:18:09: ASynchronizer.c:102 [480] bytes | |
| Jan 21 21:18:09: | UDPAddrIface.c:199 [13000] bytes | |
| Jan 21 21:18:09: | | ASynchronizer.c:104 [64] bytes at [0x55b2f716daf0] | |
| Jan 21 21:18:09: | | ASynchronizer.c:104 [64] bytes at [0x55b2f716daa0] | |
| Jan 21 21:18:09: | | Message.h:86 [88] bytes at [0x55b2f716da40] | |
| Jan 21 21:18:09: | | Message.h:75 [4088] bytes at [0x55b2f716ca40] | |
| Jan 21 21:18:09: | | ASynchronizer.c:104 [64] bytes at [0x55b2f716c9f0] | |
| Jan 21 21:18:09: | | ASynchronizer.c:104 [64] bytes at [0x55b2f716c9a0] |
| diff --git a/aclocal.m4 b/aclocal.m4 | |
| index 002c472..d1c7555 100644 | |
| --- a/aclocal.m4 | |
| +++ b/aclocal.m4 | |
| @@ -1,6 +1,6 @@ | |
| -# generated automatically by aclocal 1.15.1 -*- Autoconf -*- | |
| +# generated automatically by aclocal 1.15 -*- Autoconf -*- | |
| -# Copyright (C) 1996-2017 Free Software Foundation, Inc. | |
| +# Copyright (C) 1996-2014 Free Software Foundation, Inc. |
| let | |
| internalInterfaces = { | |
| enp3s0 = { | |
| ip4 = [ | |
| { | |
| address = "10.0.10.1"; | |
| prefixLength = 24; | |
| } | |
| ]; | |
| ip6 = []; |
| commit 8b6907e3f4de964194bb6069b7053d0e62fe51f3 | |
| Author: Dmitry Moskowski <me@corpix.ru> | |
| Date: Sun Dec 10 01:33:47 2017 +0000 | |
| Fighting with hakyll to implement a stupid menu | |
| diff --git a/frontend.cabal b/frontend.cabal | |
| index c1bb41f..500ccfa 100644 | |
| --- a/frontend.cabal | |
| +++ b/frontend.cabal |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| // XXX: Here will be a bunch of shitcoded solutions :) | |
| import ( | |
| "crypto/sha1" | |
| "encoding/base64" | |
| "encoding/hex" | |
| "fmt" | |
| "io" |
| #!/usr/bin/env python3 | |
| import argparse | |
| import json | |
| import os | |
| from os import path | |
| def get_file_content(path): | |
| with open(path, "r") as file: | |
| return file.read() |
| #!/usr/bin/env bash | |
| set -e | |
| set -x | |
| mkdir recovery | |
| cd recovery | |
| # Iterate installed packages (pkgname=pkgversion) | |
| for pkgfullname in `dpkg -l | grep '^ii' | awk '{print $2"="$3}'`; do | |
| # Get package name without version |
| { | |
| leaf=$$ | |
| ps -eo pid,ppid,command | awk -v leaf="$leaf" \ | |
| '{parent[$1]=$2;command[$1]=$3;} | |
| function print_ancestry(pid) | |
| { | |
| print pid " (" command[pid] ") child of " parent[pid]; | |
| if(pid!=1) print_ancestry(parent[pid]) | |
| }; | |
| END{\ |