In this series I record myself trying to solve a Hackerrank problem.
Use Meaningful Names in Your Code
Sat Sep 11 2021
cleanCode
programming
bestPractices
We see user created names everywhere in our codebase. It's in our variables, functions, arguments, classes, and folders. We name and name and name. Because we do so much of it, we'd better do it well.
Block-Scoped Functions in JavaScript
Thu Aug 12 2021
Learn how block-scoped functions were treated pre-ES6 JavaScript specification and compare it to how block-scoped functions behave on the ES6 specification.
Why I Am Starting To Learn C# & .NET
Fri Jul 16 2021
C#
.NET
I have been browsing career opportunities online to grow as a full stack developer and I saw that many large scale companies are using C# and .NET frameworks write their applications. This is the main reason for choosing to explore this path as an curious individual.
Why I Took a “Mobile First” Approach When Building My Personal Website
Sat Jul 03 2021
css
html
web design
Explore the benefits of developing websites with the "Mobile First" approach. I share my own experiences that I gained while working on my personal website/blog.
Filtering Unique Values From JavaScript Array Is Easier Than You Think
Tue Jun 29 2021
javascript
web development
See how we can use JavaScript Set to filter out unique values from a JavaScript array.
Don’t Make This Mistake With the JavaScript Array Map() Method
Sat Jun 19 2021
javascript
web development
The array is a widely used data structure in many programming languages. In this article I will discuss the map method and discuss examples on when not to use it.