60 Articles
157333 Words
What Happened to UUIDv2?
January 15, 2023
computer scienceYou may have heard that "UUIDv2 is bad". Maybe you've never even heard of them and thought UUIDs went from v1 to v3. Why is that? What did UUIDv2 do wrong?
What are UUIDs?
January 14, 2023
computer scienceWhen discussing ID generation in software, you may have heard of a UUID. What are they? Are they useful? What are the different versions? Let's explore that.
Angular Internals: How Reactivity Works with Zone.js
January 2, 2023
angularjavascriptReactivity is core to JavaScript frameworks; changing data should cause a re-render. How does this work in Angular? Let's dive into the Angular source code to see.
Why is z-index not working?! - Explaining CSS Stacking Context
October 6, 2022
webdevcsshtmlz-index is a CSS property that helps control the z-axis height of an element, but it often doesn't seem to work. Why is that? How does it REALLY work?
How to Share Lifecycle Methods Between Components in Angular
August 20, 2022
angularjavascriptwebdevSharing code between components in Angular is TOUGH. Here's one way you can do so by utilizing base components that you extend - and why you shouldn't use them.
JavaScript Fundamentals: Functions Are Values
July 28, 2022
webdevjavascriptJavaScript functions are widely used in web development... but do you KNOW them? Let's explore the fundamentals and how they can be used in unorthodox ways
A Guide to Python's Secret Superpower: Magic Methods
June 8, 2022
pythonlinter.Today, we’ll be talking about a few things:We also have a cheat sheet for utilizing these magic methods quicker within your projects:Downlo...
The Complete Guide to Regular Expressions (Regex)
April 17, 2022
regexcomputer scienceA Regular Expression – or regex for short – is a syntax that allows you to match strings with specific patterns. Think of it as a suped-up text search