mken.paste.lol · paste listing

org-roam-new-file.sh

1 year ago
#!/bin/bash

# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title Org Roam new file
# @raycast.mode silent

# Optional parameters:
# @raycast.icon 🤖
# @raycast.argument1 { "t...

org-roam-fast-make-link.el

1 year ago
  ;; Based on https://emacs.stackexchange.com/questions/73158/how-to-programmatically-create-a-new-org-roam-file
  (defun org-roam-fast-make-link (title contents)
    "Make an org-roam node with tit...

biwascheme-post.js

1 year ago
const onError = function(e) { throw(e); }
const biwa = new Interpreter(onError)

function evaluate(lisp) {
    return biwa.evaluate(lisp)
}

assert_boolean = make_simple_assert("boolean", funct...

library.org

1 year ago
* Utility functions
#+begin_src scheme
  ;; Emacs Lisp like defvar
  (define documentation-table (make-hashtable equal-hash equal?))
  (define-macro (defvar name initial-value docstring)
    `(be...