I hereby claim:
- I am paperdigits on github.
- I am paperdigits (https://keybase.io/paperdigits) on keybase.
- I have a public key whose fingerprint is A527 911E BA29 099F A5BD 8F16 4139 15A0 E8BA 6862
To claim this, I am signing this object:
| # This can be built with nixos-rebuild --flake .#myhost build | |
| { | |
| description = "the simplest flake for nixos-rebuild"; | |
| inputs = { | |
| nixpkgs = { | |
| # Using the nixos-unstable branch specifically, which is the | |
| # closest you can get to following the equivalent channel with flakes. | |
| url = "github:NixOS/nixpkgs/nixos-unstable"; | |
| }; |
I hereby claim:
To claim this, I am signing this object:
| add-xml-decl: true | |
| drop-empty-paras: false | |
| fix-backslash: false | |
| fix-bad-comments: false | |
| fix-uri: false | |
| input-xml: true | |
| join-styles: false | |
| literal-attributes: true | |
| lower-literals: false | |
| output-xml: true |
| /* Good(?) typography */ | |
| /* Widows and oraphans for paragraphs */ | |
| p { | |
| widows: 3; | |
| orphans: 3; | |
| } | |
| /* Avoid page breaks directly after headers */ | |
| h1, h2, h3, h4, h5, h6 { |
| # nix-shell -p bundler bundix | |
| # bundler lock && bundler package --path vendor/cache --no-install && bundix && exit | |
| # nix-shell | |
| with (import <nixpkgs> {}); | |
| let | |
| env = bundlerEnv { | |
| name = "test-package"; | |
| inherit ruby; | |
| gemfile = ./Gemfile; | |
| lockfile = ./Gemfile.lock; |
| digraph { | |
| node[shape="box"] | |
| // splines=line; | |
| // subgraph import_tools { | |
| // label="Import tools"; | |
| // file_manager_copy; | |
| // rapid_photo_downloader; | |
| // digikam; | |
| // shotwell; | |
| // filmulator |
| ssh gitolite@host info | tail -n +3 | awk '{print $3;}' |
| # Utilities to convert text & documents | |
| wdiff - word by word diff program | |
| unrtf - convert rtf to other formats | |
| textutil - OS X only so far as I can tell | |
| pandoc - flexible markdown converter | |
| unoconv - open/libre office command-line document converter | |
| docsplit - split documents, extract images, OCR |
| git rev-list HEAD --count |
| FILENAME:emacs auctex PDFlatex default.txt | |
| %Used to set auctex in emacs to PDF mode by default. | |
| use: | |
| M-x customize-variable RET TeX-PDF-mode RET | |
| then set the value to "non-nil" | |