Month: October 2021
-
Create a Content Aggregator with Python
The need for content aggregators is pretty clear. The internet is filled with endless information and in order for you to stay updated and informed about the latest news or any other type of content, you might be scrolling through various websites every day. Content aggregation helps us optimize our content consumption — instead of scrolling through […]
-
Dijkstra’s Most Powerful Lessons
Edsger Wybe Dijkstra was one of the pioneers and one of the most influential members in the field of computer science.Dijkstra had contributed in many domains such as algorithm design, operating system, distributed processing, and the list goes on. If you are a computer science student in the past or present, you probably encountered Dijkstra’s […]
-
Unconventional Sorting Algorithms
Sorting is a fundamental necessity in computer programming, but not all sorting algorithms were “created equal”. You probably know that the best complexity for comparison-based sorting is O(NlogN), but today we are going to discuss some revolutionary sorting algorithms that you better avoid using in your own programs. Hold on to your seats, here are […]
-
Build And Deploy A Telegram Bot
5 Minutes Project We are going to build a Telegram bot with python and deploy it to Heroku. The bot I am going to build will be able to send random pictures or videos of dogs using dog.ceo API, in less than 50 lines of code! No time to waste, let’s dive in. Your project directory […]