Analyzing Code With Code Detection API

The world runs on code. Nearly every single aspect of our lives is in some way, shape, or form handled by code. It may be hidden and running behind the scenes, but it is ever-present in our daily activities. Waking in the morning thanks to our alarm clock or phone app, consuming news and media… Continue reading Analyzing Code With Code Detection API

Best WordPress Importer Plugins

Your WordPress website contains a lot of data like user and customer information, sales, posts, products, images, media, reviews, comments, and so much more.  Consider the following common situations you may have to deal with at some point:  migrating your WordPress website from one hosting platform to another transfering customer information including sales, orders,… Continue reading Best WordPress Importer Plugins

How to Send Serverless Emails With Node.js

If you are running a Jamstack architecture, sometimes you will require additional functionality like sending transactional emails to your users. Sending emails requires a server, so you can make a simple serverless service with an endpoint that takes a few fields and sends off an email. It’s an excellent alternative that doesn’t require the maintenance… Continue reading How to Send Serverless Emails With Node.js

What Is JavaScript?

Technology is advancing rapidly and web development is no different. New tools and services are constantly coming into existence to help you build the next big thing. It’s great to have so much innovation in web development, but it can be very intimidating for people who are just starting out in the field and have… Continue reading What Is JavaScript?

How to Parse JSON in PHP

JSON, short for JavaScript Object Notation, is a common lightweight format for storing and exchanging information. As the name suggests, it was initially derived from JavaScript but it is a language-independent format for storing information. A lot of languages like PHP now implement functions to read and create JSON data. This tutorial will teach you… Continue reading How to Parse JSON in PHP

Real-Time Global Aviation Data With the aviationstack API

Aviation is among the most important global industries because it connects people and businesses across cities, countries, and continents. It is the only rapid transportation network that spans the world. However, aviation isn’t just about transporting people; today’s economy almost completely depends upon the timely delivery of goods and services. Major retailers rely upon the… Continue reading Real-Time Global Aviation Data With the aviationstack API

Get Real-Time Weather Data With the weatherstack API

“You can always talk about the weather.” It’s a cliched phrase, but regardless of a person’s personality, political views, or culture, the weather is a subject that anyone and everyone can talk about and find common ground. It’s the universal truth that binds humanity together. But the weather is more than that—it’s a force that… Continue reading Get Real-Time Weather Data With the weatherstack API

How to Use cURL in PHP

Today, we’re going to explore the cURL extension in PHP which allows you to make HTTP requests from your code. Often you need to communicate with external websites in your day-to-day PHP development. Whether it’s calling third party REST APIs to fetch data or downloading resources from the external website, you want a library which… Continue reading How to Use cURL in PHP

Example of How to Add Google reCAPTCHA v3 to a PHP Form

In this article, I’m going show you how to add Google reCAPTCHA v3 to a form on your PHP website. The latest reCAPTCHA is different than the previous versions—it doesn’t require user interaction at all. In this post, we’ll see how it works, and we’ll build a real-world example for demonstration purposes. As a website… Continue reading Example of How to Add Google reCAPTCHA v3 to a PHP Form

Real-Time News Data With the mediastack API

The demand for content on the web is stratospheric. You don’t have to produce your own content, but you do need to supply content that’s reliable.  To offer relevant, up-to-date content, you need a reliable, up-to-the-minute source of news data gathered from a wide range of popular sources from around the world, including CNN, MSNBC,… Continue reading Real-Time News Data With the mediastack API

Display the Latest News on Your Site With Mediastack

What an extraordinary year 2020 has been for the news! From the ongoing coronavirus crisis, to a turbulent US election, to the unrelenting march of Bitcoin, this year like no other we’ve been glued to our phones micro-analyzing every tidbit of news. Which makes this the perfect time for mediastack, an awesome REST API that… Continue reading Display the Latest News on Your Site With Mediastack

PHP Namespace Tutorial: The Basics

