Development

All posts filed under Development.

← Back to all posts
Development

How to add a custom domain to GitHub Pages

Step-by-step guide to pointing your custom domain to GitHub Pages, including DNS setup with A records and CNAME for GoDaddy, Namecheap, and HostGator.

February 2, 2023 · 4 min read
Development

Truthy and falsy values in JavaScript

In JavaScript, values like 0, empty strings, null, and undefined are falsy, while almost everything else is truthy. Here's how this affects your conditionals.

January 23, 2023 · 4 min read
Development

Strict vs loose equality in JavaScript

JavaScript has two equality operators: === checks both value and type, while == only checks value with type coercion. Here's when to use each one.

January 20, 2023 · 4 min read
Development

TypeScript vs JavaScript: what are the differences?

TypeScript adds static typing and compile-time checks on top of JavaScript. I break down the key differences and when each language makes more sense.

November 10, 2022 · 4 min read
Development

Junior developer: writing the perfect resume

Your CV is the first thing a recruiter sees, and it has about thirty seconds to land. Here's how to write a junior developer resume that actually gets you to the interview.

June 13, 2021 · 5 min read
Development

How to delete a database in phpMyAdmin

Step-by-step guide to dropping a database or a single table in phpMyAdmin, whether you're on XAMPP, WAMP, or a remote host.

August 3, 2019 · 4 min read