This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command
$ docker-compose up -d
# To Tear Down
$ docker-compose down --volumes
Manual installation | |
1. copy dropbearmultin in /usr/sbin | |
2. create dropbearmulti aliases (call ./dropbearmulti) | |
Dropbear multi-purpose version 0.51 | |
Make a symlink pointing at this binary with one of the following names: | |
'dropbear' - the Dropbear server | |
'dbclient' or 'ssh' - the Dropbear client | |
'dropbearkey' - the key generator | |
'dropbearconvert' - the key converter |
#!/usr/bin/python | |
import time | |
import os | |
import Adafruit_CharLCD as LCD | |
# BeagleBone Black configuration: | |
lcd_rs = 'P8_8' | |
lcd_en = 'P8_10' | |
lcd_d4 = 'P8_18' |
cd /etc/modprobe.d/
sudo cp iwlwifi.conf iwlwifi.conf.bak
sudo vi iwlwifi.conf
# add this line without #
# options iwlwifi bt_coex_active=0 swcrypto=1 11n_disable=8
# and save
sudo reboot
source: https://wiki.debian.org/iwlwifi
import pandas as pd | |
from pdfrw import PdfReader, PdfWriter, PageMerge | |
from reportlab.pdfgen import canvas | |
# Load the names from the CSV file | |
names_df = pd.read_csv('names.csv') | |
# Path to your PDF template | |
template_path = 'template.pdf' |