Navigate go up one directory in Python using paths. by Sick Codes April 24, 2020 - Updated on June 24, 2020 0 import os from os.path import basename path = "." path = os.path.realpath(path) path = path If you want to know ...
Install MITM Proxy on ANY Linux (the EASY & PROPER way!) Man in the Middle Proxy Server for Arch Linux by Sick Codes April 18, 2020 - Updated on June 24, 2020 0 The best way to install Man in the Middle proxy for Arch Linux is using pipenv. This is because Arch ...
Change git username and email on your machine (Global and Locally) by Sick Codes April 16, 2020 - Updated on June 24, 2020 0 You can view your current username and email address using git config git config --list You can change your git ...
UBUNTU/CENTOS: Update MySQLMariaDB to ANY Version on VestaCP CentOS 7/8. 10.2, 10.4, 10.5, 10.6, 10.x by Sick Codes April 15, 2020 - Updated on September 2, 2021 0 Replacing the stock MariaDB/MySQL version in VestaCP with a newer version. I updated mine because I wanted to use the ...
Pandas to SQL: Flatten JSON from Requests using Pandas (Multiple methods!) by Sick Codes April 14, 2020 - Updated on June 24, 2020 0 Converting JSON to MySQL can be achieved in multiple ways, in this article we will look at three important ways ...
How to Check if SELinux is Enabled or Disabled Ubuntu, CentOS by Sick Codes April 12, 2020 - Updated on June 24, 2020 0 Literally one command: getenforce
Take Terminal Screenshots Inside Docker Container! Scrot + imcat by Sick Codes April 11, 2020 - Updated on June 24, 2020 0 Find yourself taking screenshots inside a selenium container? You can view those files in the terminal too (like ASCII art, ...
RUN Wine/Windows Inside Docker! Autoclick, winetricks, Save-As, DotNet45, .NET46! by Sick Codes April 11, 2020 - Updated on June 24, 2020 3 To install wine and winetricks inside a docker, you need a fake X display server for winetricks to finish installing. ...
Xfce inside Docker! Virtual Display Screen Inside Your Headless Container! by Sick Codes April 11, 2020 - Updated on June 24, 2020 1 Want to have a virtual display running inside docker? You will need xvfb which is an 'X virtual frame-buffer' display ...
Install Nginx on CentOS 8 & RHEL 8 by Sick Codes February 11, 2020 - Updated on June 24, 2020 0 You first need to install the epel-release package and then install nginx package: yum install epel-release -y yum install nginx ...