25
Aug
Posted by VistaArc
1 week, 2 days ago
OmicronLab is temporarilly down because maximum bandwidth limit exceeded for this month. So, It’ll remain down for next 6 days (till 31st August, 2010). We are really sorry for the inconvenience. For the time being you can download Avro Keyboard 4.5.3 from the following mirrors.
Standard edition:
Mirror 1: Download Avro Keyboard (Courtesy: JadeWits)
Mirror 2: Download Avro Keyboard (Courtesy: NiponWave)
Mirror 3: Download Avro Keyboard (Courtesy: GoromCha)
Mirror 4: Download Avro Keyboard (Courtesy: G&R Limited)
MD5 Hash :: bd6bcefd77abf3e31ec763eb4e9be873
Portable edition:
Mirror 1: Download Avro Keyboard (Courtesy: GoromCha)
Mirror 2: Download Avro Keyboard (Courtesy: NiponWave)
Mirror 3: Download Avro Keyboard (Courtesy: G&R Limited)
Mirror 4: Download Avro Keyboard (Courtesy: JadeWits)
MD5 Hash :: 168b29cb5c064d3b747de93a9c342b8d
Thanks for your patience.
Tags: avro, Avro Keyboard, Bangla, Bengali, keyboard, omicronlab
Posted in Downloads | No Comments »
19
Aug
Posted by VistaArc
2 weeks, 2 days ago
After a long break today I’m writing in my blog. Yesterday [ its 1:06 now
] I’ve had a horrible final exam
. Yet, I’m happy to release this Google Chome Extension / FireFox Greasemonkey Script
Check the script at :: http://userscripts.org/scripts/show/83753
License Type :: Creative Commons
Special Thanks to Tasneem Farhat for testing and Ashraful Alam for his quick feedback
Please feel free to give your opinions or suggestions.
Tags: chrome, emoticons, facebook, fb, Firefox, Google, greasemonkey, script, yahoo
Posted in Downloads | No Comments »
24
Feb
Posted by VistaArc
6 months, 1 week ago
It has been a long time since I stop writing in my blog. I was waiting for something to start blogging again. So, here is a flickr photo search plugins for WordPress.

Read the rest of this entry »
Tags: Downloads, flickr, Free, News, photo search, Plugin, search, WordPress
Posted in Downloads | 3 Comments »
10
Dec
Posted by VistaArc
8 months, 3 weeks ago
This is my first Google Chrome Extension. It will pull latest 10 news from the most popular Bangla (Bengali) newspaper Prothom Alo. Soon, I’ll add new news count and some other stuffs you want…
Please give your valuable suggestions and comments…
Click here to goto the extension details page
Tags: Bangla, chrome, extension, Google, google chrome, newspaper, prothom alo
Posted in Downloads | 9 Comments »
21
Oct
Posted by VistaArc
10 months, 2 weeks ago
Today my friend Sakib was looking for a Currency Exchange API to implement it on one of his projects. So, I decided to write this small PHP code snippet for him. I hope this will help him and also other developers. Because, XML-RPC section of the PHP Manual is still incomplete
.
<?php
/*
* Reference :: http://foxrate.org/
*
* For $from and $to :: http://www.oanda.com/site/help/iso_code.shtml
*/
function getExchangeRate($from = 'USD', $to = 'BDT', $ammount = 1.0) {
$ammount = doubleval($ammount);
$request = xmlrpc_encode_request("foxrate.currencyConvert", array($from, $to, $ammount));
$stream = stream_context_create(array('http' => array(
'method' => "POST",
'header' => "Content-Type: text/xml\r\nUser-Agent: xmlrpclib.py/1.0 1 (by www.pythonware.com)\r\nHost: foxrate.org\r\n",
'content' => $request
)));
$endpoint = "http://foxrate.org/rpc/";
$file = file_get_contents($endpoint, false, $stream);
$response = xmlrpc_decode($file);
if (is_array($response) &amp;&amp; xmlrpc_is_fault($response)) :
return 'error';
else :
return $response;
endif;
}
print_r(getExchangeRate());
?>
Tags: API, currency convert, currency exchange, fox-rate, money exchange, php, php5, XML-RPC
Posted in API, PHP, Tutorials, XML-RPC | 1 Comment »
01
Oct
Posted by VistaArc
11 months, 1 week ago
Recently Prothom-Alo has updated their site to Unicode. Now, I want your valuable opinion about if I continue the development of Poroshmoni or not? Check out the screenshot of the current development -
Tags: Bangla, development, extension, Firefox, poroshmoni
Posted in Personal | 6 Comments »
01
May
Posted by VistaArc
1 year, 4 months ago
Sorry for being late, Last week, I’d been very busy with my exam.
Due to some changes in flickr, here is a update for Shudhui Bangla extension.
This Firefox extension is for members of Shudhui Bangla flickr group. The idea was from Mehdi Hasan Khan (I hope this spelling is correct
).
Installation Procedure:
- Start Firefox (Better if you use latest version
).
- To install click the download link below
- Click “Allow” on the upper right corner
- A pop-up (dialog box) will come, wait a moment then click install
- Restart Firefox
Read the rest of this entry »
Tags: extension, Firefox, Firefox 2, Firefox 3, flickr, Free, Freeware, shudhui bangla
Posted in Downloads | 3 Comments »
05
Feb
Posted by VistaArc
1 year, 7 months ago
This Firefox extension is for members of Shudhui Bangla flickr group. The idea was from Mehdi Hasan Khan (I hope this spelling is correct
).
Installation Procedure:
- Start Firefox (Better if you use latest version
).
- To install click the download link below
- Click “Allow” on the upper right corner
- A pop-up (dialog box) will come, wait a moment then click install
- Restart Firefox
Read the rest of this entry »
Tags: extension, Firefox, flickr, shudhui bangla
Posted in Downloads | 10 Comments »
10
Jan
Posted by VistaArc
1 year, 7 months ago
Did you ever think of utilizing any site favicon? Probably not! But, I’ve been always thinking of it. Actually the space for the Bookmark Toolbar is never been enough for me, even in wide screen
. So, I decided to remove labels from my toolbar bookmarks. And now its look like -
You can see, here my browser is Google Chrome. But, it is not necessary, you can also do it in Firefox.
Read the rest of this entry »
Tags: chrome, favicon, Firefox, Google, google chrome, Tips, Tips & Tricks
Posted in Tips & Tricks | 8 Comments »
08
Jan
Posted by VistaArc
1 year, 7 months ago
Few days back I saw a really nice post of Nadim Jahangir about breaking captcha [Breaking CAPTCHA: Getting Naughty With Computer Vision Based Human Interaction Simulator Bot]. After, reading his post, I’d decided to create something similar with PHP. And I’ve already done it. I also use somewhereindhaka.net captcha for my experiment but didn’t create any bot to post in their site
.
Steps are very simple -
- Create horizontal & vertical histogram of captcha using PHP GD.
- Recognize each character by comparing values from histogram.
- I didn’t use any Template Recognition Algorithm. Rather, I use simple Edit Distance Algorithm (Levenshtein Distance). And it works
See it live – http://tr.im/35au
Tags: algorithm, captcha, experiment, histogram, php, security
Posted in Personal | 11 Comments »