Have you ever needed an icon for your website, but you couldn’t quite find the right one? Or perhaps you wanted to have a simple diagram, but didn’t want to learn a whole new library just for that? Well, good news – you can do all that and more without ever
Daily Archives: December 11, 2021
How to print out information is one of the first things you learn as a beginner programmer. This article goes over what you need to know about printing in Python, and we’ll look at plenty of code examples along the way. Let’s get started! What is print used for? Printing
JavaScript is a popular programming language used for building web applications, among many other things. In this article, I will provide a list of free online resources where you can start learning JavaScript. After you have learned the basics then you can start building beginner friendly projects. JavaScript Algorithms and
Do you remember J.A.R.V.I.S., Tony Stark’s virtual personal assistant? If you’ve seen any of the Ironman or Avengers movies, I’m sure you do. Have you ever wondered whether you could create your own personal assistant? Yes? Tony Stark can help us with that! Oops, did
In Python, a dictionary is a collection you use to store data in {key:value} pairs. It is ordered and mutable, and it cannot store duplicate data. We write a dictionary using curly brackets like this: my_dict = { “id”: 1, “name”: “Ashutosh”, “books”: [“Python”, “DSA”] } Sometimes, we need to merge
Dark mode is starting to become a requirement rather that a nice-to-have feature like it was back in the day. It gives users the option to choose a theme that’s comfortable for them, whether they’re working during the day or at night. If you haven’t already heard, Tailwind CSS is
