Skip to content

Instantly share code, notes, and snippets.

@sogaiu
sogaiu / just-one-space.rkt
Last active March 20, 2025 01:20
Racket quickscript emulation of Emacs' `just-one-space`
#lang racket/base
;; This file is placed in the public domain.
(require racket/class ; need for `(send ed ...)`?
quickscript
tests/eli-tester)
;; light emulation of emacs' `just-one-space`
@sogaiu
sogaiu / eight-racketcon-2018.md
Last active March 17, 2025 04:16
eight racketcon 2018
@sogaiu
sogaiu / getting-by-in-chromium.md
Last active March 18, 2025 08:16
getting by in chromium (or chrome)

work-arounds

  • Cookie Clearing in Chrom(e|ium) - keep a tab open to chrome://settings/content/all and periodically visit to clear cookies manually. possibly one could just whitelist some places instead and block everything else?

  • Disable the GitHub notification dot

    • Dashboard: My filters - to bring something back that has been blocked, remove appropriate line(s) from the Dashboard's "My filters" pane.

      • Dashboard - the Dashboard can be accessed by the gear icon that shows up on the floating dialog(?) that appears when uBlock Origin's icon (the web browser toolbar one) is clicked
@sogaiu
sogaiu / reduce-n.janet
Last active March 15, 2025 12:46
reduce-n
(defn reduce-n
[f init ind & inds]
(when (empty? inds)
(break (reduce f init ind)))
#
(var accum init)
(def n-inds (length inds))
(loop [[idx el] :pairs ind]
(set accum
(f accum el
@sogaiu
sogaiu / notes-on-gists.md
Created March 7, 2025 03:33
notes on gists
  • when window is narrower than a certain width, certain features appear inaccessible (e.g. edit button does not appear visible)
@sogaiu
sogaiu / effective-situated-programs-tidbits.md
Last active March 8, 2025 10:16
effective situated programs tidbits

0:44 What Happened Across Ten Years

Effective Programs

Ten years ago, Clojure was released, and there's no possible way I could have imagined this. >