Software Engineering Perspectives Articles

Sorted By: Most Recent
Siddhant Khare Siddhant Khare
Updated on September 10, 2024

Bypass AWS API Gateway Limits Using S3 Presigned URLs

Amazon S3 presigned URLs allow users to securely bypass the API Gateway limit to upload large files securely. Here’s how to do it.

Image: Shutterstock / Built In
Rakia Ben Sassi Rakia Ben Sassi
Updated on September 10, 2024

Compiler vs. Interpreter in Programming

Compilers and interpreters are used to convert a high-level language into machine code. However, there are differences between how and when they work.

Image: Shutterstock / Built In
Yang Zhou Yang Zhou
Updated on September 09, 2024

Python: How to List Files in Directory

In this tutorial, you will learn 5 ways in Python to list all files in a specific directory. Methods include os.listdir(), os.walk(), the glob module and more.

Image: Shutterstock / Built In
Indhumathy Chelliah Indhumathy Chelliah
Updated on September 06, 2024

How to Remove Characters From a String in Python

Using string methods, filter and regexes, here are five different ways to remove specific characters from a string in Python.

Image: Shutterstock / Built In
Swastik Baranwal Swastik Baranwal
Updated on September 05, 2024

STD::Optional in C++: A Guide

std::optional is a feature in C++ that can distinguish optional values in a type-safe manner to make code more readable and consistent. Learn more.

Image: Shutterstock / Built In
Matías Hernández Arellano Matías Hernández Arellano
Updated on September 05, 2024

What Are TypeScript Type Predicates?

TypeScript type predicates determine whether an object has a specific property, enabling type narrowing to make code more readable. Here’s how it works.

Image: Shutterstock / Built In
Matthew Urwin Matthew Urwin
Updated on September 05, 2024

What Is a Digital Twin?

An overview of the technology that’s reshaping manufacturing and aerospace.

Image: Shutterstock / Built In
Frank Roe Frank Roe
Updated on September 05, 2024

The Software Industry Is Facing an AI-Fueled Crisis. Here’s How We Stop the Collapse.

Software companies face tremendous pressure to deliver products quickly, but too many AI-based tools create low-quality code. Our expert offers a better vision for the field.

Image: Shutterstock / Built In
Nikita Nikitins Nikita Nikitins
Updated on September 04, 2024

Code First Approach vs. Database First Approach: Which Is Best?

Code first and database first are two approaches to developing a database to work in Entity Framework. Learn which one is best for you.

Image: Shutterstock / Built In
Harshil Patel Harshil Patel
Updated on September 04, 2024

Quicksort Algorithm: An Overview

Quicksort is a sorting algorithm that uses a divide-and-conquer strategy to split and sort an array. It has a time complexity of O nlogn.

Image: Shutterstock / Built In