November 2009
6 posts
Phing: How to export defined properties to file
I’ve been very annoyed that I have to define properties in 2 different places. Given the following scenario:
* config target gets called, does a bunch of property prompts * writeConfig target gets called, writes properties to file
You’d have to have a template file with the properties already defined, then you’d have to copy that file to a config file with the filter expand...
TYPO3: Generate url to page from id
First thing:
$url = $GLOBALS[‘TSFE’]->cObj->getTypoLink_URL($pageId);
Also:
I can’t believe how many fundamental things in TYPO3 are not documented, or on Google. Is no one actually developing on TYPO3 anymore, or are you all just keeping things to yourself?
Scroll Clock
byteengine:
So awesome:
http://toki-woki.net/p/scroll-clock/ [via @jasonfried]
Posted via email from Schultzie | Comment »
DOMElement to html
Here is a quick way to get HTML from a DOMElement in PHP
function getHtmlFromDomElement($element) {
$doc = new DOMDocument();
foreach($element->childNodes as $child)
{
$doc->appendChild($doc->importNode($child, true));
}
return $doc->saveHTML();
}
2 tags
October 2009
4 posts
3 tags
Just launched the new RackSpace UK site →
2 tags
We’ve started working on our most important project yet. I’m very excited.
Should go live end of the month.
September 2009
5 posts
My fingers are mine
I really hate it when I figure out I cut my finger a long time after … it takes me by surprise and then it annoys me for the rest of the night.
2 tags
2 tags
Happy birthday to me!
Slightly older, slightly wiser and still no wrinkles on my face.
Let’s hope the next 21 years will be as nice as the last 21!
?
1 tag
7 Things Your Startup SHOULD Copy From 37signals →
(via leewilkins)
August 2009
101 posts
1 tag
Zend Framework 1.9.2 released →
1 tag
1 tag
1 tag
Random Thoughts From People Our Age
fwarg:
thebrownshaun:
-I wish Google Maps had an “Avoid Ghetto” routing option.
-More often than not, when someone is telling me a story all I can think about is that I can’t wait for them to finish so that I can tell my own story that’s not only better, but also more directly involves me.
-Nothing sucks more than that moment during an argument when you realize you’re wrong.
-I don’t...
1 tag
1 tag
1 tag
6 tags
Launched: Zend Framework + Typo3 project
I’m extremely proud to announce that we have launched our first project where we used Zend Framework in combination with Typo3.
Sing up, in short, as they put it “Is a programme to make sure that singing is at the heart of every primary school child’s life”.
The project is based on Involve, (a CMS that we built on top of Typo3, that makes working with Typo3 a breeze for even...
3 tags
Playstation 3 Slim unveiled →
Success is just like being pregnant. Everybody congratulates you but nobody...
– Mihai Baloianu (via slimr) (via cristianciofu)
Cheat Sheets for Front-end Web Developers →
cristianciofu:
excellent resource ;)
2 tags
2 tags
5 tags
5 Interesting projects on GitHub (PHP)
Useful php arrays (cities, countries, mime_types, etc.)
Twitbot (library intended to allow easy creation of Bots using Twitter)
Twitterlibphp (object oriented twitter library)
php-growl (send grown notifications with php)
glip (git library in php)
2 tags
TomTom for iPhone launched! →
1 tag
2 tags
Q: How many programmers does it take to change a light bulb?
A: None, that's a hardware problem.