# show SD card - something like /dev/XXXX e.g /dev/sdb1
df –h
# unmount the card to prevent card access while writing the image
umount /dev/XXXX
- Filters: Enable filters in mailclients. Move Redmine tickets into a hotline folder, delete non-important mails automatically, move newsletters into »Read it later« folder. On Twitter: Use lists.
tl;dr “TemplaVoila!” (https://github.com/templavoila/templavoila/) is dead, Alexander Schnitzlers Fork “TemplaVoilà” is not working (https://github.com/alexanderschnitzler/templavoila/), Pluspols Fork “TemplaVoilà Plus” (https://github.com/pluspol-interactive/templavoilaplus/) is working but migrates all code due to the new extension key
Juni 2013: Tolleiv Nietsch stellt die Weiterentwicklung von TemplaVoila ein http://blog.tolleiv.de/2013/06/templavoila-future/
Mai 2014: TYPO3 Freelancer Alexander Schnitzler übernimmt zusammen mit Wouter Wolters die Weiterentwicklung von TemplaVoila
März 2015: Mehrere Bugfix Releases für TemplaVoila, kompatibel mit TYPO3 6.2
Mai 2015: Alexander Schnitzler kündigt an, dass es keine Feature Releases für TemplaVoila mehr geben wird, sondern nur noch ein paar letzte Bugfix Releases https://gist.github.com/alexanderschnitzler/7df8576d8abbcb8745b8
| <?php | |
| $data = ['foo' => 'Hello World']; | |
| file_put_contents('/tmp/log.txt', time() . ' ' . print_r($data, true) . PHP_EOL, FILE_APPEND); |
| <?php | |
| /** | |
| * Simple request response script | |
| * | |
| * Point you cURL request to this script to see all incoming data | |
| */ | |
| echo '*API*'. PHP_EOL; |
| cd /home/ | |
| ### you may search for a part of the public key only, but make sure to not match unwanted keys of other users | |
| grep -R -l 'SomeSSHKeyOrHostname' */.ssh/authorized_keys | |
| sed -i '/SomeSSHKeyOrHostname/d' somedeploymentuser1/.ssh/authorized_keys | |
| sed -i '/SomeSSHKeyOrHostname/d' somedeploymentuser2/.ssh/authorized_keys | |
| sed -i '/SomeSSHKeyOrHostname/d' somedeploymentuser3/.ssh/authorized_keys |
| /* | |
| If you blind a menu item (e.g. let an editor edit translations, but dont show him tsconfig), | |
| then check for all currently registered keys in the configuration module. | |
| Open the configuration module in TYPO3 backend and select the option »BE Modules Extensions«. | |
| This will show a tree. Just copy the key names and adjust the following snippet to your needs. | |
| Warning: This will just blind the option, it is not an access check. | |
| */ |
| <?php | |
| namespace Pixelbrackets\AcmeExtension\ViewHelpers; | |
| use TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper; | |
| /** | |
| * Checks if a given page is translated into a given language or translated at all | |
| * | |
| * = Examples = | |
| * |
| <?php | |
| namespace Pixelbrackets\AcmeExtension\ViewHelpers; | |
| use TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper; | |
| /** | |
| * Returns the domain of a given link | |
| * | |
| * = Examples = | |
| * |
| <?php | |
| namespace Pixelbrackets\AcmeSitepackage\ViewHelpers; | |
| use TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper; | |
| /** | |
| * Grouped loop viewhelper | |
| * | |
| * Iterates through elements and groups them by a specified property first | |
| * |