Tutorials Index Page 2
Nginx improve TTFB latency tutorial
In this tutorial, we are going to explain how to improve page speed when using nginx. The article focuses on TTFB (Time to first byte) to improve google page speed. We will focus on nginx using HTTPS. Check our tutorial to fix the TTFB issue.
How to enable nginx enable gzip
Follow this guide to enable compression using gzip. By default nginx compresses response with text/html mime type. Using
How to push docker image to gitlab registry using gitlab CI
In this tutorial, we are going to explain how to automatically build and push docker images using gitlab CI. The tutorial will cover best practices and how to create a docker image with gitlab ci.
Youtube api: download all videos from channel
In this tutorial, we are going to explain how to use YouTube API to fetch all videos on a channel.
How to find the lasrgest file in a directory recursively using du command
To find the largest file in a directory use the command: sudo du -a / 2>/dev/null | sort -n -r | head -n 20, please check here for more information
golang open file and iterate lines
In this tutorial, we are going to explain how to parse a file with go and iterate lines of a file.
How to disable Kali Linux auto-update
Follow this steps to disable apt-get auto updates for Kali: open dconf-editor, then go to org -> gnome -> software, Select 'download-updates'. Finally Scroll down until the end and set
Golang: convert rune to int
Convert a rune to an int using int(rune - '0'). Read our article for more information
How to update package.json libraries to the latest version>
package.json contains information about your project, to update libraries automatically you can use