13
Some checks failed
Build Quartz Notes / build (push) Failing after 20s

This commit is contained in:
2026-07-13 09:16:09 +01:00
parent 9645ee23b0
commit 129ce1442b
336 changed files with 3812 additions and 579 deletions

41
Articles/Articles MOC.md Normal file → Executable file
View File

@@ -1,22 +1,41 @@
These are PDF articles that have been saved under the `pdfs/` folder, annotated and studied.
This is different to [[z resources]] as that will contain resources in general, including articles (articles are a subset of the responsibilities of [[z resources]])
These are articles, weather from `dev-articles` on slack, or ones that I find online. They can be in a PDF form, or an online link.
If I find an interesting article, this will get saved to the daily note. At the end of the day/week, when these dailies are cleaned up, the article may get added to this list if it's something I want to look into. If it's something for the future, it will go into [[z resources]].
## Software Articles:
- [[I thought I knew system design]]
- [[Every Senior Engineer has read these books]]
- [[Software Quality]]
- [[20 Software Engineering Laws]]
- [[Redefining the Software Engineering Profession for AI]]
- [x] [[I thought I knew system design]]
- [x] [[Every Senior Engineer has read these books]]
- [x] [[Software Quality]]
- [ ] [[20 Software Engineering Laws]]
- [ ] [[Redefining the Software Engineering Profession for AI]]
- [[Effects of insufficient sleep on circadian rhythmicity]]
- [[Effect of Tiktok on teens]]
- [[Reason some people are likable]]
## Science
All files that are not done:
- [ ] [[Effects of insufficient sleep on circadian rhythmicity]]
- [ ] [[Effect of Tiktok on teens]]
- [x] [[Reason some people are likable]]
## Misc
- [ ] https://shvetsm.github.io/posts/the-best-engineers-write-less-code/
- [ ] https://medium.com/data-science-collective/microsoft-banned-ai-because-it-cost-too-much-135bcbf15a18
## All files that are not done:
```dataview
TABLE
FROM "Articles"
WHERE done != true AND file.name!="Articles MOC"
SORT file.name ASC
```
```dataview
TABLE
    file.link AS Article,
    done AS Done
FROM "Articles"
WHERE file.name != "Articles MOC"
SORT file.name ASC
```