• Feed RSS
Till present, as far I know, moneybookers is the best online payment processor for Bangladeshi people as paypal isn't supported. And I was quite happy with its service.I transferred my income on freelancer.com to moneybokers and then from there to my Bangladeshi bank account. The rate i was getting was also not much less, it was around 68.xx Tk/$ .

However, since last 1-2 months, i am facing problem. I did recieved money at very low rate like 64.xx Tk/$ to 65.xx Tk/$ while transferring money to my dbbl and hsbc account. I wondered with the rate and surprisingly noticed on my bank statement that payment was done using euro instead of usd. So, I made an general inquiry about this to moneybookers customer service department. After 1-2 days, i got reply and a shocking news like follows:

"
Dear Mr. Rana,

Thank you for contacting the Moneybookers Team.

We apologize for the inconveniences caused, however, please note that all of the payments to our customers in Bangladesh are now sent in EUR due to processing restrictions.

However, as your Moneybookers account is in USD and the payment is sent in EUR, you are subject to currency conversion. Please note that for transactions involving currency conversion Moneybookers adds 1.99% to our wholesale exchange rates for foreign currency. This charge serves as a protection against the volatility and risk associated with FX markets. The Moneybookers exchange rates are updated on a regular basis throughout the day. Please visit our 'Fees' section for more details.

Please note that this procedure is only imposed in order our customers to receive their payments without further obstacle
"

So, perhaps, you already understood that, you are going to get almost around 1.99% less than you did before.For this reason, i am now thinking alternative. I am thinking of using my freelancer.com mastercard(powered b payoneer) and see how much I am getting there from ATM. Another issue of Bangladeshi ATM is that, we can't withdraw no more than 20,000 BDT(in case of dbbl/standard chartered/hsbc) and thus I am having to pay $2.xx as transaction fee each time I withdraw a 20,000 BDT. But still, I think it worth as it offers fixed rate fee and not cutting percentage like moneybookers.
I was working on a small module that requires to show member's website's page rank. However, I didn't find any suitable web service that can provide me the exact solution that i wanted.

So, I had to do some small hack on an existing third party page rank service. http://www.mypagerank.net provides such service which i was able to make edits on. They provides a javascript link that actually does all their works. Its as follows:

<script src="http://www.mypagerank.net/services/pagerankbutton/servicepr_js.php"></script>

Problem is this show some texts/textbox/button to enter url and click to retrieve the resultant page rank, which wasn't my expectation. The main clue i got here is that, this doesn't require any captcha entry to verify myself, so trying to automate worth a try.

So, i added some JavaScript code snippet(actually jquery) those are as follows:

var int_id;
$(document).ready(function(){
if($("#surl").length){
$("#surl").val("url; ?>");
$("input[type='button'][value='Check PR']").click();
int_id = setInterval(show_pr,2000);
}
});
function show_pr(){
var images = $("img[align='absmiddle']");
if(images.length>0){
images.css('display','none');
images.eq(0).css('display','block');
clearInterval(int_id);
}
}

Notice the "url; ?>" portion, here will be the dynamic url we need page rank of. This code will remove the required action to enter url and click the button and also show only the first result instead of all that the script provides. So, this might help you if you require such customization and want to show page rank.
Sometimes many internet users/surfers(not have knowledge in html/css programming at all) needs to view source of html page, but fails to find specific part of the page. Also, not only general surfers, some beginners of html/css programmers also fall in such situation. Its a very very geeky stuff and for such reasons somebody may not find exact talk about this on internet very quickly. I am sharing this only for those to provide a quick help.

TO see such a situation try right click of mouse and select 'view page source' option, you will get all the source code of the html file. Then try find some text from my recent post/related post widget, you won't find anything there on the source view.

Why source doesn't exist?

Because source is the only html text portion that browser get while requesting the url. However there may a lot of elements that exist on a page even after a while of page load. Those aren't viewable by this technique.

Then How to see those dynamic html portion?

Simple solution is, first select the texts of the portion by mouse and then right click, you will see options 'view selected source' besides the usual option(I am talking about firefox browser). click that, then you will be able to see that portion's html source.

Another way, best for html/css designers, get firebug add-on. After successfull install and restarting Firefox browser, just click anywhere in the porton of which you want to see view source, right click, click option 'inspect element'(new exclusive option by firebug), you will be able to see html/dom elements, css styles that were applied, all there in a window at the bottom of the page. Luckily, firebug has also ie versions(start from ie7) to get it working on internet explorer.
Thus your problem of viewing source of html page comes to an end:)