0 8 min 4 mths

Alternatives To Typical Technical Illustrations And Data Visualisations

Alternatives To Typical Technical Illustrations And Data Visualisations Alternatives To Typical Technical Illustrations And Data Visualisations Thomas Bohm 2024-11-08T09:00:00+00:00 2025-03-04T21:34:45+00:00 Good technical illustrations and data visualisations allow users and clients to, in a manner of speaking, take time out, ponder and look at the information […]

Ux
0 16 min 5 mths

Designing For Gen Z: Expectations And UX Guidelines

Designing For Gen Z: Expectations And UX Guidelines Designing For Gen Z: Expectations And UX Guidelines Vitaly Friedman 2024-10-30T09:00:00+00:00 2025-03-04T21:34:45+00:00 Every generation is different in very unique ways, with different habits, views, standards, and expectations. So when designing for Gen Z, what do we need […]

Ux
0 11 min 5 mths

5 Ways to Manage Multiple Versions of PHP

Managing multiple PHP versions is a common challenge when developing PHP applications, where applications often require different versions due to varying framework dependencies and compatibility requirements. While switching between PHP versions can be daunting, especially at the system level, several tools can streamline this process. […]

Coding

Best Social Media Plugins for WordPress (2024)

0 10 min 7 mths

Let’s face it – getting your content noticed online can be tough. But what if you could make it easy for your visitors to share your posts across social media with just a click? That’s where the right social media plugins for WordPress come in. […]

Wordpress
0 6 min 7 mths

Laravel Development Environment Compared

When developing a Laravel application, having a reliable local development environment is as important as the code itself. A good local development environment can help you work more efficiently, test your code, and avoid potential deployment issues. There are several tools available within the Laravel […]

Coding
0 11 min 7 mths

Comprehensive Guide to CSS Pseudo-Classes and Their Usage

Whether you’re new to CSS or have years of experience, you’ve likely encountered pseudo-classes. The most commonly recognized pseudo-class is probably :hover, which allows us to style an element when it’s in the hover state, such as when a mouse pointer hovers over it. Building […]

Coding
0 24 min 7 mths

If I Was Starting My Career Today: Thoughts After 15 Years Spent In UX Design (Part 2)

If I Was Starting My Career Today: Thoughts After 15 Years Spent In UX Design (Part 2) If I Was Starting My Career Today: Thoughts After 15 Years Spent In UX Design (Part 2) Andrii Zhdan 2024-08-09T11:00:00+00:00 2025-03-04T21:34:45+00:00 In the previous article in my two-part […]

Ux
0 5 min 7 mths

Native CSS Masonry Grid

One popular layout style on the web is the masonry layout, often used in image galleries and portfolio websites to display images or items of varying sizes. Traditionally, creating a masonry layout required JavaScript libraries, such as the popular Masonry.js by DeSandro and MiniMasonry. However, […]

Coding
0 27 min 8 mths

If I Was Starting My Career Today: Thoughts After 15 Years Spent In UX Design (Part 1)

If I Was Starting My Career Today: Thoughts After 15 Years Spent In UX Design (Part 1) If I Was Starting My Career Today: Thoughts After 15 Years Spent In UX Design (Part 1) Andrii Zhdan 2024-08-02T11:00:00+00:00 2025-03-04T21:34:45+00:00 My design career began in 2008. The […]

Ux
0 2 min 8 mths

CSS Container Queries

In traditional responsive design, we rely on media queries to change styles based on the overall viewport size. This works well for adjusting layouts for different screen sizes, but it falls short when you need components to adapt based on their container’s size. To solve […]

Coding
0 5 min 8 mths

Snappy Scroll with CSS Scroll Snap

CSS Scroll Snap was introduced to allow you to define snap points for scrollable elements. It ensures that the scrolling lands precisely at the desired points. This new CSS feature is especially useful for creating carousels, slideshows, or any layout where you want to control […]

Coding
0 12 min 8 mths

Rethinking The Role Of Your UX Teams And Move Beyond Firefighting

Rethinking The Role Of Your UX Teams And Move Beyond Firefighting Rethinking The Role Of Your UX Teams And Move Beyond Firefighting Paul Boag 2024-07-29T18:00:00+00:00 2025-03-04T21:34:45+00:00 In my experience of building and supporting UX teams, most of them are significantly under-resourced. In fact, the term […]

Ux
0 5 min 8 mths

:where() – CSS: Cascading Style Sheets

Managing CSS can be tricky, especially when styles need to override each other. This often makes it hard to keep the styles in the right places. To simplify things, the :where selector was added in CSS. This is a special CSS selector that allows you […]

Coding