source



Conventional commits

  • avatar
  • 1.8K Views
  • 15 Likes
  • 3 mins read
Preview post image

The Conventional Commits specification is a lightweight convention on top of commit messages. It provides an easy set of rules for creating an explicit commit history; which makes it easier to write automated tools on top of.

The commit message should be structured as follows:

<type>[optional scope]: <description>

[optional body]

[optional footer]

Transistors: the building blocks of our digital world

  • avatar
  • 874 Views
  • 7 mins read
Preview post image

Transistors are semiconductor devices that regulate the flow of electrical current within a circuit. Their invention in the mid-20th century marked a pivotal moment in electronics. Semiconductors, typically made of silicon or germanium, form the basis of transistors, granting them the ability to switch and amplify electrical signals. These devices have revolutionized the world of electronics, making way for the digital age by enabling the miniaturization of complex circuits and facilitating the rapid advancement of technology.

Sync local and remote directories with Rsync

  • avatar
  • 815 Views
  • 1 Like
  • 4 mins read
Preview post image

Rsync is a very flexible network-enabled syncing tool. Due to its ubiquity and its popularity as a tool for system scripts, it's included on most Linux distributions by default. It efficiently copies and sync files to or from a remote system. It’s faster than scp because rsync uses a remote-update protocol which allows transferring just the differences between two sets of files. The first time, it copies the whole content of a file or a directory from source to destination but from next time, it copies only the changed blocks and bytes to the destination.

 Join Our Monthly Newsletter

Get the latest news and popular articles to your inbox every month

We never send SPAM nor unsolicited emails

Downloading and installing Node.js and NPM

  • avatar
  • 841 Views
  • 1 Like
  • 4 mins read
Preview post image

NPM stands for Node Package Manager, which is an application and repository for developing and sharing JavaScript code. To publish and install packages to and from the public NPM registry or a private NPM registry, you must install Node.js and the NPM command line interface using either a Node version manager or a Node installer.