Moved here
This file contains 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
#!/bin/sh | |
# use this to prep remote development | |
# | |
# ensures sshd is active and multiuser nix is installed | |
# | |
# the most common activity here is mounting the local vault | |
# other activities happen only on installation or after upgrades | |
# | |
# activate ssh if it's not activated | |
if ! systemctl is-active sshd > /dev/null 2>&1; then |
<2022-07-27 Wed 08:40>–<2022-07-27 Wed 08:50>
<2022-07-27 Wed 09:00>–<2022-07-27 Wed 09:30>
This file contains 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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; | |
;; BACK UP YOUR LOGSEQ DIR BEFORE RUNNING THIS! | |
;; | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; Copyright (C) Aug 4 2022, William R. Burdick Jr. | |
;; | |
;; LICENSE | |
;; This code is dual-licensed with MIT and GPL licenses. |
This file contains 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
#!/bin/sh | |
# format markdown docs with https://jez.io/pandoc-markdown-css-theme/ and add TOC sidebar | |
# removes the large margin at the top of the body | |
if [ $# = 0 -o "$1" = --help ]; then | |
cat <<here | |
Usage: $(basename $(realpath "$0")) [--help] MARKDOWNFILE | |
Outputs HTML file from MARKDOWNFILE. | |
Formats MARKDOWNFILE with jez's template. | |
Shows a table of contents on the side. |
This file contains 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
;;; org-roam-ivy.el --- scalable incremental completion for org-roam -*- coding: utf-8; lexical-binding: t; -*- | |
;; Copyright © 2021 Bill Burdick <bill.burdick@gmail.com> | |
;; Author: Bill Burdick <bill.burdick@gmail.com> | |
;; URL: https://gist.github.com/zot/1d6f164178f41498f912613f2054bbb7 | |
;; Keywords: org-mode, roam, convenience | |
;; Version: 0.0.15 | |
;; Package-Requires: ((emacs "26.1") (dash "2.13") (f "0.17.2") (org "9.4") (emacsql "3.0.0") (emacsql-sqlite "1.0.0") (magit-section "2.90.1") (org-roam "2.0.0")) |
This file contains 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
0x00b97c4e2Af07AcE51A5C1cdf36b7405C1EF0E6a |
This file contains 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
;; modify ob-js to redirect to skewer if it is currently connected | |
;; this code can go in an emacs settings file | |
(require 'ob-js) | |
(require 'cl) | |
(advice-add 'org-babel-execute:js :around 'bill/org-babel-execute:skewer) | |
;;(advice-remove 'org-babel-execute:js #'bill/org-babel-execute:skewer) | |
(defun bill/org-babel-execute:skewer (oldFunc body params) | |
(if (skewer-ping) | |
(lexical-let* ((result-type (cdr (assoc :result-type params))) |
This file contains 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
### | |
Copyright (C) 2013, Bill Burdick, Tiny Concepts: https://github.com/zot/Leisure | |
(licensed with ZLIB license) | |
This software is provided 'as-is', without any express or implied | |
warranty. In no event will the authors be held liable for any damages | |
arising from the use of this software. | |
Permission is granted to anyone to use this software for any purpose, |
This file contains 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
### | |
Copyright (C) 2013, Bill Burdick, Tiny Concepts: https://github.com/zot/Leisure | |
(licensed with ZLIB license) | |
This software is provided 'as-is', without any express or implied | |
warranty. In no event will the authors be held liable for any damages | |
arising from the use of this software. | |
Permission is granted to anyone to use this software for any purpose, |
NewerOlder