···1010- A [consistent pattern](https://www.startdataengineering.com/post/design-patterns/) across your data pipelines helps devs communicate easily and understand code better.
1111- Data Engineering can learn from decentralized systems ideas like, Content Addressed Data, Immutability, and [[Idempotence]].
1212- [Schemas aren't eliminated by using a "schemaless" data store](https://ludic.mataroa.blog/blog/flexible-schemas-are-the-mindkiller/) (like a NoSQL database). They're just pushed to the reading layer.
1313+- [Bring compute to data instead of data to compute](https://youtu.be/S0mviKhVmBI)!
13141415## Data Pipelines
1516
+3-1
Health.md
···10101111## Blood Markers
12121313+These are some of the blood markers that could be useful to measure and monitor.
1414+1315- Cortisol: Stress marker.
1416- HbA1c: Glucose/diabetes marker.
1517- hsCRP: Inflammation marker.
1616-- LDL: Bad cholesterol .
1818+- LDL: Bad cholesterol.
1719- HDL: Good cholesterol.
1820- AST: Liver function.
1921- Ferritin: Indicates inflammation, obesity, excess iron.
+1-1
Programming.md
···77 - The more you can decompose, the more innovation you'll drive.
88 - The best code is no code, or code you don't have to maintain.
99- **Design for simplicity**.
1010- - Do the [simplest thing](https://landing.google.com/sre/book/chapters/simplicity.html) that could possibly work.
1010+ - Do the [simplest thing](https://landing.google.com/sre/book/chapters/simplicity.html) that could possibly work (e.g: UNIX tools remain incredibly powerful and efficient for "Big Data").
1111 - Benefits of simplicity: ease of understanding, ease of change (improvement), ease of debugging, flexibility. [The goal of software design is to create chunks or slices that fit into a human mind](https://mobile.twitter.com/KentBeck/status/1354418068869398538). The software keeps growing but the human mind maxes out, so we have to keep chunking and slicing differently if we want to keep making changes.
1212 - Break down complex problems into simpler, digestible pieces. If you do it right, it will feel like cheating: you just solve simple problems until you're done.
1313 - We can't change our brain to grasp something complex. We need to simplify complexity so we can handle it.