Skip to content

Instantly share code, notes, and snippets.

View drexlma's full-sized avatar
🌴
On vacation

Daniel Drexlmaier drexlma

🌴
On vacation
View GitHub Profile
@drexlma
drexlma / gist:8d0b9ed0eb8d729266b66641aadf824a
Created December 12, 2019 11:44 — forked from mtigas/gist:952344
Mini tutorial for configuring client-side SSL certificates.

Client-side SSL

For excessively paranoid client authentication.


Updated Apr 5 2019:

because this is a gist from 2011 that people stumble into and maybe you should AES instead of 3DES in the year of our lord 2019.

some other notes:

@drexlma
drexlma / zeugs
Last active November 25, 2019 13:45
sudo dd if=/dev/sdb of=./sdb.raw
VBoxManage convertdd sdb.raw sdb.vdi --format VDI
$ VBoxManage clonehd sdb.vdi sdb.raw --format RAW
sudo dd if=./sdb.raw of=/dev/sdb
@drexlma
drexlma / gist:7e9d2680bd8d40d56301bb3d275955cb
Last active March 31, 2019 11:06
OS-Upgrade for all Docker Container
for container in `docker ps -q`; do
docker inspect --format='{{.Name}}' $container;
docker exec -it $container date;
docker exec -it $container apt-get update;
docker exec -it $container apt-get upgrade;
done
@drexlma
drexlma / Controller-Incection
Created April 2, 2017 18:10 — forked from langhard/Controller-Incection
TYPO3 - CMS - Extbase - PersistenceManager
/**
* @var \TYPO3\CMS\Extbase\Persistence\PersistenceManagerInterface
* @inject
*/
protected $persistenceManager;