Da habe ich mir letztens die html5 boilerplate angeschaut und musste feststellen, dass die einen ziemlich guten build mitbringt.
Dieser optimiert Bilder, konkateniert und komprimiert alles was so geht, mit Hilfe von u.a. dem YUI Kompressor.
Was es noch nicht kann ist der Deploy, aber das kann man ihm ja beibringen ;)
PHP odds! today: pass by reference traps
This is dangerous:
//example array $array = array('a' => array(array(243,453,435,232))); foreach ($array['a'] as &$value) { $value[3] = $newvalue; }
This works, but now the $value var is in the array by reference which can lateron lead to:
Notice: Array to string conversion
EDIT:
see below in the comments for when…
This works better:
obsvr.net
Just wanted to mention it here: http://obsvr.net
A media search aggregator build by Me and Max, as the wonderfulwebsolutions.
Its a luckily distributed wolpertinger of symfony, silex, node.js, jquery, isotope, apache and lighty, more to come.
install ant ftp task on ubuntu
Tired of manually uploading your changes via FTP?
And no shell because your client cant/wont buy a hosting package for real men?
Then go for ant and its ftp task!
Install it on ubuntu like so (given you have ant and java already):
jquery pump effect
some new loader effect?
this is a small jquery plugin that renders something like a pump or glow effect by switching two css classes with jquery UI transitions in an endless loop.
the loop can be stopped by applying a stop class to the element.
watch the demo on this almost autogenerated github page:
Demo
Synchronous http request in node.js, that you dont want, probably
Achtung dummy code!
…and so it goes Asynchronous:
for(var i = 0; i < loop.length; i++) { var proxy = http.createClient(PORT,SERVER); var request = proxy.request('GET', url, { "host": SERVER }); request.end(); ... }
fire, fire, fire, fire
… and so it dont, Synchronous then:
var proxy = http.createClient(PORT,SERVER); for(var i = 0; i < loop.length; i++) { var request = proxy.request('GET', url, { "host": SERVER }); request.end(); ... }
point – shoot, point – shoot, point – shoot
well i didnt know that :)
Lighttpd, Plesk und PHP
Will man auf seinem Server(debian) Lighttpd paralell zu Plesk’s Apache zum laufen kriegen sollte man auf jeden fall PHP als FPM laufen lassen.
Das kommt sich nicht mit dem von Plesk und Apache regierten PHPs in die Quere und ist sowieso schneller und kann auch die Prozesse killen und neuladen.
Falls man mal was in der ini ändern will.
FPM installieren geht so, wie er es dort beschreibt:
Allerdings in der conf den Port nicht als String, sondern numeric:
server.modules += ( "mod_fastcgi" ) ## Start an FastCGI server for php (needs the php5-cgi package) fastcgi.server = ( ".php" => ( "localhost" => ( "host" => "127.0.0.1", "port" => 9000 )) )
Bleibt noch das Problem mit dem APC Konflikt, falls da jemand eine Lösung weiß, nur her damit.
Man, das war ein kampf ;)
Mal sehen wie lang das hält…
SilverStripe Image Gallery installation
Theres a lot of old, deprecated and now wrong installation guides for the SilverStripe Image Gallery Module on the web that will lead you to where you dont want to. Dont trust them!
Unclecheese made some changes to the module dependencies and also moved to git, some time ago. He now uses the new Uploadify module instead of the SwfFileUpload module.
So a working installation of the image-gallery for git-people is to:
symfony 1.4 installer
Ich hab mal einen symfony 1.4 installer shell script auf github gepackt.
Damit kann man “ruckizucki” auf Ubuntu ein lokales symfony 1.4 Projekt aufsetzen.
Es ist ein fork von einem virtualhost create script und macht folgendes:
-
– holt den letzten symfony 1.4 stable release via svn
– setzt alle notwendigen rechte zB auf den cache folder
– bereitet die datenbank vor
– legt eine app an
– macht eine .gitignore
– und ruft das virtualhost creator script auf, was den vhost anlegt auf “web”
Distinct in Doctrine
Wenn man DISTINCT in einem Query und Doctrine nutzen will muss man mit Aliasen arbeiten!
Sonst baut Doctrine einem da immer die id mit in den Query und das DISTINCT wird damit ausgehebelt.