Finally I have decided to maintain OpenLD script. You already know OpenLD is a very lightweight link directory script. It is highly extensible without hard coding. You can make extensions to utilize its hooking system. There are many hooks in every steps of all files where you may push some piece of code by your [...]
Archive for April, 2009
URL Shortening using PHP
Yesterday while developing PunBB Twitter extension, Invarbrass of Projanmo Forum helped me by providing some URL shortening snippets for several websites. Those were very simple to use. I am sharing so that it comes to others’ usages.
to.ly
function CompressURL($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, “http://to.ly/api.php?longurl=”.urlencode($url));
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$shorturl = curl_exec ($ch);
curl_close ($ch);
return $shorturl;
}
echo CompressURL(“http://projanmo.com”);
Bookmark:
[...]
PunBB Twitter – Twitter Updater for PunBB Forum
This morning I got this idea to make an extension for PunBB forum engine that will update twitter status upon new posts and other activities. Few hours back I have completed it. It may need many many improvements. But yep, its ready for testing.
Current Version: 0.8
Current features:
Configurable account
Update on creation of new topic
Update on reply [...]
Auto Login (Gnome) in Fedora, Ubuntu
As I am the single user of my laptop run on Fedora 10, entering username & password each time is troublesome for me. So I need to automatic login feature. It is very easy in Ubuntu but not in Fedora. After searching online, I have seen it is not very hard to configure in Fedora [...]
What the hell is happening with Akismet spam filter?
From two days I got more than 50 spam comments in my blog that is not automatically marked as spam by Akismet. But when I check the comments and click ‘Check for spam’ it is then identifying them as spam. I don’t know why it don’t work automatically as it was doing earlier.
I tried [...]
Some of my recent photos
Hello,
let me share some of my recent photography with you.
Bookmark:
yahooBuzzArticleHeadline = “Some of my recent photos”;
yahooBuzzArticleId = “http://hungrycoder.xenexbd.com/my-life/some-of-my-recent-photos.html”;
[...]
Layout “unijoy” not found – Got this Joomla problem finally fixed
I was suffering from this problem from long time. Just few minutes ago I got the real and effective solution for it. The main solution remains here and here. Recently also came to know that problem remains in Firefox and Flock. It was working fine on IE and Safari. So solution only needs for Firefox [...]
PunBB 1.3x Extension…. Convert numbers to Bangla (Bengali) on the fly!
Just now I have completed the first version of bangla_numbers extension for PunBB 1.3.x. When enabled, this function will converts numbers used in PunBB to Bangla. It will specially converts numbers of posts, topics, replies, members etc.
Installation:
Upload the unzipped files to extensions directory of PunBB and install the extension from Admin panel’s Extension tab. You’re [...]




