Best Video Editors for YouTube Beginners

The YouTube creator community has witnessed exceptional growth since the introduction of the video streaming platform. If you are starting your YouTube journey, you need a good companion with a video editor. There are dozens of video editors for the Mac platform. Among them, we have picked up the five best YouTube video editors for… Continue reading Best Video Editors for YouTube Beginners

The Olympics and the evolving ideology of sustainability

[unable to retrieve full-text content] Source: Karen Christoph on Dribble The Olympic Games, at least the ones held in the past, used to symbolise extravagance and wastefulness. That was until the 1992 Olympics held in Barcelona, where sustainability was a critical factor. Since then, there has been an increasing relevance to making sure this event was… Continue reading The Olympics and the evolving ideology of sustainability

How to Make your First App in Java

Are you a budding developer who knows the basics of Java and wants to make their first app using Android Studio? With PlayStore currently hosting 2.89 million Android apps and growing every minute, it is a great decision to learn and eventually master Android apps development. Get Started With Android Studio To make an android… Continue reading How to Make your First App in Java

How to Enable or Disable a Button With JavaScript: jQuery vs Vanilla

In this article, we’ll discuss how you can enable or disable a button with JavaScript. First, we’ll go through how it works in vanilla JavaScript and later on we’ll see how to do it with jQuery. JavaScript is one of the core technologies of the web. The majority of websites use it, and all modern… Continue reading How to Enable or Disable a Button With JavaScript: jQuery vs Vanilla

What is UX Design?

UX Design has become one of the top professions of the decade, with UX Designers having some of the most sought after skills in the job market according to LinkedIn. This is because design continues to show its impact on the success or failure of products and services. As a result, the demand for confident,… Continue reading What is UX Design?

Create a Unique Scrolling Website With Locomotive Scroll & Tailwind CSS

Have you ever wanted to build a unique single-page scrolling website yet didn’t know where to start? If so, don’t worry! Today we’re going to create together such a website. To achieve this, we’ll take advantage of Locomotive Scroll, a small and easy-to-use JavaScript library for cool scrolling effects. Plus, to speed up the development… Continue reading Create a Unique Scrolling Website With Locomotive Scroll & Tailwind CSS

How to Change the URL in JavaScript: Redirecting

In this quick article, we’ll discuss how to change the URL in JavaScript by redirecting. We’ll go through a couple of different ways that you can use to perform JavaScript redirects. JavaScript is one of the core technologies of the web. The majority of websites use it, and all modern web browsers support it without… Continue reading How to Change the URL in JavaScript: Redirecting

How to Use Android Studio?

Every app that you see on your phone is created on an Integrated Development Environment (IDE). Android Studio is the official IDE for creating Android Apps. It is also the most used IDE and most apps that you use on your Android phone are created with Android Studio. Want to make your first Android app… Continue reading How to Use Android Studio?

Better Focus Styles with CSS Pseudo-Class :focus-visible

In this quick tip I’m going to show you how to create better focus styles on form elements with a CSS pseudo-class called :focus-visible.  Or, in plain English, I’m going to show you how to get rid of this blue outline the right way: CSS Pseudo-Class :focus-visible Check out the video below, subscribe to the… Continue reading Better Focus Styles with CSS Pseudo-Class :focus-visible

How Artwork Flow Can Help You Achieve 50% Faster Time to Market With Packaging Artwork Management?

The packaging and artwork development process is under pressure to deliver an increasingly short duration. In a market of reduced consumer spending, extended resource costs, and dramatically increased sustainability interests, brands are looking for alternatives to efficiently manage the complexities of the packaging and artwork management process. Artwork Flow makes it easy to manage a brand’s… Continue reading How Artwork Flow Can Help You Achieve 50% Faster Time to Market With Packaging Artwork Management?

Using the PHP Switch Statement

In this article, we’ll discuss the basics of the switch statement in PHP. Along with the syntax of the switch statement, we’ll also go through a couple of real-world examples to demonstrate how you can use it. What Is the Use of the Switch Statement? In PHP, the switch statement is considered as an alternative… Continue reading Using the PHP Switch Statement

How to Make Android Apps for Beginners

Are you a new developer learning Java? Read ahead to learn how to make your first Java Android app as a beginner. Creating a mobile application is a big step towards turning your idea into reality. But the primary concern among new developers is how to make an Android app with all the resources at… Continue reading How to Make Android Apps for Beginners

Understanding PHP Constructors

