BLOG

Latest Articles

How to set SFTP umask in Linux? [100% Working]

In this tutorial I will share the steps to set umask for SFTP connections. I will not go into the details on what is umask and how to set umask in Linux. You

By omercakmak · 6 min read · Linux

Build Web Server using GO [Basics to Advanced]

Explore the remarkable world of Golang web server development. Uncover powerful strategies, essential tools, and best practices to optimize, secure, and …

By admin · 14 min read · GO

JavaScript Chain Functions Examples

In JavaScript, we have the ability to chain functions together, which can make code more readable and maintainable. Chaining functions is a technique that

By olorunfemiakinlua · 4 min read · JavaScript

JavaScript return Vs throw Error [SOLVED]

The return and throw are used to handle errors and exceptions in JavaScript, but they are used in different ways.

By olorunfemiakinlua · 5 min read · JavaScript

JavaScript convert String To Array [4 Methods]

There are different way to convert string to array in JavaScript using split() method, split("") method, Array.from() method, Spread operator ..., Destructuring …

By olorunfemiakinlua · 4 min read · JavaScript