This post is going to show the usage of a API with a simple example, if you want to know about API read this article first " Application Programming Interface. " https://www.opensourcecook.in/blog/post/api/application-programming-interface

11 months 3 weeks ago
Application Programming Interface
API stands for Application Programming Interface. What it essentially means is a way to communicate with a system or application (software) to do certain operation without using the default interface provided by that application of system.

1 year ago
What is a CMS?
A CMS can be considered as a platform that lets you build and edit your website without needing to have programming knowledge. These types of Content Management Systems which are specifically designed to run on web-server or are accessible over internet or intranet are called Web Content Management Systems.

1 year ago
Drupal 10 - Updating
This post discusses about how to update the Drupal 10 Core. The update process is usually for updating the 'core' in the same series i.e. 10.x or 9.x etc. Upgrading is usually a reference to shifting from main core version to another i.e. 10 to 11.

1 year 1 month ago
jQuery - Highlight table row and column on cell selection
Using jQuery we can highlight a complete row as well as the HTML table column when the mouse moves over a particular cell i.e.

1 year 2 months ago
What is node js?
JavaScript is primarily known to be a client side scripting language. What if we could use JavaScript on the server itself. That way as a programmer you will be able to use your JavaScript skills not only on client side but also on the server side.

1 year 2 months ago
Node JS undefined in REPL
Why NodeJs REPL prints undefined?
We know that REPL stand for READ, EVALUATE, PRINT and LOOP. So when we use a NodeJS REPL, every line of code that we write is immediately processed or evaluated.

1 year 2 months ago
JavaScript var, let, const and hoisting
JavaScript allows us to declare variable using var, let and const. The last one const is simple and straight forward. Let start with that.

1 year 2 months ago
Manage services in Linux with systemctl
Systemctl: may be used to introspect and control the state of the "systemd" system and service manager. i.e. you can manage state of the daemons on your Linux system with this command line tool.

1 year 2 months ago
Drupal Module - Pathauto
If you find it difficult to manage the URL alias for every content you create with Drupal, then Pathauto module is for you. It can automatically generate URL alias for you based on a given pattern

1 year 2 months ago
jQuery - Creating a accoridan effect using jQuery
Senario: Accoridan effect basically is an idea where we have multiple paragraphs and their heading. Idea is to show a paragraph when the respective heading is clicked and all other paragraphs should be collapsed.

1 year 3 months ago
Adding jQuery code to Drupal via Asset injector.
n one of the previous posts I had discusses about this interesting Drupal module - Asset Injector which allows us to easily add CSS and JavaScript to our Drupal setup.
This post discusses about how you can add jQuery code to the same.