Software Engineering Articles

Sorted By: Most Recent
Josias Hartmann Josias Hartmann
Updated on November 12, 2024

4 Tips for Using Chatbots in Your Business

Chatbots can handle more business processes than you think. Here’s what to consider.

Image: Shutterstock / Built In
Odumosu Matthew Odumosu Matthew
Updated on November 11, 2024

Understanding “Using Namespace STD;” in C++ and Better Alternatives

In C++, the line “using namespace std” signals to the compiler to treat all names in the std like they’re from the global namespace. Here’s why that’s an issue.

Image: Shutterstock / Built In
Jayanth Somineni Jayanth Somineni
Updated on November 11, 2024

How to Make API Calls in React With Examples

An API call in React refers to making a request to a web API from a React application. We can make an API call with: XMLHttpRequest, Fetch API or Axios.

Image: Shutterstock / Built In
Kay Jan Wong Kay Jan Wong
Updated on November 11, 2024

Python Multithreading vs. Multiprocessing Explained

Multithreading and multiprocessing are two ways to achieve multitasking in Python. Learn the difference between them, when to use them and how to implement.

Image: Shutterstock / Built In
Dario Radečić Dario Radečić
Updated on November 08, 2024

Pip Install Specific Version: A Guide

Pip allows users to install a specific version of a Python package using the pip install == command. Here’s how.

Image: Shutterstock / Built In
John Au-Yeung John Au-Yeung
Updated on November 07, 2024

How to Loop Through JavaScript Associative Arrays

There are three common ways to loop through a JavaScript associative array object, including the for-in loop, object.entries with forEach and the for-of loop. Here’s how.

Image: Shutterstock / Built In
Sukanta Das Sukanta Das
Updated on November 06, 2024

How to Set Up TypeScript in an Express App

TypeScript can be used to build an Express app through a tsconfig.json file, which provides a series of compiler files. Here’s how to set it up.

Image: Shutterstock / Built In
Gul Ershad Gul Ershad
Updated on November 06, 2024

Sliding Window Algorithm Explained

The sliding window is a data structure technique that transforms two nested loops into a single loop within an array or list. Learn more with examples.

Image: Shutterstock / Built In
Mrina Sugosh Mrina Sugosh
Updated on November 06, 2024

10 Tips to Manage Technical Debt

Technical debt is the bane of almost every software engineering project. Left unchecked, it can derail any product with bugs and inefficient code. Here’s how to keep it in check.

Image: Shutterstock / Built In
Abdullah Bashir Abdullah Bashir
Updated on November 05, 2024

Prisma Build “Environment Variable Not Found: DATABASE_URL” Error Solved

Prisma “environment variable not found: DATABASE_URL” error occurs when there’s a disconnect between the schema and the environment variables. Learn to solve it.

Image: Shutterstock / Built In