© 2023 Hashnode
#programming-tips
Hello, and welcome to my first Hashnode article! I am excited to begin a new article series on the Python programming language. This series is for you if you're just starting with programming or if you want to learn more. We will examine th…
2022 was a year for the books. I ticked off all the boxes on my success list: Shortlisted for MLH and ETHWMN fellowship Google Girl Hackathon champion International speaker at Codebar Financially …
Webhooks are a great way for systems to communicate with each other. Since their emergence in 2007, webhooks have become an incredibly popular software architecture approach that is used by some of th…
the lambda expression was first introduced to the programming world after the function pointer as we discussed previously. the function pointer refers to a pointer that holds the address of the function to be used as an argument to another …
Are you tired of staring at a mess of code that even your cat wouldn’t touch? Look no further. In this post, I will tell you 9 rules to turn your spaghetti code into a work of art. So grab a cup of co…
To understand what it means to be a better Developer + Designer we have to understand holistically what it means. What does a Developer do? What are we responsible for? What does a designer do? Who ar…
Originally published at renanfranca.github.io Motivation You can earn money by fixing issues with bounty labels! https://twitter.com/mraible/status/1440286692049522690 Take a look at the available bou…
JavaScript (JS) is the most popular lightweight, interpreted compiled programming language. It can be used for both Client-side as well as Server-side developments. JavaScript also known as a scripting language for web pages. JavaScript is …
The other day, I found an interesting code snippet in the 'Spot The Bug' section of a Bytes newsletter. Can you spot it? const getCapitalizedInitials = (name) => name .trim() .split(" ") …
Functions are one of the most important fundamentals of JavaScript. Event Handling, Callbacks, Data Manipulation, Constructor & Factory Functions are just some examples of how Functions are used in Ja…