
Book Summary: Red Notice by Bill Browder
The story of the rise and fall of the biggest foreign investor in Russia.
The story of the rise and fall of the biggest foreign investor in Russia.
The book is a great read about how money and wealth are acquired, preserved, and lost. And that too not because of the market but because of the individual鈥檚 psychology.
Another great read in the Incerto series by Taleb . The core idea is that certain systems benefit from uncertainty. And our goal should be to make all systems antifragile, so that, they can benefit from uncertainty.
I love taking public transport while traveling. One, not only, gets a chance to see the lifestyles of the locals but also becomes more familiar with the new area. So, when can one count on public transport while traveling? Peru and Ecuador had great public transport, both short and long-distance. Dominica had mediocre, Aruba had just one bus going around the island鈥檚 outer road. Hawai鈥檌 has mediocre. The Dominican Republic has great public transport for both short and long-distance. So, why is this the case? ...
Digital Minimalism is a philosophy of technology in which you focus your online time on a few carefully selected activities that support the things you value.
About 50% of Indians use Hindi as their primary language. Hindi/Devanagari is fairly phonetic except when it starts to import foreign words. And that鈥檚 why many Indians, with Hindi as their primary language, end up with incorrect pronunciations of foreign, mainly English, words. Let鈥檚 look at a few specific categories of mistakes.
Aruba, a small Caribbean island 29 km north of Venezuela, is a part of the ABC islands - Aruba, Bonaire, and Cura莽ao, which form the Dutch Caribbean and is a part of the Netherlands. It is famous for its white-sand beaches. Where to stay Aruba Downtown is very far from the impressive beaches in the northwest. Choose a hotel/resort/Airbnb near the world-famous Eagle Beach or Palm beach. Public transport consists of a bus that takes 5.2 US$ on a single ride and runs almost once an hour. Taxis, just like everything else, on the island, are expensive. ...
Google Play Music was great. Apart from one missing feature about the inability to upload music from the phone to the Google Play Music library, I had no other complaints. Then it was forcefully shut down .
There are tons of hyped-up claims surrounding React Native that are worth addressing. The reasons why companies run for React Native are usually, We already use Javascript for the website and now, we can build apps in that as well. We can use one codebase for Android, iOS, and web apps. Or at least, Android and iOS apps. Facebook uses it
On Android catching Java exceptions is easy via UncaughtExceptionHandler . Catching NDK crashes is a bit more convoluted. Since the native stack is probably corrupted, you want the crash handler to run on a separate process. Also, since the system might be in an unstable shape, don鈥檛 send the crash report to your web server or do anything fancy. Just write the crash report to a file, and on the next restart of the app, send to your web server and delete it from the disk. I ended up using jndcrash package for this.