Creating your own Links page in Nuxt This is a quick code sample of how I created my own "Where to find me" page for my blog. I'm using Nuxt, Font Awesome, and Tailwind () but with minor adjustments you can adapt this to any stack of your liking 😊 My
Posted 2 weeks ago (16 March 2023)
Streamlining React Application Development with CI/CD using GitHub Actions Introduction Continuous Integration and Continuous Deployment (CI/CD) is a software development methodology that allows teams to automate processes and deploy code changes more qui
Posted 1 month ago (27 February 2023)
AWS Stories #02: Getting Started with Infrastructure as Code () is a powerful approach to managing and provisioning infrastructure in a consistent and repeatable way. By defining your infrastructure using code, you can automate the provisioning,
Posted 2 months ago (23 January 2023)
Top vs code extensions for WEB There are a lot of great extensions for Visual Studio Code that can help with web development. Here are a few that I recommend: Live Server - this extension allows you to quickly spin up a local development serv
Posted 3 months ago (25 December 2022)
GIT interview Questions What is GIT? GIT is a distributed version control system and source code management () system with an emphasis to handle small and large projects with speed and efficiency. What is Distributed Control System? We work in our local
Posted 5 months ago (10 November 2022)
I Need help with typescript classes Someone may help me? I'm learning typescript and I have some trouble with classes. here's my code: Class import Diagram from "../diagram/Diagram"; import MainEngine from "../MainEngine"; import { Data }
Posted 5 months ago (10 November 2022)
VS Code - the best customization for Web developer During the last 3 years I was trying to find the most comfortable theme, font, configuration and a set of extensions for my VS code and it seems like this year I feel really comfortable with what I hav
Posted 5 months ago (23 October 2022)
javascript: Pure Function Two Rules Given the same input, always return same output. Produces no side effects Use: Easy to refactor, makes code more flexible and adaptable. Case 1 // Pure function. const multiplyNumbers = (x,y) => x * y; multiplyN
Posted 6 months ago (29 September 2022)
How GitHub Can Benefit You How does GitHub work? GitHub works by taking snapshots of code changes. When you '' or save changes to a file, a new snapshot is created with a unique identifier. This allows you to go back to previous versions of the code
Posted 7 months ago (31 August 2022)
How to use JavaScript Promise.all with realtime code example [Axios GET Calls] What is Promise.all A Promise.all is a static method which takes array () of promises as an input and do the process as single promise and return in than-able or catch.
Posted 8 months ago (06 August 2022)
Testing your Infrastructure as Code using Terratest Setting Up infrastructure manually can be a time-consuming and hectic process. That is when we can make use of Infrastructure as Code () tools to automate the infrastructure. automation can be done
Posted 10 months ago (15 June 2022)
React Important concepts you should know React important concepts can help you write cleaner code, better code, and optimize performance. in this article, I will share five React best practices you should know of. 1. Use Higher-order Components ()
Posted 10 months ago (21 May 2022)
Vauld Referral Code Get Free Token Vauld Referral Code Get Free Cash Bonus. "" is the most recent Vauld referral code, which you can use to earn referral fees by introducing friends to this marketplace. Crypto is a volatile asset growing in
Posted 12 months ago (04 April 2022)
The difference between Service Classes and Traits in PHP Service Classes A service class is a class that performs some business logic that you want to use in various places. It is any PHP object that performs some sort of a "" task. When code does
Posted 1 year ago (28 March 2022)
How do I get flutter to run correctly in VS Code on {Use the questions/pointers below to gu I've installed flutter and dart sdk but I get the above errors when I run flutter doctor. I've even added to path in environment variables but nothing seems t
Posted 1 year ago (16 March 2022)
How to fix error code This QuickBooks error occurs when you encounter a coding problem while building the software. Find out how to fix error code when you see the following message: "Error : There is a problem with this Windows Installer pa
Posted 1 year ago (08 March 2022)
Introducing value objects in PHP Introducing value objects in PHP Domain-Driven Design () is a software design philosophy with one crucial concept: the structure and language of software code (class names, class methods, class variables) should match t
Posted 1 year ago (06 March 2022)
To practice test-driven development, it's very convenient to use a unit testing framework offering a "" mode: it will run your tests after each modification in your code. Let's see how to achieve that with #NodeJS and #mocha! #DEVCommunity #tdd
Posted 1 year ago (23 February 2022)
Most useful eslint rules for networking code (async/await/promises) The main caveat is that you have to use typescript. Put this into the rules section of your .eslintrc.json: "typescript-eslint/await-thenable": "error", "typescript-eslint/require-awai
Posted 1 year ago (17 December 2021)