Please do NOT use Rich editor while entering infornation on Mozilla Wiki. It sux !!!
Latest Blogs
PopCorn.js and me
Couple of days ago I proposed a feature/ fix a bug in Popcorn project. Usually I hate JS, but when I start using Popcorn for […]
HTML5 ane CSS3 for presentation slides
Here you can find my slides presented 2 days ago at Wordcamp Bulgaria. You will definitely need Firefox 4 beta 2 at least because my […]
How to Run Doctrine ORM with CodeIgniter
There are a lot of tutorials in the web regarding this subject, but I think this is the fastest and the easiest way to run […]
Our new community website is ready
We have a new community site. It is based on WordPress 3.0.1 and Budypress. What are the features: 1. We have community. Anyone can: – […]
Quick short URL PHP function
function shortURL($long) { $short=file_get_contents(“http://is.gd/api.php?longurl=”.$long); return $short; } Usage: $short = shortURL(“http://veryveryveryverylongurl.tld/something/verylong.php”); echo $short;