vault backup: 2023-09-12 16:37:27

This commit is contained in:
2023-09-12 16:37:27 +02:00
parent 9c10ae2a6d
commit f0707fba04
5 changed files with 28 additions and 25 deletions

View File

@@ -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]].

View File

@@ -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.

View File

@@ -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]].
---

View File

@@ -0,0 +1,11 @@
---
tags:
- homelab
relates-to: "[[Starting my own game company]]"
note: literature
---
---
# References

View File

@@ -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"]]))
}
```