this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: ✏️ Enhance content with coding tips, mental models, and public speaking insights

Added a "Coding Tips" section in Large Language Models.md for effective model guidance. Expanded Mental Models.md with detailed sections on mental models that influence reality, knowledge, systems, and more. Updated Problem Solving.md with a note on addressing social issues collaboratively. Improved Public Speaking.md with tips for crafting compelling proposals. These enhancements aim to provide nuanced and actionable insights across documents.

+100 -1
+5
Large Language Models.md
··· 3 3 - LLM can build internal [[Knowledge Graphs]]s in their the network layers. 4 4 - ML system where humans are designing how the information is organized (feature engineering, linking, graph building) will scale poorly ([the bitter lesson](http://www.incompleteideas.net/IncIdeas/BitterLesson.html)). 5 5 6 + ## Coding Tips 7 + 8 + - Use comments to guide the model to do what you want. 9 + - Divide the problem into smaller problems (functions, classes, ...) and solve them one by one. 10 + 6 11 ## Tools 7 12 8 13 - [LangChain](https://python.langchain.com/en/latest/)
+91 -1
Mental Models.md
··· 4 4 5 5 A mental model is a thought process about how something works in the real world. They can help to shape behavior and set an approach to solving problems (a personal algorithm). The world is confusing when your model of the world is wrong. Millions of mental models exists, and every discipline has their own set. Some of them overlap and might be called differently. 6 6 7 - Each one act as a lens through which to view the world. You can use them to navigate the territory of reality, and just like different types of maps (some simplistic and cartoonish, others realistic and highly detailed) can be more or less useful for different purposes, even maps that you know are not literally correct can still have value. 7 + Each one act as a lens through which to view the world. You can use them to navigate the territory of reality, and just like different types of maps (some simplistic and cartoonish, others realistic and highly detailed) can be more or less useful for different purposes, even maps that you know are not literally correct can still have value. 8 8 9 9 - [Mental Models: The Best Way to Make Intelligent Decisions](https://www.farnamstreetblog.com/mental-models/) 10 10 - [A Searching and Fearless Intellectual Inventory](https://www.facebook.com/notes/kent-beck/a-searching-and-fearless-intellectual-inventory/1179765038723025) ··· 14 14 - [Julian Spahiro's Mental Models](https://www.julian.com/blog/mental-model-examples) 15 15 - [Mental models for designers](https://dropbox.design/article/mental-models-for-designers) 16 16 - [Mental Models Box](https://www.mentalmodelsbox.com/explore) 17 + 18 + 19 + ## Interesting Models 20 + 21 + A list of mental models that I find interesting and useful. List comes from [Andrew Conner](https://andrewconner.com/). 22 + 23 + ### Reality & Models 24 + 25 + - Map is not the territory: Models of reality are useful tools but shouldn't be mistaken for reality itself. 26 + - False models: Some frameworks can be useful even when literally false. 27 + - Primitives are building blocks: Basic patterns that enable more complex systems to be built. 28 + - Complex vs complicated systems: Some systems can be analyzed, others can only be probed. 29 + - [[Emergence]] - Complex systems produce behaviors that can't be reduced to their parts. 30 + 31 + ### Knowledge & Truth 32 + 33 + - Truth seeking is iterative: Understanding emerges through successive approximations. 34 + - Epistemic modesty: Recognizing the limits of our knowledge and certainty. 35 + - Base rates: Start with typical probabilities before considering specifics. 36 + - Seeing clearly doesn't mean solving most effectively: [[Problem Solving| Understanding a problem doesn't necessarily provide its solution]] 37 + - Salience doesn't equal truth: What grabs attention isn't necessarily what matters. 38 + 39 + ### Perspective & Understanding 40 + 41 + - Reality tunnel: Your perspective limits what truths you can perceive. 42 + - Bridges: Ideas that connect different states of understanding. 43 + - Congruent bridges: When different paths lead to the same insight. 44 + - Categorization errors: The boundaries we draw between concepts are artificial and often misleading. 45 + - Transposed Model: Testing ideas by applying them in different contexts. 46 + 47 + ### Systems & Incentives 48 + 49 + - [[Incentives]] matter: Show me the incentives and I'll show you the outcomes. 50 + - Pumps: Systems that reliably produce desired outcomes. 51 + - Uncaptured externalities: Hidden costs that aren't accounted for in decisions. 52 + - Skin in the game: Having personal stakes improves decision quality. 53 + - Efficiency vs Resiliency: The fundamental tradeoff between optimization and robustness. 54 + - Positive and negative sum games: Whether interactions create or destroy total value. 55 + 56 + ### Learning & Development 57 + 58 + - Pattern matching: Expertise comes from recognizing recurring templates. 59 + - Training data: Some lessons can only be learned through examples. 60 + - Social learning: How humans learn from each other. 61 + - Exploration vs objective-seeking: Sometimes wandering beats having a destination. 62 + - Different advice on different days: Context determines what guidance is useful. 63 + - Ecology of practice: Balanced collection of practices for overall human development. 64 + 65 + ### Communication & Information 66 + 67 + - Bottlenecked communication: Our ability to express internal experiences is fundamentally limited. 68 + - Controlling inputs: Managing information flow is crucial for clear thinking. 69 + - Polluting the information ecology: Some actors degrade our shared ability to make sense of reality. 70 + - Steelmanning: Address the strongest possible version of an opponent's argument. 71 + - Definitional disagreement: Many arguments stem from different underlying definitions. 72 + 73 + ### Culture & Ideas 74 + 75 + - Everything is a remix: All creation builds on what came before. 76 + - Memetics: Ideas evolve and spread through fitness landscapes. 77 + - Culture as Product: Cultural elements form mutually reinforcing packages. 78 + - Psychotechnologies: Tools that enhance and standardize human cognitive capabilities. 79 + - Hardware, firmware, software: Humans operate on biological hardware, cultural firmware, and psychological software. 80 + - Cargo Culting: Copying surface features while missing the underlying dynamics. 81 + 82 + ### Psychology & Behavior 83 + 84 + - Parts work: The psyche is multi-agent and requires internal coordination. 85 + - Resonance: Non-intellectual alignment with ideas or experiences. 86 + - Self vs identity: The difference between core experience and chosen labels. 87 + - Short circuited rewards: When natural feedback loops get hijacked. 88 + - Placebo pump: Harnessing belief and expectation to produce real effects. 89 + - Smells: Intuitive warnings that something may be wrong. 90 + 91 + ### Analysis & Observation 92 + 93 + - Pointing at: Extreme positions often indicate overlooked truths. 94 + - Least interesting interesting thing: When attention-grabbing attributes distract from what really matters. 95 + - Expected value thinking: Consider the full distribution of possible outcomes. 96 + - Meta-games: The game beyond the obvious game. 97 + - Descriptive vs Prescriptive: The difference between what is and what should be. 98 + 99 + ### Misc 100 + 101 + - Adaptive systems are stronger: [[Systems]] that can change are more resilient. 102 + - Condition setup: Create circumstances that make desired outcomes more likely. 103 + - Proof of work: Demonstrable effort creates credibility. 104 + - Exaptation: Features evolved for one purpose can be repurposed for another 105 + - Lottery of birth: The arbitrary nature of our starting circumstances. 106 + - Optimal amount of X is not zero: Perfect isn't always zero tolerance.
+1
Problem Solving.md
··· 38 38 - Sometimes you can find the solution easier if you think about how not to solve the problem ([Inversion Principle](https://www.mymentalmodels.info/mms-inversion/)). 39 39 - Keep the end goal in mind. [Don't Shave That Yak](https://seths.blog/2005/03/dont_shave_that/)! 40 40 - [The Copenhagen Interpretation of Ethics](https://blog.jaibot.com/the-copenhagen-interpretation-of-ethics/) says that when you observe or interact with a problem in any way, you can be blamed for it. At the very least, you are to blame for not doing _more_. ^ec616e 41 + - Social problems demand social solutions. Not everything can be solved by technology. E.g: If you're skeptical about Wikipedia, you can easily create your own fork of Wikipedia and improve it. You'll have to deal with the social problems of convincing others to use your fork, etc. 41 42 42 43 ## Five Whys 43 44
+3
Public Speaking.md
··· 17 17 - Don't present any slide with a wall of text. 18 18 - Titles for the graphs should be the conclusion. 19 19 - If having issues keeping with the story (e.g. you need long notes), use many slides to help you cover all the points and offer a summary at the end. 20 + - Write a great proposal. 21 + - Make your proposal easy to scan. 22 + - Explain what the audience will take away from your talk. 20 23 21 24 ## Resources 22 25