diff --git a/Notes/Fleeting/Bun 1.0 dropped.md b/Notes/Fleeting/Bun 1.0 dropped.md index 27629f1..ff6a4ef 100644 --- a/Notes/Fleeting/Bun 1.0 dropped.md +++ b/Notes/Fleeting/Bun 1.0 dropped.md @@ -1,13 +1,10 @@ --- tags: - - note/fleeting - - to-review + - homelab + - web relates-to: "[[Bun]]" -creation-date: 2023-09-10 22:00 -modification-date: Sunday 10th September 2023 22:00:57 +note: fleeting --- -# Bun 1.0 dropped - So [[Bun]] dropped in 1.0 and it seems really powerful as a drop-in replacement for [[Node JS]]. It runs tests faster than [[Vitest]], builds and runs [[Typescript]] like there's no tomorrow and has a built-in package manager that's supposed to be way better than `npm`. I'd like to test Bun with [[Astro]] as a full stack framework. [[Nuxt]] seems to work on it as well if SPA or high-interactivity is needed. Finally it should run [[Vue]] fine in [[Tauri]]. diff --git a/Notes/Fleeting/Business plan.md b/Notes/Fleeting/Business plan.md index 8949832..bdec6ba 100644 --- a/Notes/Fleeting/Business plan.md +++ b/Notes/Fleeting/Business plan.md @@ -1,13 +1,11 @@ --- tags: - - note/fleeting - - to-review + - devops + - company + - homelab relates-to: "[[Starting my own game company]]" -creation-date: 2023-09-10 10:07 -modification-date: Sunday 10th September 2023 10:07:30 +note: fleeting --- -# Business plan - One possibility to make a company in Switzerland would be to provide pipeline and development infrastructure for smaller studios. I'm quite good at those things, it's interesting, and that could be a way to help lots of people in a niche which is not the same as every other as well as working on lots of projects. For this to be viable though that would mean having more experience with #devops in general to provide [[Remote development]] environments, [[CI]]/[[CD]], etc. diff --git a/Notes/Fleeting/Upgrading ImproImpact.md b/Notes/Fleeting/Upgrading ImproImpact.md index bdf2f07..8f01af9 100644 --- a/Notes/Fleeting/Upgrading ImproImpact.md +++ b/Notes/Fleeting/Upgrading ImproImpact.md @@ -1,16 +1,11 @@ --- tags: - - note/fleeting - - to-review -relates-to: + - web +relates-to: - "[[Bun]]" - "[[Homelab]]" -creation-date: 2023-09-12 12:31 -modification-date: Tuesday 12th September 2023 12:31:02 +note: fleeting --- - -# Upgrading Impro Impact - I'd like upgrade https://impro-impact.ch/ to use both [[Astro]] and [[Bun]]. But Ideally I'd want to do it whenever I setup at least some [[Remote development]] with [[Coder]] on my [[Homelab]]. --- diff --git a/Notes/Literature/Test note.md b/Notes/Literature/Test note.md new file mode 100644 index 0000000..a230b7b --- /dev/null +++ b/Notes/Literature/Test note.md @@ -0,0 +1,11 @@ +--- +tags: + - homelab +relates-to: "[[Starting my own game company]]" +note: literature +--- + + + +--- +# References diff --git a/Notes/Notes to review.md b/Notes/Notes to review.md index fcb28c5..34adc3f 100644 --- a/Notes/Notes to review.md +++ b/Notes/Notes to review.md @@ -1,12 +1,14 @@ -```dataviewjs +--- +tags: + - reviewed +--- -``` ```dataviewjs -for (let noteType of dv.pages('"Notes" and #to-review').groupBy(p => p.file.folder)) { +for (let noteType of dv.pages('"Notes" and -#reviewed').groupBy(p => p.file.folder)) { dv.header(3, noteType.key); dv.table(["Note", "Tags", "Relates to"], noteType.rows - .sort(p => p["creation-date"], 'desc') - .map(p => [p.file.link, p.etags, p["relates-to"]])) + .sort(p => p.mtime, 'desc') + .map(p => [p.file.link, p.tags, p["relates-to"]])) } ```