For now? I'm experimenting on an old concept.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: fmt

+4 -9
+1 -3
.devcontainer/devcontainer.json
··· 21 21 "mkdir -p ~/.local/share/bash-completion/completions", 22 22 "mise completion bash --include-bash-completion-lib > ~/.local/share/bash-completion/completions/mise" 23 23 ], 24 - "postStartCommand": [ 25 - "git remote set-url origin ssh://git@git.strawmelonjuice.com/strawmelonjuice/Lumina.git" 26 - ] 24 + "postStartCommand": ["git remote set-url origin ssh://git@git.strawmelonjuice.com/strawmelonjuice/Lumina.git"] 27 25 // Configure tool-specific properties. 28 26 // "customizations": {}, 29 27 // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
+2 -2
README.MD
··· 9 9 ## -> Rewrite '25' 10 10 11 11 > Completely rewriting this project. I am relatively new 12 - > to Lustre and to websockets and to Rocket, but wanna try 12 + > to Lustre and to websockets and to Rocket, but want to try 13 13 > all of them out and make them succeed in this rewrite. 14 14 15 15 ### Environment variables ··· 19 19 `$LUMINAFOLDER/.env`. 20 20 21 21 | NAME | DEFAULT | FOR | 22 - | -------------------------- | -------------------- | -------------------------------------------------------------------------------------------------------------------------- | 22 + |----------------------------|----------------------|----------------------------------------------------------------------------------------------------------------------------| 23 23 | `LUMINA_POSTGRES_PORT` | `5432` | The port to contact the database on. | 24 24 | `LUMINA_POSTGRES_HOST` | `localhost` | The address to contact the database on. | 25 25 | `LUMINA_POSTGRES_USERNAME` | `lumina` | The username to log in to the database with. |
+1 -4
client/src/lumina_client/dom_ffi.ts
··· 7 7 return "light"; 8 8 } 9 9 10 - export function classfoundintree( 11 - starting_element: HTMLElement, 12 - className: string, 13 - ): boolean { 10 + export function classfoundintree(starting_element: HTMLElement, className: string): boolean { 14 11 let element: HTMLElement | null = starting_element; 15 12 do { 16 13 if (element.classList && element.classList.contains(className)) {