Skip to content

Instantly share code, notes, and snippets.

View jacobsenj's full-sized avatar
:octocat:

Jens Jacobsen jacobsenj

:octocat:
View GitHub Profile
@koshatul
koshatul / README.md
Last active June 27, 2024 05:47
use Apple Keychain to store GPG Passphrases

gpg-agent setup

Need to setup gpg-agent first, on OSX I use keychain (it also does ssh-agent)

$ brew info keychain
keychain: stable 2.8.5
User-friendly front-end to ssh-agent(1)
https://www.funtoo.org/Keychain
/usr/local/Cellar/keychain/2.8.5 (7 files, 108.5KB) *
@NamelessCoder
NamelessCoder / AdditionalConfiguration.php
Created March 12, 2017 18:17
Using namelesscoder/typo3-cms-multilevel-cache
<?php
/*
* Demonstrates how to configure `namelesscoder/typo3-cms-multilevel-cache` for
* added L1 (runtime) and L2 (memcached) caches on existing database-backed caches.
*
* Tip: if your site changes frequently, consider assigning a low expiration time
* on the "default_memcached" cache configuration.
*/
@spoonerWeb
spoonerWeb / FacebookVideoHelper.php
Last active August 6, 2019 07:31
Facebook video integration in TYPO3 (needs some love for FE rendering)
<?php
namespace Vendor\ExtensionKey\Helpers;
/**
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
@smichaelsen
smichaelsen / A.php
Last active March 11, 2016 16:17
Idea: Injection Traits #typo3 #extbase
<?php
class A
{
/**
* In TYPO3 (Extbase) you can use a simple @inject annotation to get an instance of the class specified with
* the @var annotation ready-to-use when your class is instanciated.
* However you're discouraged to use that variant for performance reasons.
*