Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | |
2020-01-22 | r/448 feat(lisp/dns): Check in very early DNS-over-HTTPS client | Vincent Ambo | 3 | -0/+45 | |
This includes very barebones support for querying TXT and MX records right now. The returned structure is not turned into a more convenient format and error handling is, well, NIL. | |||||
2020-01-22 | r/447 feat(emacs.d): Add key binding for counsel-notmuch | Vincent Ambo | 1 | -1/+3 | |
2020-01-22 | r/446 fix(fun/gemma): Give Hunchentoot the trailing slash it desires | Vincent Ambo | 1 | -1/+1 | |
2020-01-22 | r/445 refactor(fun/gemma): Make acceptor available in a variable | Vincent Ambo | 1 | -4/+7 | |
This makes it possible to *stop* the server again in a REPL, which is useful :) | |||||
2020-01-22 | r/444 fix(third_party/lisp/bordeaux-threads): Use native condvars on SBCL | Vincent Ambo | 1 | -1/+0 | |
This underlines that I should probably have a thing that imports these automatically. | |||||
2020-01-22 | r/443 fix(fun/gemma): Fix minor typo in frontend injection | Vincent Ambo | 1 | -1/+1 | |
2020-01-22 | r/442 chore(builds): Enable Gemma build in CI | Vincent Ambo | 1 | -0/+1 | |
2020-01-22 | r/441 chore(overrides): Remove lispPackages overrides | Vincent Ambo | 6 | -114/+0 | |
No longer required since Gemma now uses buildLisp.nix | |||||
2020-01-22 | r/440 refactor(fun/gemma): Use buildLisp.nix to build Gemma | Vincent Ambo | 5 | -91/+40 | |
This removes the ASDF system definition for Gemma and switches the code over to buildLisp. The program builds (including some terrifying hacks to get the frontend to work), but there are some bizarre runtime issues that I need to debug. | |||||
2020-01-22 | r/439 feat(third_party/lisp): Check in dependencies of gemma | Vincent Ambo | 4 | -0/+89 | |
2020-01-22 | r/438 feat(third_party/lisp/s-xml): Check in sources & derivation | Vincent Ambo | 23 | -0/+2389 | |
Checked in the sources for this because it is tracked upstream in CVS and I can't be bothered to deal with that right now. | |||||
2020-01-22 | r/437 feat(third_party/lisp): Add derivations for hunchentoot & deps | Vincent Ambo | 5 | -0/+131 | |
2020-01-21 | r/436 feat(third_party/lisp): Check in drakma HTTP client & deps | Vincent Ambo | 8 | -0/+188 | |
This HTTP client has much fewer dependencies than some of the other ones I've seen, and it'll be good enough for my demo purposes. | |||||
2020-01-20 | r/435 feat(ops/nixos/nugget): Enable Keybase "service" | Vincent Ambo | 1 | -0/+2 | |
2020-01-20 | r/434 feat(ops/mq_cli): Bump dependencies & add derivation | Vincent Ambo | 5 | -125/+64 | |
2020-01-20 | r/433 feat(ops/posix_mq.rs): Set up Nix build | Vincent Ambo | 4 | -1/+58 | |
2020-01-20 | r/432 chore(ops): Remove deprecated .travis.yml files | Vincent Ambo | 2 | -6/+0 | |
2020-01-20 | r/431 chore(ops/posix_mq.rs): Update crate dependencies to recent versions | Vincent Ambo | 5 | -26/+18 | |
First bump since 2017! This changes the code to be compatible with newer versions of the `nix` crate, which has shuffled things around a bit. | |||||
2020-01-20 | r/430 Add 'ops/mq_cli/' from commit 'df29b08bffc90cfd4f2d963a8e48d89f7a86308d' | Vincent Ambo | 8 | -0/+537 | |
git-subtree-dir: ops/mq_cli git-subtree-mainline: b59c7e693c21cf76619ad89ae008d92ebbb92dad git-subtree-split: df29b08bffc90cfd4f2d963a8e48d89f7a86308d |