Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
utensil committed Sep 30, 2024
1 parent b812e12 commit 37ede60
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions bun/uts-forester.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ function getAppliedMode(userPreference) {

function setAppliedMode(mode) {
document.documentElement.dataset.appliedMode = mode
// const ninja = document.querySelector('ninja-keys');
// ninja.setAttribute('class', mode);
const ninja = document.querySelector('ninja-keys');
ninja.setAttribute('class', mode);
}

function rotatePreferences(userPreference) {
Expand Down
12 changes: 9 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# to access recipes without prefixing `just`, run `source ./init.sh` after openning each new terminal
export PROJECT_ROOT := justfile_directory()

default:
just --list
@echo '💡Tip: run "source ./init.sh" after openning each new terminal, to access recipes without prefixing "just"'

new +X:
./new.sh {{X}}
new +PARAMS:
./new.sh {{PARAMS}}

build:
./build.sh
Expand Down Expand Up @@ -51,5 +53,9 @@ penrose SOURCE:
mkdir -p output/penrose/
cp -f {{SOURCE}} output/penrose/

envs:
#!/usr/bin/env bash
echo "PROJECT_ROOT: $PROJECT_ROOT"
# act:
# ./act.sh
4 changes: 0 additions & 4 deletions trees/index.tree
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
\title{home}
\tag{root}

\author{utensil}

\date{2024-04-24}

\import{macros}

\p{I'm [[utensil]], my notes are hosted here.}
Expand Down
2 changes: 1 addition & 1 deletion trees/uts-0018.tree
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
- add [[uts-001P]]
- learn about [monorepo tools](https://monorepo.tools/): nx seems to have most [feature-complete](https://monorepo.tools/#tools-review) support for [most stacks](https://nx.dev/getting-started/intro#pick-your-stack), moon is the next best choice for [Bun.js](https://moonrepo.dev/docs/guides/javascript/bun-handbook)+[Rust](https://moonrepo.dev/docs/guides/rust/handbook) projects that I have in mind. Other resources:
- [Building a Monorepo with Rust](https://earthly.dev/blog/rust-monorepo/)
- I need to learn more about [Salva](https://salva.rs/): fluids simulation in Rust that works with [Rapier](https://github.com/dimforge/rapier.js/), but it doesn't seem to have a JS binding yet, rapier even has an [r3f](https://github.com/dimforge/rapier.js/) package, and plugins for bevy. See [FLUID SIMULATION - SIGGRAPH 2007 Course Notes](https://www.cs.ubc.ca/~rbridson/fluidsimulation/fluids_notes.pdf) to learn more about fluid simulation.
- I need to learn more about [Salva](https://salva.rs/): fluids simulation in Rust that works with [Rapier](https://github.com/dimforge/rapier.js/), but it doesn't seem to have a JS binding yet, rapier even has an [r3f](https://github.com/dimforge/rapier.js/) package, and a plugin for bevy. See [FLUID SIMULATION - SIGGRAPH 2007 Course Notes](https://www.cs.ubc.ca/~rbridson/fluidsimulation/fluids_notes.pdf) to learn more about fluid simulation.
- learn about [WLJS](https://jerryi.github.io/wljs-docs/) for Wolfram Mathematica, recalled [my early Mathematica notebooks](https://github.com/utensil/mathematica-notebooks), and wish to do SSR for them
}

Expand Down

0 comments on commit 37ede60

Please sign in to comment.