I hereby claim:
- I am neoblack on github.
- I am neoblack (https://keybase.io/neoblack) on keybase.
- I have a public key ASArnxDviRo5wVmux48xIjm9aWAhG65Z3IWW3zq7vGuuRgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
############################### | |
# TYPO3 release statistics | |
# Generator script to get some stats from the git repository | |
# Set the variable "tag" below to the first LTS version tag and start the script from the local master checkout | |
# | |
# Created by Frank Nägler (@NeoBlack) | |
############################### |
<?php | |
namespace FooBar\BarFoo\Solr\IndexQueue; | |
use ApacheSolrForTypo3\Solr\IndexQueue\InvalidFieldNameException; | |
/** | |
* Class Indexer | |
* | |
* @package FooBar\BarFoo\Solr\IndexQueue | |
*/ |
<?php | |
namespace BowlingWissen\TmplWebsite\Solr\IndexQueue; | |
use ApacheSolrForTypo3\Solr\IndexQueue\InvalidFieldNameException; | |
/** | |
* Class Indexer | |
* | |
* @package BowlingWissen\TmplWebsite\Solr\IndexQueue | |
*/ |
01) Update to latest 4.5 version | |
02) DB-Compare via install tool | |
03) Update extensions to 6.2 compatible version | |
04) deinstall unused extensions | |
05) delete deinstalled extensions | |
06) Repair failures reported bei EXT:smoothmigration | |
07) Update sys_refindex [1] | |
08) Update TYPO3 core to 6.2 (maybe restart webserver, APC?) | |
09) Run Upgrade Wizard from install tool | |
10) DB-Compare via install tool |
// @deprecated | |
IconUtility::getIcon() | |
// | |
// PUBLIC METHODS | |
// | |
// @access public: used 4 times in the core | |
IconUtility::skinImg() | |
// @access public: used 316 times in the core |
<?php | |
trait SharableTrait { | |
public function share($item){ | |
return 'share this item'; | |
} | |
} | |
trait MailableTrait { | |
public function mail($to){ | |
mail($to, 'Foo', 'Body-Text'); |
// ==UserScript== | |
// @name Forger Remove Animated Process Bar | |
// @namespace http://naegler.hamburg/ | |
// @version 0.1 | |
// @description remove the animation from WIP statusbar part | |
// @author You | |
// @match http*://forger.typo3.org/sprint?boardId=* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @grant none | |
// ==/UserScript== |
#!/bin/bash | |
################################################################################ | |
# Cleanup databases after functional test runs | |
# | |
# call for a check: | |
# ./cleanupFunctionalTestDatabases.sh | |
# call for really delete databases: | |
# ./cleanupFunctionalTestDatabases.sh doit | |
################################################################################ |