Search Results

Results for "data extraction"

190 articles found

A laptop screen showing a complex spreadsheet transforming into a clean dashboard Google Cloud Platform
1 min read

BigQuery Saved Me From Excel Hell

My previous job involved analyzing CSV files. Gigabytes of them. Excel would crash. My laptop would overheat. I spent hours writing VLOOKUPs that took minu…

A laptop screen showing a complex spreadsheet transforming into a clean dashboard Google Cloud Platform
1 min read

BigQuery Saved Me From Excel Hell

My previous job involved analyzing CSV files. Gigabytes of them. Excel would crash. My laptop would overheat. I spent hours writing VLOOKUPs that took minu…

API integration concept APIs
1 min read

Working with APIs in Python

APIs (Application Programming Interfaces) allow different software applications to talk to each other. Many services provide APIs to let developers access…

Web form with validation messages HTML/CSS/JS
1 min read

Form Validation: HTML5 vs JavaScript

Forms are the gateway to user data, and validating that data is crucial. You have two layers: client-side validation (for UX) and server-side validation (f…

A scale heavily tipped to one side with data points Machine Learning
1 min read

The Struggle with Imbalanced Datasets

Imbalanced datasets are the bane of my existence. You have a million examples of one class and only a hundred of the other. The model just gets lazy and pr…

Encryption key management AWS
1 min read

AWS KMS: Managing Encryption Keys

Key Management Service lets you create and manage encryption keys. I use it to encrypt S3 buckets, EBS volumes, and RDS databases. KMS integrates with many…

A cloud made of smoke hovering over a green forest with server racks visible Environment
1 min read

The Environmental Cost of AI Agents

We talk a lot about how cool AI is, but rarely about the energy it consumes. Running large language models and AI agents takes massive data centers that gu…

Object oriented programming concept Object-Oriented Programming
1 min read

Object-Oriented Programming in Python

Object-oriented programming (OOP) is a paradigm that organizes code around objects rather than functions. Python is an OOP language from the ground up. A c…

Software testing concept Testing & Debugging
1 min read

Testing Your Python Code with unittest

Testing is an essential part of professional software development. It ensures your code works as expected and catches bugs before they reach production. Py…

Kotlin programming language logo and code JVM Languages
1 min read

Kotlin vs. Java: A Coexistence Story

When Kotlin first came out, I thought it was just a fad. But after Google made it first-class for Android, and I saw my colleagues writing less boilerplate…