Blog
Interesting tech findings.
Why tutorial hell is really bad. And how to escape it.
9 min read10Mar 09, 2024
The biggest obstacle to progress within the programming sector is undoubtedly tutorial hell.
`var` vs `const` vs `let`
3 min read28Mar 15, 2024
Let’s finish this ancient old debate once and for all should you use var, const or let if you are creating an variable within javascript.
The Only Array Functions You Will Ever Need
4 min read14Mar 12, 2024
After eight years of programming and learning all the array methods that exist within the JavaScript ecosystem, modifying or manipulating data or searching is one of the most common tasks in programming.
NFT anime project
4 min read55Feb 24, 2024
Tried selling anime NFTs in the crypto boom—83,720 possible unique pieces, coded a 10,000-image generator, uploaded 5,000 to OpenSea.
Package.json explained
4 min read6Feb 17, 2024
A detailed explanation of the package.json file in Node.js
Nested Laravel Relationships
2 min read34Feb 17, 2024
So you can use nested relationship within Laravel models… What awesome!
Coding Every Day for 5 Years. What have I learned?
8 min read10Feb 10, 2024
This article shares insights from five years of daily coding, focusing on problem-solving, technology selection, Pomodoro technique, and concentration enhancement.
Sending SMS with Laravel and Twilio
2 min read50Feb 03, 2024
Easily send SMS in Laravel with Twilio integration. Follow our quick tutorial to set up, install, and implement SMS functionality for efficient communication in your web app.
Elon complicated the the hell out of the twitter api
7 min read35Mar 21, 2024
Elon what are you doing? You are making the twitter api more complicated than it already is.
Coding everyday nearly 10 hours for 4 years
8 min read14Jan 24, 2024
What I Have Learned from Coding Every Day for the Past 4 Years of My Decade-Long Career
Lessons from solo handing a project with over half a million customers
9 min read65Sep 02, 2022
The main things I've learned from handling a project with over half a million customers on my own.
The best express typescript structure example
21 min read30Feb 27, 2024
With expressjs you have to build your project structure yourself. This article will show you the best way to structure your express project with typescript.
Unveiling a Hidden Gem: The addEventListener Method's Secret Power
5 min read38Mar 17, 2024
After 8 years of programming, I discovered that the addEventListener method has an optional third parameter, which allows you to add extra options. These are capture, once, and passive.