In this tutorial, I’ll go through the basics of namespaces in PHP. I’ll explain why you might need namespaces, and I’ll show you how to use PHP namespaces in your day-to-day development. More often than not, you will end up using third-party libraries from different vendors in your PHP applications. Now, there could be collisions… Continue reading PHP Namespace Tutorial: The Basics

MarketStack API – A One Stop Platform

2 Shares In simple words, MarketStack is an API that is stock related which returns for indices and stocks from all across the globe. MarketStack is a reliable source, which is trusted by more than thirty thousand companies as well as around a hundred universities all around the world. If you are unsure about MarketStack,… Continue reading MarketStack API – A One Stop Platform

Grab Free SSL Certificates From ZeroSSL

Like it or not, we’re slowly edging towards a two-tier web: those sites that are secure, and…everything else. There was a time on the web, when we didn’t have SSL certificates, and lots of people’s data got stolen. To address the problem, and regain users’ trust SSL certificates were introduced to secure sites handling sensitive… Continue reading Grab Free SSL Certificates From ZeroSSL

10 Tools I Can’t Design Without

No matter how skilled you are as a designer, you need tools. A surgeon can’t operate without a scalpel; the same goes for designers. To get the job done effectively, you need to right tools in your arsenal. Tools certainly don’t make the craftsman, but they do make your job easier (and mostly fun). There… Continue reading 10 Tools I Can’t Design Without

How to Install PHP in Ubuntu

Today, I’m going to show you how to install PHP in the Ubuntu OS. First, I’ll show you how to install the default stable version of PHP, and then I’ll show you how you can install other versions of PHP. PHP is a server-side scripting language which is mostly used to build web applications—these may… Continue reading How to Install PHP in Ubuntu

What Does PHP Stand For?

In this quick post, we’re going to discuss what PHP stands for and what you can build with it. If you are new to PHP, this article should help you to understand the basics. What Is PHP? PHP is an open-source, server-side scripting language which is mostly used to build web-based applications. You could use… Continue reading What Does PHP Stand For?

How to Create Your Own AJAX WooCommerce Wishlist Plugin

In this tutorial we will create lightweight wishlist functionality for WooCommerce using AJAX, WordPress REST API, and SVG graphics. WooCommerce doesn’t come with wishlist functionality as standard, so you’ll always need to rely on an extension to do the work for you. Unless you build it yourself for complete control.. Wish Upon a Star Wishlist… Continue reading How to Create Your Own AJAX WooCommerce Wishlist Plugin

Everything you need to know about Zenserp

It has become quite challenging to scrap search result pages from the various search engines. This is owing to the fact that all search engines, including Google, have put some strict regulation services in place for dealing with scraping SERPs programmatically. If you want to get around these restrictions, you need to use an effective… Continue reading Everything you need to know about Zenserp

What’s New for Designers, August 2019

Some of the new tools in this month’s roundup are designed for productivity and getting ahead, from a tool that converts text to speech to a font that’s made for the winter holidays. That’s the whole point of new tools – to make our design lives that much easier. Here’s what’s new for designers this… Continue reading What’s New for Designers, August 2019

How to Add Live Chat Complete in WordPress

Online shopping has revolutionized nearly every industry. Having a chat feature on your business website not only provides an avenue for customers to contact you, but it also helps build confidence and trust. A real-time chat feature on a website lets customers get instant answers to their questions or concerns, without having to make a… Continue reading How to Add Live Chat Complete in WordPress

File Upload With Multer in Node.js and Express

When a web client uploads a file to a server, it is generally submitted through a form and encoded as multipart/form-data. Multer is middleware for Express and Node.js that makes it easy to handle this multipart/form-data when your users upload files. In this tutorial, I’ll show you how to use this library to handle different file upload situations… Continue reading File Upload With Multer in Node.js and Express

8 New Ways to Refactor Your Code With Swift 4

Swift is one of the fastest-growing languages in history, due to its elegance, simplicity, and “safety by design”. In fact, Swift’s official mantra is “to make programming simple things easy, and difficult things possible”. In this post, you’ll learn how to use Swift to its fullest by refactoring your code. While a lot of the… Continue reading 8 New Ways to Refactor Your Code With Swift 4