vault backup: 2023-09-12 16:20:16

This commit is contained in:
2023-09-12 16:20:16 +02:00
parent 27ad149245
commit 9c10ae2a6d
3 changed files with 1 additions and 3 deletions

View File

@@ -6,7 +6,6 @@ relates-to: "[[Bun]]"
creation-date: 2023-09-10 22:00
modification-date: Sunday 10th September 2023 22:00:57
---
# 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`.

View File

@@ -6,7 +6,6 @@ relates-to: "[[Starting my own game company]]"
creation-date: 2023-09-10 10:07
modification-date: Sunday 10th September 2023 10:07:30
---
# 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.

View File

@@ -7,6 +7,6 @@ for (let noteType of dv.pages('"Notes" and #to-review').groupBy(p => p.file.fold
dv.table(["Note", "Tags", "Relates to"],
noteType.rows
.sort(p => p["creation-date"], 'desc')
.map(p => [p.file.link, p.tags, p["relates-to"]]))
.map(p => [p.file.link, p.etags, p["relates-to"]]))
}
```