Software Development


How to Build an Internet Speed Tester Using Python

A tutorial on building an Internet Performance and Network Speed Tester.

pythoninternetprogramming

Import Existing VPCs and Subnets into a CDK Python Project

programmingawssoftware-development

Capture Video Footage from a Webcam using OpenCV Python

Python projects for beginners. Webcam access using python.

pythonopencvsoftware-development

Learn How to Use the `__gt__()` Method in Python

Exploring the dunder method `__gt__()` in Python.

pythonpython3programming

3 Different Ways to Import Modules in TypeScript

Recently, I have been learning TypeScript (an open-source language that builds on JavaScript) by creating a few applications. One of the things I needed to learn was how could I import modules and it…

typescriptjavascriptcoding

GraphQL Queries in Python

Taking a script from rough sketch to maintainable production code.

pythongraphqlprogramming

AWS ECS Cluster using the EC2 Launch Type

The diagram below shows you what exactly I will create in this tutorial. I will create a cluster in one region spreading instances across three availability zones. All instances will be isolated…

awsprogrammingcloud-computing

A Comprehensive Guide to Python Application Servers

web and wsgi/asgi servers

pythonprogrammingsoftware-development

4 Reasons Why ‘var’ is Considered Obsolete in Modern JavaScript

JavaScript is a powerful language because you can write an entire software without adopting any other programming language at all. var used to be a way to declare variables in JavaScript. However…

software-developmentprogrammingjavascript

How to Make the React useEffect Hook Not Run on Initial Render?

We can make the React useEffect callback not run on the first render by creating a ref that keeps track of whether the first render is done. Then we can check the ref’s value to see when the first…

javascriptreactweb-development