Hello 🌍

Charlie Munger Operating System

To get what you want, deserve what you want. Trust, success and admiration are earned. Learn to love and admire the right people, alive or dead. Acquiring wisdom is a moral duty as well as a practical one. Learn to fluency the big multidisciplinary ideas of the world and use them regularly Learn to think through problems backwards as well as forward Be reliable. Unreliability can cancel out the other virtues Avoid intense ideologies....

February 3, 2022 Â· 1 min

Cirlcle of Competence

The concept of the Circle of Competence has been used over the years by Warren Buffett as a way to focus investors on only operating in areas they knew best. The bones of the concept appear in his 1996 Shareholder Letter : What an investor needs is the ability to correctly evaluate selected businesses. Note that word “selected”: You don’t have to be an expert on every company, or even many....

February 3, 2022 Â· 2 min

Naval Ravikant's Decision Making Heuristics

There are infinite choices that we’re making all day long and trying to apply some rule to all these choices is difficult. These rules don’t apply to everything. Be intelligent when to use them. 1. When faced with a difficult choice, if you cannot decide, the answer is no Some decisions can be really long-lived. It’s really important to only say yes when you’re pretty certain. You’re never gonna be absolutely certain, but you can be very positive....

February 3, 2022 Â· 2 min

Shutdown Flask (Local Development)

To stop a running flask application in the CLI, you can just simply press ctrl + c. But sometimes this doesn’t work and the work around is to get the process id of flask and use the kill command. But there is another way of addresssing this using a python function. Just simply add this script to your flask application and invoke the /shutdown endpoint. The code from flask import request def shutdown_server(): func = request....

February 3, 2022 Â· 1 min