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 […]
Category: Open Technologies
Free software or open source related posts.
Enjoy!
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 […]
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;
vTiger SOAP bridge from WordPress and Imap server
In my last project I have to make to work together a vTiger instalation, a WordPress form and an Imap account. The best decision was […]
Sending SMS messages via Twilio Rest API
I am looking at Twilio API right now for a project and I am surprised how easy is to handle voice and SMS messages. Here […]
WRT: How to post to your WordPress using Ajax (+code)
I just finished my “share2” WRT (Web Runtime Toolkit) widget. It allows me to post quick messages to my WordpPress blog or to any blog […]