Latest Articles
Browse the latest tutorials, guides, and practical examples across Linux, DevOps, security, databases, and programming on GoLinuxCloud.
Explore the latest tutorials and guides across Linux, DevOps, programming, and more.
You can also browse content by category below:
- Linux: Commands, administration, troubleshooting, and system operations
- DevOps: CI/CD, Kubernetes, containers, and automation
- Programming: Coding tutorials, scripting, and development concepts
- Security: Ethical hacking, system security, and best practices
- Databases: MySQL, MariaDB, PostgreSQL, and database management
- Networking: Network setup, troubleshooting, and protocols
- Storage: Disk management, file systems, and storage solutions
- System Administration: User management, services, and system-level tasks
- Tools: Useful tools and utilities for productivity
- Cheat Sheet: Quick reference guides for commands and tools
- Interview Questions: Common interview questions with answers
2076 articles
Date Formatting in JS [SOLVED]
Different methods to perform date formatting in JS (JavaScript) using Intl.datetimeformat method.
JavaScript Bitwise XOR (^) Operator Usage Explained
The bitwise javascript XOR operator is represented by a caret (^) and also works on two values.
JavaScript slice() Usage Explained for Beginners
The javascript slice method returns a slice, or subarray, of the specified array. Its two arguments specify the start and end of the slice to be returned.
How to convert String to Boolean JavaScript? [SOLVED]
There are two methods to convert string to boolean in JavaScript. Use the Boolean method or use the ! operator to convert string to Boolean
Difference between calling and invoking a function in JS
So, to recap, the main difference between calling and invoking a function is that when you invoke a function you are also specifying the context in which the
How to detect ad block in JavaScript? [SOLVED]
For us to detect ad blockers we will need to implement a JavaScript file that will be triggered when the ad blockers stop the rendering of the bait html
How to send TAB key in JavaScript? [SOLVED]
Aside from the alphanumeric characters, different keys are used for numerous operations. Certain functions keys are used for help, documentation or running
How to sort by date in JavaScript? [SOLVED]
Use the sort method to sort by date in JavaScript
How to use math.ceil in JavaScript? [SOLVED]
The math.ceil function also referred as js math ceiling will round up the decimal to a whole number
How to wait 5 seconds in JavaScript? [SOLVED]
Use setTimeout to wait for 5 seconds in JavaScript
How to clear all timeouts in JavaScript? [SOLVED]
Use cleartimeout() to clear all timeouts in JavaScript
How to call a function every second in JS [SOLVED]
Learn how to call a function every second in JavaScript using powerful timing mechanisms like setInterval, enabling dynamic and interactive web experiences with …
insertBefore() JavaScript Method Tutorial
The insertBefore JavaScript method requires two parameters: the node to be inserted and the reference node in the document before which you would like the node …
Python function Return Multiple Values [SOLVED]
In this tutorial we learn how in python function return multiple values in different data types such as List, Tuple or Dictionary.
How to find elements in DOM in JavaScript? [SOLVED]
Use the document.getElementById() method, document.querySelector() method, document.getElementsbyTagName, document.getElementsbyClassName method to get elements …
