Categories
books

varnish 6 by example pdf download

Varnish_6_by_Example.pdf download Source: Varnish website: Varnish cache by example

Categories
book reviews

How to Access Z-lib now that the internet domains have been seized?

*Update 04-07-2025: The portal has closed down. One can view the official z-lib x account and new clearnet domain at: https://z-library.gs/. Tor domains below are still up however login may not work (returns No available domains were found) and cannot verify them. Another option is https://library-access.sk/. Update 01-09-2023: Z-lib has a portal with many ways […]

Categories
python

Ubuntu 22.04 + Firefox + Selenium + Geckodriver: Connection refused

The Ubuntu 22.04 + Firefox with Selenium and Geckodriver problem is: selenium.common.exceptions.TimeoutException: Message: Connection refused (os error 111) An older firefox version was installed from source after looking at geckodriver’s supported platforms docs… Environment details: $ firefox –version Mozilla Firefox 89.0.2 $ geckodriver –version geckodriver 0.29.1 (970ef713fe58 2021-04-08 23:34 +0200) selenium 3.14.1 Example script: from […]

Categories
git

How to migrate a git repo to gogs?

Gogs is a self-hosted git server that describes itself as: Gogs a painless self-hosted git service How to Migrate a Git Repo to Gogs To migrate a git repo to gogs – the process is to clone the repo in mirror mode and then push it to gogs in mirror mode. This method will work […]

Categories
python

Python Performance: Checking a collection contains a value (Membership)

A common task in programming and development is finding items that exist already or recognising duplicates. This is done by checking membership of an element in a collection. Often a list is used as it is mutable (can be changed and items added to it) and it is suited for single items. However there are […]