I hereby claim:
- I am hhoechtl on github.
- I am hhoechtl (https://keybase.io/hhoechtl) on keybase.
- I have a public key whose fingerprint is 9EA4 C420 CADC 74D2 E618 303B 00B5 463C 906F CB33
To claim this, I am signing this object:
#!/bin/bash | |
for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master `; do | |
git branch --track ${branch#remotes/origin/} $branch | |
done |
git branch newbranch | |
git reset --hard HEAD~3 # Go back 3 commits. You *will* lose uncommitted work. | |
git checkout newbranch |
git checkout existingbranch | |
git merge master | |
git checkout master | |
git reset --hard HEAD~3 # Go back 3 commits. You *will* lose uncommitted work. | |
git checkout existingbranch |
<?php | |
use Behat\Behat\Context\ClosuredContextInterface, | |
Behat\Behat\Context\TranslatedContextInterface, | |
Behat\Behat\Context\BehatContext, | |
Behat\Behat\Context\Step, | |
Behat\Behat\Exception\PendingException, | |
Behat\Behat\Event\ScenarioEvent; | |
use Behat\Gherkin\Node\PyStringNode, |
image_stringS = IMG_RESOURCE | |
image_stringS{ | |
file{ | |
width = 100 | |
import = uploads/media/ | |
import{ | |
field = media | |
listNum = 0 | |
} | |
} |
<?php | |
/** | |
* Copyright notice | |
* | |
* (c) typovision GmbH, www.typovision.de | |
* | |
* @author Hans Höchtl <[email protected]> | |
* | |
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later | |
*/ |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
ps auxw | grep sbin/apache | awk '{print"-p " $2}' | xargs strace -e open |
<?php | |
namespace Vendor\Ext\Domain\Repository | |
use TYPO3\CMS\Core\Utility\GeneralUtility; | |
use TYPO3\CMS\Extbase\Persistence\Generic\Storage\Typo3DbQueryParser; | |
use TYPO3\CMS\Extbase\Persistence\QueryInterface; | |
use TYPO3\CMS\Extbase\Persistence\Repository; | |
use TYPO3\CMS\Extbase\Utility\DebuggerUtility; |
<?php | |
namespace Vendor\Extension\Domain\Repository; | |
use TYPO3\CMS\Extbase\Configuration\ConfigurationManager; | |
use TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface; | |
use TYPO3\CMS\Extbase\Persistence\QueryResultInterface; | |
class MyRepository extends \TYPO3\CMS\Extbase\Persistence\Repository { | |
/** |