Hi Reader,
On Friday, Twitter open-sourced their recommendation algorithm! 👀
You can check out the source code on GitHub.
The most interesting code I’ve seen is the tweet ranking code.
The most embarrassing code I've seen is the author_is_elon feature. 🤦♂️
Speaking of GitHub, let's move on to today's tip!
Did you know that GitHub has some hidden new features you can try out?
Go to github.com, click on your profile picture in the upper right corner, and then click "Feature preview":
There are currently 6 new features. You can turn each feature on or off with the Enable/Disable button:
Code Search gives you a more powerful search:
Code View gives you an easy-to-navigate file tree view:
Command Palette makes it faster to navigate around GitHub:
Rich Jupyter Notebook Diffs makes it easier to know what has changed in a notebook:
Try it out and let me know your favorite new GitHub features!
If you enjoyed this week’s tip, please forward it to a friend! Takes only a few seconds, and it really helps me out 🙏
See you next Tuesday!
- Kevin
P.S. How to use Git
Did someone awesome forward you this email? Sign up here to receive data science tips every week!
Join 25,000+ intelligent readers and receive AI tips every Tuesday!
Hi Reader, Last week, I encouraged you to experiment with different LLMs, since there’s no one model that is superior across all use cases. Specifically, I suggested you try using Chatbot Arena, which allows you to chat with multiple models at once. It’s completely free, but has two significant disadvantages: Your chats are not private and may be used for research. It lacks the feature-rich interface provided by other LLMs. Today, I want to offer you a better method for experimenting with...
Hi Reader, Over the past 50 tips, I’ve touched on many different topics: Python, Jupyter, pandas, ML, data visualization, and so on. Going forward, I’m planning to focus mostly on Artificial Intelligence. I’m announcing this so you know what to expect, and I know what to deliver! 💌 I’ll also try to make the tips shorter, so that they're easier to digest on-the-go. Finally, I plan to include an “action item” each week, so that you can practice what you’re learning. I hope you like these...
Hi Reader, Next week, I’ll be offering a Black Friday sale on ALL of my courses. I’ll send you the details this Thursday! 🚨 👉 Tip #50: What is a "method" in Python? In Python, a method is a function that can be used on an object because of the object's type. For example, if you create a Python list, the "append" method can be used on that list. All lists have an "append" method simply because they are lists: If you create a Python string, the "upper" method can be used on that string simply...