In this article, we’re going to discuss the basics of constructors in PHP. You’ll learn the purpose of PHP constructors and how to use them. What Is a Constructor? Here’s the official definition: Constructors are ordinary methods which are called during the instantiation of their corresponding object. As such, they may define an arbitrary number… Continue reading Understanding PHP Constructors

Is It Time to Reset HTML?

HTML is one of the foundational building blocks of the Web. But just as web design best practices and techniques change over time, so does the code we use. As HTML evolves, some of its older markup has been deprecated while other parts have been repurposed. Does that create more problems for us, though? Would… Continue reading Is It Time to Reset HTML?

How to Build a Simple REST API in PHP

In this tutorial, I’ll teach you how to build a simple REST API with PHP and MySQL. REST has become the de facto standard when it comes to exposing data via APIs and building web services. In fact, most web applications these days access and expose data via REST APIs. With the popularity of front-end… Continue reading How to Build a Simple REST API in PHP

Crash Course in the PHP Ternary Operator With Examples

In this article, we’ll discuss the ternary operator in PHP. Along with the syntax, we’ll go through a couple of real-world examples to understand how it works. What Is the Ternary Operator? The ternary operator (? and :) is a conditional operator which allows you to execute a condition, and based on the result of… Continue reading Crash Course in the PHP Ternary Operator With Examples

SVG Viewport and viewBox (For Complete Beginners)

In this quick SVG viewport and viewBox tutorial, we’re going to break down exactly what viewport and viewBox are in SVG for the web. You’ll learn: The difference between the viewport and viewBox The aspects of your SVGs you can control with each How they are each applied Let’s begin! SVG Viewport  If you literally… Continue reading SVG Viewport and viewBox (For Complete Beginners)

6 Ways Parallax Still Works in 2021 

Parallax is a term that is applied loosely and frequently in the world of web design. As a trend, it has been popular and unpopular in equal measures for some time. However, it’s still one of the most valuable tools for animation in the digital world. Parallax creates an illusion of depth when scrolling, a… Continue reading 6 Ways Parallax Still Works in 2021 

Microcopy: an essential guide to becoming a more literate designer

[unable to retrieve full-text content] Illustration by David Hall Designers should not be mere decorators, but have an understanding of language and microcopy, a crucial design skill, now more than ever. Look at these two images: Onboarding screen A and B The obvious difference between these two onboarding visuals is that option A is devoid of words and is… Continue reading Microcopy: an essential guide to becoming a more literate designer

How to Increase max_execution_time in PHP

In this quick article, we’ll explore the different options that allow you to increase the maximum amount of time a script is allowed to run before it’s terminated by a the parser in PHP. What is the max_execution_time Directive in PHP? The max_execution_time directive sets the maximum amount of time a script is allowed to… Continue reading How to Increase max_execution_time in PHP

Create Beautiful WordPress Pages with Optimized Images Using Elementor and ImageEngine

WordPress powers nearly 40% of all websites, thanks to its commitment to making publication possible for everyone, for free. Combined with premium plugins and themes, it’s possibly the ultimate tool for building attractive, unique, and feature-rich websites without any coding or design experience. However, you do pay the price for this experience, with WordPress and… Continue reading Create Beautiful WordPress Pages with Optimized Images Using Elementor and ImageEngine

How to Work With Regular Expressions in PHP

In this article, we’ll go through the PHP functions that allow you to use regular expressions to perform search and replace operations on strings. What Is a Regular Expression? Regular expressions—also called “regex”—are search patterns for text. These patterns can be processed by a regex engine to find substrings, validate that a string matches a… Continue reading How to Work With Regular Expressions in PHP

44 Best Vintage Script Fonts (Retro Calligraphy and Cursive Styles to Download)

Vintage script fonts come in a wide variety of styles to suit every project and need. If you’re in the market for vintage fonts, check out this list of the best vintage script fonts from Envato Elements and GraphicRiver. Unlimited Font Downloads From Envato Elements Both Envato Elements and Graphic River offer high-quality vintage script… Continue reading 44 Best Vintage Script Fonts (Retro Calligraphy and Cursive Styles to Download)

PHP Superglobals Explained—With Cheatsheet

In this post, I’ll give you a cheatsheet quick reference to all the PHP superglobal variables available in PHP. What Is a Superglobal Variable? Let’s have a look at the definition of superglobal variables. Superglobals are built-in variables that are always available in all scopes. Whether you are a seasoned PHP developer or a novice… Continue reading PHP Superglobals Explained—With Cheatsheet