BLOG

Latest Articles

How to create, read, write and append to file in Go

Go languages allows developers to create, read and append to a file. In the Go standard library, there is the os package that provides the utilities needed to

By antonyshikubu · 8 min read · GO

Show Line Numbers in Vim [Absolute, Relative, Hybrid]

vim relative line numbers active using :set relativenumber and :set rnu. relative line numbers inactive using :set norelativenumber and :set nornu. relative …

By omercakmak · 3 min read · Tips and Tricks

Using Counter in Bash with Practical Examples

Using the + and – Counter Operators, Using the += and -= Counter Operators, Using the ++ and — Counter Operators in Bash

By omercakmak · 3 min read · Shell Scripting

JavaScript replaceWith() Method

To make use of the JavaScript replacewith method, we need to reference the element/node that we want changed and add the new element/node as an argument. Also, …

By olorunfemiakinlua · 3 min read · JavaScript