- Re-integrate jpm into janet
- from "jpm fails to install spork/json and other native modules"
So Janet's built-in installation is not really intended to be compatible with Linux installation paths and structure, and was designed in such a way to require only a single JANET_PATH for configuration.
- clarfication remark
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
| https://www.rebol.com/r3/docs/concepts/parsing-summary.html |
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
| (defn capture-empty-element | |
| [& args] | |
| (def sname (first args)) | |
| (case (length args) | |
| 0 (errorf "expected one or more args, got 0") | |
| # | |
| 1 {:tag sname} | |
| # | |
| {:tag sname | |
| :attrs (table ;(drop 1 args))})) |
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
| #! /usr/bin/env janet | |
| # based on: | |
| # | |
| # https://codeberg.org/veqq/rss-reader/src/branch/master/rss-reader.janet | |
| # usage: pass feed urls on command line | |
| # requirements: | |
| # |
- How to View Full Email Source and Header in Fastmail
- Why can't I see the masked address to which this email was sent - reddit
- The evolution of the advanced fee scam - Fastmail Custom Support
- Sender authentication - Fastmail > Mail > Technical
- Plus addressing and subdomain addressing - Fastmail > Mail > Technical
- Message Header Field for Indicating Message Authentication Status - RFC 7001
- viewing fastmail email as plain text - hackernews response
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
| (defn visit | |
| `` | |
| Traverse directory tree starting at `path`, applying | |
| argument `a-fn` to each encountered file or directory path. | |
| `` | |
| [path a-fn] | |
| (assertf (is-dir? path) | |
| "expected dir but got: %n" (os/stat path :mode)) | |
| (def seen? @{}) | |
| # |
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
| # `(next x)` can be used as a synonym for `(not (empty? x))` | |
| # if `next` returns `nil`, the argument is empty. | |
| (next []) | |
| # => | |
| nil | |
| # if `next` returns non-nil, the argument is not empty. | |
| (next [:a :b]) | |
| # => |
- The open source design stack - Scott Riley
- Disassembling a Cortex-M raw binary file with Ghidra - Niall Cooling
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
| * refine this file based on conventions adopted for | |
| notes.txt files used for niche and jell | |
| * possibly could split out search-paths so jackal, jargon, and jog can | |
| vendor search.janet from some common place? might be that | |
| walk-dir.janet and search.janet should be merged? | |
| * unexpected...why does path-join show up as result 8 below? | |
| ~/src/git-some-janets/repos$ jakl who-calls declare-project |
NewerOlder