Roam

2026-01-27
Original implementation credits go to Hugo Cisneros

Here lie bottom-up (not top-down) notes.

Bifurcations

import numpy as np
import matplotlib.pyplot as plt

#params
r_min, r_max = 2.5, 4.0
n_r = 10000
n_transient = 1000
n_last = 100

r = np.linspace(r_min, r_max, n_r)
x = 0.5 * np.ones(n_r)

for i in range(n_transient):
    x = r * x * (1-x)

r_list = []
x_list = []

for i in range(n_last):
    x = r * x * (1-x)
    r_list.append(r)
    x_list.append(x)

r_plot = np.array(r_list).flatten()
x_plot = np.array(x_list).flatten()

plt.figure(figsize=(12,8))
plt.scatter(r_plot, x_plot, s=0.1, c='black', alpha=0.1)
plt.title('Bifurcation Diagram of the Logistic Map')
plt.xlabel('Growth Rate ($r$)')
plt.ylabel('Population ($x$)')
plt.xlim(r_min, r_max)
plt.ylim(0,1)
plt.grid(False)

plt.show()

Game Trees

I have an interest in the Game Trees that would be used

Read more >

Docker

On MacOS, docker runs within a Linux Virtual Environment. As such, running Ollama becomes difficult because we cannot access GPU the way that it is possible to do so on Linux machines with AMD and Nvidia GPUs

jobsync

A fork of this repo: https://github.com/Gsync/jobsync.git

Updated to include automatic Job Application insertion from Notmuch Emacs email client.

EXPORT html <a href="https://github.com/abaj8494/jobsync"> <img src=" =" alt=“jobsync” /> </a> #+END_EXPORT

Original Functionality

db is stored at `./prisma/dev.db`

it can be queried with sqlite3:

  • sqlite3 prisma/dev.db
  • .tables # List tables

SELECT id, subject, classification, status, confidence FROM EmailImport LIMIT 10;

.mode column
.headers on
SELECT subject, classification, confidence FROM EmailImport WHERE status='pending' LIMIT 5;

org-shop

Org-table based shopping list management with:

  • Mark items in shop files (C-c d m)
  • Generate shopping lists (C-c d g)
  • Sync prices back with history tracking (C-c d s)
  • Clear marks (C-c d c)

new functionality:

  • 1. add |--| bars on the ** history sub-heading.
  • 2. back-sync notes column.
  • fix horizontal bar placement on <shop>.org
  • check if bound to second level ** regular

Org

shortcuts

that I always forget:

C-c C-x f
create footnote

org-download

org-download - drag/drop images into org:

  • C-c d y - yank image from kill ring
  • C-c d s - take screenshot and insert
  • C-c d c - paste from clipboard
  • Images saved to images/ subdirectory relative to org file