}

Tutorials Index Page 13

beginner

Analysis of travel salesman problem

Travel salesman problem (TSP) is a very well know computer science problem which is really easy to understand but it's a NP-hard problem. The problem is about finding te shortest possible route that visits each city and returns to the origin. Here we analyze the problem and variants of it.

beginner

Things you should knwo about javascript to become a better software developer

How to improve as a javascript developer. If you are an intermediate programmer and stuck at your level try to read this article and study the ideas here with more details.

beginner

Clone all repositories of a git server (works for gitolite, bitbucket, gitlab)

Check this tutorial to learn how to clone all git repos for gitolite, bitbucket or gitlab. We are going to show you bash code to clone all repositories of your username.

beginner

Reliable reverse ssh tunnel that avoids connection lost

Have you ever use SSH tunnel from work to avoid firewalls? If yes, you probably lost ssh connection which casues to lose the connection to your server or machine. To solve this issue we use autossh with will reconnect on conneciton lost, check this tutorial to use it as a reverse ssh tunnel

beginner

beginner

How to check if a string contains a specific word in PHP?

We explain different ways to search for a string inside a variable with php. Many approaches are used.

beginner

How to find all files containing specific text on Linux? (grep, ack and ag usage examples)

Have you ever struggle to use the command *find* in linux and it doesn't work as expected? Here we explain the proper way of finding text in multiple files. We also show you the fastest tool to search in git repositories.

beginner

How to check out a remote Git branch?

To checkout a remote branch you need first to do git fetch. Check this tutorial to learn with more details how to checkout remote branch with git.

beginner

How to remove Nouveau kernel driver (fix Nvidia install error)

When installing official Nvidia drivers you will get an error "The Nouveau kernel driver is currently in use by your system". In this brief tutorial we explain how to disable the Nouveau driver.

beginner

AMD Video card not detected after bios mod (rx470, rx480,rx570,rx580 affected models)

For cryptocurrency mining it's very common to modify the bios to improve hashrate performance on AMD video card. With latest AMD drivers the card will not be detected since thew BIOS checksum will not be valid. We explain alternatives to continue using your card with bios mod in this article.