Category Archives: Uncategorized

SCRUM – INVEST

http://en.wikipedia.org/wiki/INVEST_%28mnemonic%29

Posted in Uncategorized | Leave a comment

Extbase validation

Writing a custom validation:

source : http://web-union.de/421

typo3conf/ext/YOUR_EXT/Classes/Validation/Validator/PhoneNumberValidator.php

class Tx_ContactForm_Validation_Validator_PhoneNumberValidator extends Tx_Extbase_Validation_Validator_AbstractValidator
{
public function isValid($value)
{
$this->errors = array();
if(preg_match('#([^0-9\-\+\(\)\s])#', $value))
{
$this->addError('The given subject is no valid value.', 40213131);
return false;
}
return true;
}
}

* @validate Tx_ContactForm_Validation_Validator_PhoneNumberValidator
Posted in Uncategorized | Leave a comment

live optredens Amsterdam

http://www.draaiomjeoren.com/artikelen/amsterdam.html

Posted in Uncategorized | Leave a comment

Premier league online game

http://fantasy.premierleague.com/

Posted in Uncategorized | Leave a comment

less css

lesscss – en jscript enabled stuff.

Posted in Uncategorized | Leave a comment

Blog based music shuffler

http://shuffler.fm/

Posted in Uncategorized | Tagged | Leave a comment