Blog

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.

By olorunfemiakinlua · 4 min read · programming

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.

By olorunfemiakinlua · 4 min read · programming

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

By olorunfemiakinlua · 3 min read · programming

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

By olorunfemiakinlua · 2 min read · programming

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 …

By olorunfemiakinlua · 9 min read · programming

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 …

By olorunfemiakinlua · 3 min read · programming

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 …

By olorunfemiakinlua · 5 min read · programming