My personal-knowledge-system, with deeply integrated task tracking and long term goal planning capabilities.
2
fork

Configure Feed

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

feat: init db

+34 -2
+1 -1
.config/config.kdl
··· 1 1 2 2 keymap { 3 3 Home { 4 - <q> Quit // Quit the application 4 + q Quit // Quit the application 5 5 <Ctrl-c> Quit // Another way to quit 6 6 <Ctrl-z> Suspend // Suspend the application 7 7 }
+1 -1
Cargo.toml
··· 1 1 [workspace] 2 - members = [] 2 + members = ["crates/db"] 3 3 4 4 5 5 [workspace.package]
+16
crates/db/Cargo.toml
··· 1 + [package] 2 + name = "db" 3 + version.workspace = true 4 + edition.workspace = true 5 + authors.workspace = true 6 + description.workspace = true 7 + license.workspace = true 8 + repository.workspace = true 9 + readme.workspace = true 10 + keywords.workspace = true 11 + rust-version.workspace = true 12 + 13 + [dependencies] 14 + 15 + [lints] 16 + workspace = true
+14
crates/db/src/lib.rs
··· 1 + pub fn add(left: u64, right: u64) -> u64 { 2 + left + right 3 + } 4 + 5 + #[cfg(test)] 6 + mod tests { 7 + use super::*; 8 + 9 + #[test] 10 + fn it_works() { 11 + let result = add(2, 2); 12 + assert_eq!(result, 4); 13 + } 14 + }
+2
doc/act1.md
··· 58 58 59 59 So for now let's get a basic notes set up. 60 60 61 + 62 + ok so lets get a seaorm set up