-
jell, jointly, joust, juicer
- vendoring or compiling a single artifact
-
jog, jolt, jump, jaunt
- lookup tool
-
enjoin (janet-please)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (import ./lib/location :as l) | |
| (import ./lib/jipper :as j) | |
| (comment | |
| (def an-import | |
| "(import ./analyze :as a)") | |
| (def a-def | |
| "(def a 1)") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (import ./lib/location :as l) | |
| (import ./lib/jipper :as j) | |
| (comment | |
| (def src | |
| (string "(import ./analyze :as a)\n" | |
| "\n" | |
| "(defn main\n" | |
| " [& args]\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (import ./lib/location :as l) | |
| (import ./lib/jipper :as j) | |
| (comment | |
| (def src | |
| (string "(import ./analyze :as a)\n" | |
| "\n" | |
| "(defn main\n" | |
| " [& args]\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # XXX: draft | |
| # user-specific tree-sitter installation is doable via use of PREFIX | |
| # assuming so... | |
| cd ~/src | |
| git clone https://github.com/emacs-mirror/emacs emacs-30.2 | |
| cd ~/src/emacs-30.2 | |
| git checkout emacs-30.2 |
(sketching out own thoughts -- explicit examples would likely help in making things clearer)
on the topic of my own use of def and let in janet...
- often default to using
def- doesn't increase indentation so line lengths are not increased [1]
- all of the relevant code within a
letis shifted to the right- the binding bits extend further to the right
- all of the relevant code within a
- doesn't increase indentation so line lengths are not increased [1]
- the body extends further to the right
- 2025-01-07 Meta quickly deletes AI accounts and posts after intense backlash — what's going on
- 2025-10-27 How to turn off Meta AI on Facebook — What you can and can’t control (newer than what was in video?)
- 2024-04-18 - You Can't Turn Off Meta AI on Facebook, Instagram, Messenger, and WhatsApp (not mentioned in video)
- 2025-08-29 - Taco Bell rethinks AI drive-through after man orders 18,000 waters
- 2025-06-16 - [PATCH v5 3/3] docs: define policy forbidding use of AI code generators
- 2025-09-13 - [Cloud Hypervisor Will Block AI Generated Code, Raises x86_64 VM Limit To 8,192 vCPUs](https://www.phoronix.com/news/Cloud-Hypervi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ VISUAL=emacs janet find-callers-of.janet file/write ~/src/git-some-janets/repos 2>/dev/null | |
| # emacs +4 codeberg.org/amano.kenji/j3blocks/j3blocks/modules/cmd.janet | |
| run | |
| # emacs +18 codeberg.org/veqq/deforester/deforester.janet | |
| log | |
| # emacs +40 codeberg.org/veqq/deforester/deforester.janet | |
| set-sink-to-logger! | |
| # emacs +7 git.sr.ht/~nullevoid/jermbox/examples/example.janet | |
| command-loop | |
| # emacs +22 git.sr.ht/~subsetpark/bagatto/demo/vendoring/janet_modules/tester.janet |