Add CI and public speaking

This commit is contained in:
Charles-Axel Dein 2024-02-04 22:20:22 -05:00
parent b5be046aa0
commit b29d1a4ed6
No known key found for this signature in database
1 changed files with 10 additions and 0 deletions

View File

@ -34,6 +34,7 @@
- [Communication](#communication)
- [Compilers](#compilers)
- [Configuration](#configuration)
- [Continuous Integration (CI)](#continuous-integration-ci)
- [Databases](#databases)
- [NoSQL](#nosql)
- [Postgres](#postgres)
@ -94,6 +95,7 @@
- [JavaScript](#javascript)
- [Garbage collection](#garbage-collection)
- [Programming paradigm](#programming-paradigm)
- [Public speaking (presenting)](#public-speaking-presenting)
- [Reading](#reading)
- [Refactoring](#refactoring)
- [Regex](#regex)
@ -636,6 +638,10 @@ See also the Writing section
- Most modern config formats suck
- Use a real programming language
### Continuous Integration (CI)
- [Continuous Integration](https://martinfowler.com/articles/continuousIntegration.html), MartinFowler.com
### Databases
See also the SQL section.
@ -1462,6 +1468,10 @@ JavaScript is such a pervasive language that it's almost required learning.
- I draw the line between declarative and non-declarative at whether you can trace the code as it runs. Regex is 100% declarative, as its untraceable while the pattern is being executed.
- 🎞 [Imperative vs Declarative Programming](https://www.youtube.com/watch?v=E7Fbf7R3x6I&ab_channel=uidotdev)
### Public speaking (presenting)
- [Speaking for hackers](https://sfhbook.netlify.app/)
### Reading
- [Papers we love](https://github.com/papers-we-love/papers-we-love): papers from the computer science community to read and discuss. Can be a good source of inspiration of solving your design problems.