Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-02-08 | r/489 feat(web/homepage): Add static assets for new homepage | Vincent Ambo | 5 | -0/+88 | |
Adds the Jetbrains Mono font and the WIP CSS file for the homepage and (soon) the blog. | |||||
2020-02-08 | r/488 feat(web/homepage): Add Nix code to assemble the index page | Vincent Ambo | 4 | -1/+86 | |
This is not yet fully functional, but going in the right direction. Some concepts are introduced: * There is a light theme (used for blog entry pages) and a dark theme (used for the homepage itself) * Entries can be either blog posts, projects or miscellaneous things that I want to link people to (possibly with a comment) It might be interesting to add pages that filter to specific types, or some such, which should be relatively easy to do. Note that the layouts of entries are not actually done yet. | |||||
2020-02-08 | r/487 refactor(web): Move nginx setup to //web/homepage | Vincent Ambo | 3 | -19/+41 | |
The homepage is going to be the landing page for all content, whether it be blog posts or other stuff. | |||||
2020-02-08 | r/486 refactor(web/blog): Use timestamps for dates instead of strings | Vincent Ambo | 3 | -10/+13 | |
This lets me easily create an ordered list of entries if the homepage is designed to list both blog posts and other content. | |||||
2020-02-08 | r/485 feat(web/blog): Check in blog posts that I want to keep | Vincent Ambo | 6 | -0/+564 | |
2020-02-08 | r/484 feat(web/blog): Add Nix-based static blog generator | Vincent Ambo | 6 | -0/+232 | |
This introduces a derivation which builds an instance of nginx statically serving my blog posts, though as of now no indexes are being generated and no XML feed is available. This is just the initial draft of this setup and not yet what shall be yielded in the end. | |||||
2020-02-08 | r/483 feat(ops/nixos/nugget): Install i3lock | Vincent Ambo | 1 | -0/+1 | |
2020-02-08 | r/482 chore(third_party): Expose pandoc | Vincent Ambo | 1 | -0/+1 | |
2020-02-07 | r/481 docs(nix/yants): Fix screenshot URLs | Vincent Ambo | 1 | -5/+5 | |
The URLs served on the /about page are relative to the path's dirname, which is tree/nix not tree/nix/yants. | |||||
2020-02-07 | r/480 chore: Exclude //third_party from ripgrep searches | Vincent Ambo | 1 | -0/+1 | |
2020-02-07 | r/479 feat(tools/emacs): Bump EXWM to recent master | Vincent Ambo | 1 | -1/+14 | |
This version of EXWM fixes some issues with binding keys in EXWM as well as other minor annoyances. | |||||
2020-02-07 | r/478 feat(ops/nixos/nugget): Enable pcscd & install Yubikey tools | Vincent Ambo | 1 | -0/+8 | |
2020-02-05 | r/477 feat(tools/emacs): Install ace-link | Vincent Ambo | 1 | -0/+1 | |
It now has vterm-mode support, which has finally convinced me to try it. | |||||
2020-02-04 | r/476 feat(ops/nixos/nugget): Enable U2F hardware support | Vincent Ambo | 1 | -0/+1 | |
2020-01-29 | r/475 refactor(fun/wcl): Use portable unix-opts library | Vincent Ambo | 2 | -1/+2 | |
unix-opts, imported into buildLisp.nix in the previous commit, provides an implementation independent way of parsing command line arguments. | |||||
2020-01-29 | r/474 feat(third_party/lisp): Add derivation for unix-opts | Vincent Ambo | 1 | -0/+17 | |
2020-01-29 | r/473 fix(nix/buildLisp): Ensure SBCL uses UTF-8 encoding | Vincent Ambo | 1 | -0/+1 | |
2020-01-29 | r/472 fix(fun/wcl): Use 'eql' for byte comparisons | Vincent Ambo | 1 | -4/+4 | |
The fact that this works is just an implementation-specific detail. In theory, 'eq' will only compare object instance equality and not value. Thanks to /u/patrec from HN for pointing this out. | |||||
2020-01-29 | r/471 docs(nix/buildLisp): Update the README with actual docs | Vincent Ambo | 2 | -12/+87 | |
2020-01-28 | r/470 fix(fun/wcl): Count words correctly if file starts with whitespace | Vincent Ambo | 1 | -2/+3 | |
2020-01-28 | r/469 feat(fun/wcl): Add a simple 'wc' clone in Lisp | Vincent Ambo | 2 | -0/+46 | |
Prompted by this thread: https://lobste.rs/s/zntyeq/wc_d_712_characters_without_single_branch | |||||
2020-01-27 | r/468 feat(web/tazblog_lisp): Implement retrieval of blog posts from DNS | Vincent Ambo | 2 | -0/+100 | |
This is mostly equivalent to the Haskell implementation, with the primary difference that the Lisp DNS library does not support caching yet. | |||||
2020-01-27 | r/467 fix(emacs-pkgs/nix-util): Don't leave sly build out-links around | Vincent Ambo | 1 | -1/+1 | |
2020-01-27 | r/466 refactor(lisp/dns): Return dns-answer from query functions | Vincent Ambo | 2 | -2/+10 | |
2020-01-27 | r/465 docs(lisp/dns): Add initial README file | Vincent Ambo | 1 | -0/+75 | |
2020-01-27 | r/464 feat(lisp/dns): Support CNAME & NS record RDATAs | Vincent Ambo | 2 | -378/+64 | |
2020-01-27 | r/463 refactor(lisp/dns): Refactor structure of lookup-generic calls | Vincent Ambo | 1 | -9/+12 | |
2020-01-26 | r/462 refactor(third_party/lisp): Use buildLisp.bundled for built-in libs | Vincent Ambo | 14 | -74/+36 | |
Deprecates derivations for: * sb-bsd-sockets * sb-posix * sb-rotate-byte * uiop | |||||
2020-01-26 | r/461 feat(nix/buildLisp): Add 'bundled' function for built-in libraries | Vincent Ambo | 1 | -0/+8 | |
Makes it possible to add virtual dependencies on built-in libraries, e.g. `buildLisp.bundled "sb-posix"`. | |||||
2020-01-26 | r/460 chore(lisp/dns): Remove unused dependencies | Vincent Ambo | 1 | -2/+0 | |
2020-01-26 | r/459 Merge branch 'feat/dns-lisp' | Vincent Ambo | 5 | -31/+812 | |
2020-01-26 | feat(lisp/dns): Export struct fields | Vincent Ambo | 1 | -3/+3 | |
2020-01-26 | feat(lisp/dns): Introduce enum for DNS types & decode RDATA | Vincent Ambo | 1 | -2/+21 | |
Adds some of the most common DNS types in the enum (others TBD), and starts decoding RDATA for TXT and A. | |||||
2020-01-26 | chore(lisp/dns): Add 'message.lisp' to build instructions | Vincent Ambo | 1 | -0/+1 | |
2020-01-26 | feat(lisp/dns): Use new DNS deserialiser in dns:lookup-generic | Vincent Ambo | 1 | -152/+52 | |
This enables arbitrary DNS lookups (with the caveat that RRDATAs are currently not deserialised into a record-type-specific format). An error condition has been defined for error-responses from the HTTP server which provides interactive restarts for attempting a new call with different parameters. | |||||
2020-01-26 | r/458 feat(emacs.d): Add interactive 'scrot-select' screenshot function | Vincent Ambo | 1 | -0/+6 | |
2020-01-26 | feat(lisp/dns): Implement qname compression parsing | Vincent Ambo | 1 | -270/+29 | |
Implements support for the compresion scheme used in binary DNS messages. This makes it possible to decode messages entirely, but not yet actually resolve the labels to their "real" values. All qnames are stored with file-offsets pointing at the position at which their reading started, which enables the implementation of a function to resolve pointers internally. | |||||
2020-01-26 | refactor(lisp/dns): Introduce structured QNAME representation | Vincent Ambo | 1 | -31/+51 | |
Adds a struct that represents QNAMEs, tracks the stream offset at which the QNAME parsing began and makes it possible to resolve pointers inside of the QNAME. Note that resolving pointers needs to happen *after* the call to lisp-binary currently. It might be possible to implement this inside of lisp-binary in the future by switching on the top two bits of the qname field, but since this is happening *inside* of a reader function I'm not currently sure how to implement it. | |||||
2020-01-26 | feat(lisp/dns): Check in initial DNS message implementation | Vincent Ambo | 1 | -0/+931 | |
This uses lisp-binary to define serialisation types for the DNS messages defined by RFC 1035. Currently the compression scheme used for QNAMEs is not supported, hence deserialisation of even simple records fails after the header and question sections are read. | |||||
2020-01-26 | refactor(lisp/dns): Split package into multiple files | Vincent Ambo | 4 | -31/+182 | |
Adds a package definition file and moves the current client into client.lisp Note that the client is not working at all at this commit as this is a work-in-progress snapshot. | |||||
2020-01-26 | r/457 feat(fun): Add copy of my avatar | Vincent Ambo | 1 | -0/+0 | |
Handy to keep this around somewhere! Thanks Kitty <3 | |||||
2020-01-25 | r/456 feat(ops/nixos/nugget): Install unzip | Vincent Ambo | 1 | -0/+1 | |
2020-01-24 | r/455 chore(buildLisp): use lib.optionalString where applicable | edef | 1 | -4/+1 | |
2020-01-24 | r/454 chore(buildGo): use lib.optionalString where applicable | edef | 1 | -1/+1 | |
2020-01-24 | r/453 feat(emacs.d): Add notmuch-depot-apply-patch helper function | Vincent Ambo | 1 | -0/+21 | |
This function lets me interactively apply a patch from the currently opened notmuch message to the depot. | |||||
2020-01-22 | r/452 feat(third_party/lisp): Add 'lisp-binary' package and dependencies | Vincent Ambo | 3 | -0/+64 | |
2020-01-22 | r/451 feat(third_party/lisp): Add 'iterate' and 'quasiquote-2.0' packages | Vincent Ambo | 3 | -3/+35 | |
2020-01-22 | r/450 Merge commit '47f60d0996ed57d3a3c00b25ddbd8fea04096f90' as ↵ | Vincent Ambo | 8 | -0/+895 | |
'third_party/lisp/quasiquote_2' | |||||
2020-01-22 | Squashed 'third_party/lisp/quasiquote_2/' content from commit cac90875d1 | Vincent Ambo | 8 | -0/+895 | |
git-subtree-dir: third_party/lisp/quasiquote_2 git-subtree-split: cac90875d1f66e9385e559bfebafe6b7808b0930 | |||||
2020-01-22 | r/449 chore(build): Build Lisp DNS library in CI | Vincent Ambo | 1 | -0/+1 | |