Abdrahman Oladimejirahmladtech.hashnode.dev·Jan 9, 2025The ‘It Works on My Machine’ TrapIntroduction React has revolutionized front-end development with its component-based architecture and robust ecosystem. However, developers often face a common issue: code that works flawlessly in development but breaks in production. This inconsiste...10 likes·26 readsReact
Muhammad Sufiyaninnosufiyan.hashnode.dev·Jan 3, 2025Using PM2 in Production: Advanced Cluster ManagementWhen we’re in development, PM2 is typically used sparingly—mostly for configuring and testing clusters periodically to ensure they remain functional after any changes. However, PM2 truly shines in production environments with live clusters. Let’s exp...Improving Node Performancepm2
Brett Rowberrybrettrowberry.com·Jan 2, 2025Hello, Production!When coding locally, a "Hello, World!" program demonstrates a functioning development environment. Deploying a minimal app to production ("Hello, Production!") demonstrates that the program runs in its intended environment. To eliminate uncertainty w...48 readshello production
Parasharam Durikarim-pd.hashnode.dev·Jan 1, 2025Kubernetes Installation Using KOPS on AWS-EC2Installing Prerequisite kubectl is required, see here. macOS and Linux From Homebrew brew update && brew install kops The kops binary is also available via our releases. GitHub Releases Linux curl -Lo kops https://github.com/kubernetes/kops/releases...AWS
Jadesola Adeagbojadesolaadeagbo.hashnode.dev·Dec 17, 2024Unit Testing vs. Integration TestingWhen I first started out as a developer, I didn’t understand why people tested applications. I mean, “If it works already, why do I need to write more code?”. This question lingered in my mind for a long time. After all, if I could run my application...10 likesunit testing
Dhairya Patelblog.dhairyapatel.in·Dec 14, 2024Deploying a Django WebSocket Application with Uvicorn, Nginx, and PostgreSQLIn this comprehensive guide, we'll walk through the process of deploying a Django application that uses WebSockets. We'll set up a production-ready environment using Uvicorn as the ASGI server, Nginx as a reverse proxy, and PostgreSQL as the database...1 like·57 readsDeploymentDjango
HueFoxhuefox.uk·Nov 8, 2024Video Font FreeElevate Your Designs with Video Font: The Ultimate 3D Typeface In the world of design, typography can make or break your visual storytelling. Enter Video Font, an exciting 3D font family that promises to elevate your creative projects to a whole new ...3d
Siddhant Gahlotsiddhant1.hashnode.dev·Oct 27, 2024Boost Productivity: Top 5 Python Scripts for a Streamlined WorkflowHere's a document outlining five production-level Python automation scripts that can enhance efficiency and reliability in various operational tasks. Each script is accompanied by a brief description, its purpose, and an example. Production-Level Py...Python
Darshit Anjariadarshitanjaria.hashnode.dev·Oct 25, 2024Mastering Memory Management in JavaScript: A Deep Dive into Garbage CollectionIntroduction In any programming language, managing memory efficiently is crucial to building high-performance applications. JavaScript, despite being a high-level language, handles memory management for you through a process called Garbage Collection...40 readsJavaScript
Darshit Anjariadarshitanjaria.hashnode.dev·Oct 21, 2024Shallow Copy vs Deep Copy in JavaScript: Understanding Object CloningIntroduction Have you ever wondered why changing a copied object in JavaScript also affects the original one? This strange behavior occurs when you don't realize you're dealing with a shallow copy rather than a deep copy. In JavaScript, objects and a...32 readsobject-cloning