Tutorials

Step-by-step technical guides on Docker, Linux, Python, Go, and more.

Page 35 of 37

2 min readBeginner

How to make Kali Linux booteable usb on Windows

Learn how to create a USB Booteable on Windows for Kali Linux.

5 min readBeginner

nessuscli fetch --reset: Reset Nessus License and Fix Fetch Errors (2026)

Run nessuscli fetch --reset to reset your Nessus license on Linux. Covers --check, --deactivate, --unregister flags, nessus.license path (/opt/nessus/var/nessus), and "this installation is password-protected" fix.

3 min readBeginner

How to install and configure MySQL on Ubuntu 16.04

Follow this guide to installing MySQL on ubuntu 16.04. We also cover how to create a database user.

2 min readBeginner

How to install Java (Oracle) the proper way on Ubuntu 16.04

Find here the best way to install Oracle Java on Ubuntu 16.04.

6 min readIntermediate

Webassembly initial steps tutorial or how to start with wasm

Webassembly initial steps for the begginer. Learn how to setup the development environment with a simple example.

4 min readBeginner

How to serve Django application using uWSGI with Nginx

A tutorial that shows how to setup a Django app using uWSGI with Nginx.

2 min readBeginner

What is a virtualenv and how to install it?

Learn how to isolate a python application with virtualenv the easiest way.

1 min readBeginner

How to XZ a directory with TAR for maximum compression?

XZ is a lossless data compression algorithm that has the better compression ratio, learn how to use it on Linux here.

2 min readBeginner

How to undo last commit not pushed?

Here we explain how to undo or fix wrong commited files to Git that were not pushed to external repository.

3 min readBeginner

How to check that a file or directory exists with Python?

For checking if a file exists with Python 3 you can use the Path python3 Path class from pathlib module. The Path class has the method exists and is\_file. We also give some examples with Python 2 using the os.path.isfile function.