For educational reasons I've decided to create my own CA. Here is what I learned.
Lets get some context first.
| /* pixieset.com full size image scraper | |
| * | |
| * Rips all images in highest quality | |
| * | |
| * To use, scroll to the very bottom of the album and press F12 then paste the below snippet in and press enter. | |
| * The full file list will be copied to your clipboard. You can use jdownloader to easily download the full list. | |
| */ | |
| (() => { | |
| const data = document.querySelectorAll('img') |
| <?php | |
| /** | |
| * Class FlitsLogic | |
| * | |
| * Class to get radars from flitsservice.nl, and parse the points to check whether they are within a certain distance. | |
| * | |
| * @author Koen van Hove | |
| * @license MIT | |
| * (Though it would be really nice if you left a message if you decided to use this, and perhaps even credited me) | |
| */ |
| <?php | |
| /** | |
| * Simple excel generating from PHP5 | |
| * | |
| * @package Utilities | |
| * @license http://www.opensource.org/licenses/mit-license.php | |
| * @author Oliver Schwarz <[email protected]> | |
| * @version 1.0 | |
| */ |
| for i in `find . -type f | grep -v \.git | grep -v "^.$" | grep -v "modman" | sed 's/\.\///'`; do echo ${i} ${i}; done > modman |
| #!/bin/bash | |
| # Script for placing sudoers.d files with syntax-checking | |
| # Making a temporary file to contain the sudoers-changes to be pre-checked | |
| TMP=$(mktemp -t vagrant_sudoers) | |
| cat /etc/sudoers > $TMP | |
| cat >> $TMP <<EOF | |
| # Allow passwordless startup of Vagrant when using NFS. | |
| Cmnd_Alias VAGRANT_EXPORTS_ADD = /usr/bin/su root -c echo '*' >> /etc/exports |