Browsing Category
Software
12395 posts
Software Engineering & Development Frameworks
This hub covers practical engineering frameworks, development processes, and system design approaches used to build scalable and reliable systems.
You’ll find how-to guides, architectural breakdowns, and real-world insights focused on backend systems, cloud software, and modern developer tooling.
This content is designed for engineers, technical leads, and teams working on production-scale applications.
Key Engineering Guides
Unions and Narrowing in TypeScript
Intro This is my first memorable article to publish on the DEV community. Currently, I am relearning TypeScript…
How to create a Website Using HTML and CSS Only
How to create a Website Using HTML and CSS Only Creating a website from scratch can be an…
Understanding the Differences Between HTTP and HTTPS
As the world becomes more connected, the need for secure communication between web servers and clients grows. The…
Debugging JavaScript Like a Pro: Tools and Techniques for Finding and Fixing Bugs
Introduction JavaScript is a powerful programming language used to create interactive web pages and dynamic user interfaces. However,…
Faster React apps coding: How to migrate from Emotion CSS-in-JS to Stylify Utility-First CSS
Looking for a better way to manage your CSS in React? Learn how to migrate from Emotion CSS-in-JS…
Revision – 25/02/2023
1.When do we use UNION operator in SQL? We use UNION operator when we want to combine two…
How to: work on two or more folders at the same time in VSCode
Explanation Ever been in a situation where you’re front-end code and your back-end code are in different folders?…
How upload data in format JSON to Datastore from GCP?
⛵ Simple way to upload data in format JSON to Datastore from GCP. 🔗Related content You can find…
Deploying a MERN App to AWS Elastic Beanstalk with CI/CD
In the previous article “Automate MERN App Deployment with GitHub Actions CI/CD“, we learned till pushing images to…
Python Recursion Function Tutorial
Recursion is a technique in programming where a function calls itself repeatedly until a certain condition is met.…