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.
5 months 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.
5 months 2 weeks 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.
5 months 2 weeks 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.
5 months 3 weeks 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.
5 months 3 weeks 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.
6 months 1 week 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
6 months 1 week 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.
6 months 2 weeks 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.
6 months 2 weeks ago
MySQL login issues with root - Auth Socket vs Native Password
Many of us might have come across this issues of not being able to login as the MySQL 'root' user either from the command line or via the phpMyAdmin interface.
The reason to here is that the authentication for the MySQL 'root' user is set to "auth_socket" which basically means that MySQL will let the user login via the same (local)host it the user is already authenticated or logged in as the Linux/Unix user.
7 months ago
What is JavaScript
JavaScript is one the most commonly used scripting languages which primarily runs on you Web Browser. The primary use of JavaScript is to manipulate a HTML Page (along with CSS) based on users requirements (of course some has to program that!!).
8 months 1 week ago
Drupal Module - Admin Toolbar
The Admin Toolbar Module basically replaces the existing admin toolbar in Drupal 10 with a new toolbar with drop down menus for navigating to deeper links.