Skip to main content

blog

30 posts

When to Use an Abstract Class in Java

·4 mins
Abstract classes are used to provide some common functionality across a set of related classes while also allowing default method implementations.

The Developer's Guide to Browser Caching

·7 mins
I explain the how the browser uses its cache to load pages faster, which factors determine cache duration, and how we can bypass the cache when necessary..

View Source vs. Inspect Element

·2 mins
View Source and Inspect Element are two browser features that allow developers to look at the HTML for a particular page. Although their outputs can be the same, one should not assume they will be..