Files
vault/Articles/Articles MOC.md
Zaine 129ce1442b
Some checks failed
Build Quartz Notes / build (push) Failing after 20s
13
2026-07-13 09:16:09 +01:00

41 lines
1.3 KiB
Markdown
Executable File
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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:
- [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]]
## Science
- [ ] [[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
```