HTML: List in reversed order

Add the “reversed” attribute to the “ol” tag The reversed attribute is a boolean attribute.When present, it specifies that the list order should be descending (9,8,7…), instead of ascending (1, 2, 3…). Reference: HTML <ol> reversed Attribute

Why Do You Need PHP FastCGI Process Manager?

By Elvis Plesky; November 3, 2020 PHP-FPM (an acronym of FastCGI Process Manager) is a hugely-popular alternative PHP (Hypertext Processor) FastCGI implementation. As you may or may not know, PHP is one of the biggest open-source software programming languages utilized online. It features heavily in web development across such well-known platforms as Drupal, Magento, and WordPress, and was originally devised … Read more

Web Workers API

Web Workers makes it possible to run a script operation in a background thread separate from the main execution thread of a web application. The advantage of this is that laborious processing can be performed in a separate thread, allowing the main (usually the UI) thread to run without being blocked/slowed down.

Fetch API

The Fetch API provides an interface for fetching resources (including across the network). It will seem familiar to anyone who has used XMLHttpRequest, but the new API provides a more powerful and flexible feature set. … The fetch() method takes one mandatory argument, the path to the resource you want to fetch. It returns a Promise … Read more

Modern AJAX with fetch API

Fetch is the modern way to perform AJAX when working with JavaScript. Instead of writing cumbersome AJAX code or using libraries such as jQuery and Angular, the new JavaScript standard offers a more compact, modern, and flexible syntax.

Which is Best Local Server XAMPP or WAMP in 2021

Last updated on: July 4, 2022 by Digamber WAMP Vs XAMPP XAMPP is a cross-platform service, as it works with platforms like Mac, Linux, Windows, etc. That’s not the case with WAMP as it only works in Windows. You can easily configure and set up XAMPP compared to WAMP. XAMPP supports Perl, PHP, MySQL whereas … Read more

Basic HTML Meta Tags

<code> <meta charset=’UTF-8′> <meta name=’keywords’ content=’your, tags’> <meta name=’description’ content=’150 words’> <meta name=’subject’ content=’your website’s subject’> <meta name=’copyright’ content=’company name’> <meta name=’language’ content=’ES’> <meta name=’robots’ content=’index,follow’> <meta name=’revised’ content=’Sunday, July 18th, 2010, 5:15 pm’> <meta name=’abstract’ content=”> <meta name=’topic’ content=”> <meta name=’summary’ content=”> <meta name=’Classification’ content=’Business’> <meta name=’author’ content=’name, email@hotmail.com’> <meta name=’designer’ content=”> <meta name=’reply-to’ … Read more

HTML Computer Code Elements

HTML contains several elements for defining user input and computer code. <code> x = 5; y = 6; z = x + y; </code> HTML <kbd> For Keyboard Input The HTML <kbd> element is used to define keyboard input. The content inside is displayed in the browser’s default monospace font. HTML <samp> For Program Output … Read more

How and When to Apply Session Storage with JavaScript

When to use session storage Session storage can be used to check for the user’s authentication state. Users who are logged in can be redirected to the homepage. Unregistered users, on the other hand, are directed to the authentication page. Session storage also helps prevent certain actions. For instance, it helps bar some users from … Read more

Please Stop Using Local Storage

local storage is a new feature of HTML5 that basically allows you (a web developer) to store any information you want in your user’s browser using JavaScript. Unless you need to store publicly available information that: Is not at all sensitive Doesn’t need to be used in an ultra high performance app Isn’t larger than … Read more