41 lines
1.3 KiB
Markdown
Executable File
41 lines
1.3 KiB
Markdown
Executable File
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
|
||
``` |