Tag Archives: bangla

Dutch Bangla Bank (DBBL) introduced ‘Fast Track’ – amazing

Recently I have posted a brief overview in Bangla about the Fast Track introduced by Dutch Bangla Bank Ltd (DBBL). I think it is better if I put some words in English too . I know CDM services are not … Continue reading

Posted in General, My Life, New Techs, Thoughts | Tagged , , , , , , , , , | 9 Comments

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 … Continue reading

Posted in Open Source, PHP | Tagged , , , , , | 3 Comments

Bangla Captcha!

অনেক দিন ধরেই ইচ্ছা একটা বাংলা ক্যাপচা (Bangla Captcha) স্ক্রিপ্ট  করার। কিন্তু একবার চেষ্টা করে ব্যর্থ হয়েছি। কারণ ইউনিকোড অক্ষরগুলোকে জিডি দিয়ে ঠিকমত ইমেজে প্রিন্ট করতে পারছিলাম না। তবে কালকে মনে হল আপাতত ফন্ট পরিবর্তন করেই তো প্রাথমিক কাজটি করা … Continue reading

Posted in Scripts | Tagged , , , , , | 5 Comments

Speak your own language

Today is the age of Open Source. There is a win win situation everywhere for open source. Search the web, you will get a thousands of benefits about open source. But what you may not get is:

I strongly believe “Open source increases the passion to mother language”. How?

Continue reading

Posted in Open Source, Thoughts | Tagged , , | Leave a comment

শুভ নববর্ষ


শুভ নববর্ষ। সবাইকে বাংলা ১৪১৫ সালের শুভেচ্ছা। সকলের জীবনে যেন নতুন বছরটি অনাবিল আনন্দ নিয়ে আসে সেই প্রত্যাশা রইল।

আপডেট:
Continue reading

Posted in General, My Life, University | Tagged , | Leave a comment

Unicode Numeric figure converstion

Now a day, many open source packages are translating in Bangla. This is usually done by replacing the language file with equivalent Bangla language’s Unicode value. But problem is that the numeric figures are still in English. I faced this problem in Projanmo Forum. So today I make a script to convert these English numeric figures to Bangla.

[code]
function convert($char){

switch($char){
case "1":
return "১";
break;
case "2":
return "২";
break;
case "3":
return "৩";
break;
case "4":
Continue reading

Posted in Open Source, Scripts | Tagged , , | 10 Comments