Home

Gnu parallel basic usage

Introduction to GNU Parallel parallel is a GNU utility that allows you to run processes simultaneously, sending them to different CPU cores, threads or even other hosts to be runned. There are millions of use cases for this, and it is incredible useful when you need to process tasks that are CPU intensive or network intensive , or you are just...

Read more

Type checking in bash and correct argument handling

Type checking in bash and correct argument handling I just want to write a quick tutorial, after stumbled with yet another stone in the path, so you don’t have to (although chances are that if you have landed in this article you may have probably looked for an answer already). Bash is an sripting language, but its full interoperability outside...

Read more

Javascript Intermediate 11 - Traversing the Javascript standard-library Object Model

First of all there is not a clear definition of Standard-Library for Javascript as it depends on the context of execution that varies a lot , depending if you are running it on a Browser, or on a container such as node.js we will be using the later one. The global object is binded to globaThis So you can see all of the Global Objects derived fr...

Read more