What I learned this week 01-18-2025
What I learned this week Software uV is the way
Cute namesapce Zine
Great explanation of a Hash Join from the cofounder of DBT back in 2018
Business/Finance Bad Econ of WTF happened in 1971
Interesting Links Math/Stats Travel Other Since 1989, Kenny G’s recording “Going Home” from the Kenny G Live album has become an unconventional mega-hit throughout China.
What I learned this week 01-11-2025
What I learned this week Software Symbolic Linking is pretty cool: ln -s /Users/iamsam/Desktop/symlinkorigin.txt /Users/iamsam/Desktop/symlinkdest.txt Can set up a file to point to another file…
Xcancel is an instance of Nitter.
Nitter is a free and open source alternative Twitter front-end focused on privacy and performance. The source is available on GitHub at https://github.com/zedeus/nitter
No JavaScript or ads All requests go through the backend, client never talks to Twitter Prevents Twitter from tracking your IP or JavaScript fingerprint Uses Twitter’s unofficial API (no rate limits or developer account required) Lightweight (for @nim_lang, 60KB vs 784KB from twitter.
What I learned this week 01-04-2025
What I learned this week Software Couldn’t find where Datagrip stores its live templates.
find / -name templates and it is here:
/System/Volumes/Data/Users/my_user/Library/Application Support/JetBrains/DataGrip2024.1/templates stored as xml.
If you’re striuggling to find your local templates you can use find from a parent directory find / -name templates
Great overview of all that goes into a fab
Andy’s overview of DBs in 2024
Business/Finance I wasn’t familiar with this ev start up until now
What I learned this week 12-28-2024
What I learned this week Software Turing Machines
A system is Turing complete if it can be used to simulate a Turing machine. Don’t throw any “real time” analysis on a shared resource. That resource will get backed up, your “real time” analysis running every hour will stack up in the que as the cluster slows, making the backlog worse, with a ton of work that is no longer real time.
What I learned this week 12-21-2024
What I learned this week Software Better python notebooks
Map of github
Bloom Filters to speed up Joins in SQLite
A good deep dive on Bloom Filters from Sam
Bloom filters can give definite “no"s, but they can’t be certain about “yes.” A bloom filter will never give a false-negative, and this is what makes them useful. Google’s BigTable is a distributed key-value store, and uses bloom filters internally to know what keys are stored within.