1

how to find home jobs ?

-

are you looking for home based jobs ? are you skilled in writing , data entry , technical writing , article writing , coding , designing ? if you best place to find online work is Odesk , you can browse many open projects there related to different categories ,

signup on odesk and start bidding on projects which suits your interests .
odesk is 100% genuine and renowned website 1000′s of skilled contractors are already working there for years .

Click here to Create your odesk profile
odesk pays its contractors through paypal , moneybookers , wire transfers and via Payoneer powered credit card.

0

Thank you odesk !

-

today i recieved this email from Odesk Customer Support :
“Hi %$%$,
The last few days have seen Pakistan hit by severe storms and floods, which may have directly affected you or your family. Please know that we are sending our best thoughts and well wishes to you during this difficult time.

We wanted to let you know that we have sent an email to your employers advising them of the situation in Pakistan and asking them to be patient as the flooding may have impacted your ability to work. Please do contact them as soon as possible to discuss your oDesk contracts – they may be concerned and would like to hear from you.”

now this shows Odesk really cares about its users , thanks Odesk i am from Pakistan fortunately my area isnt heavily effected by floods and i am working usually on contracts excepts download and upload speed of my wimax network is bit effected but i have alternative DSL link , i hope other odesk contractors or employers from Pakistan who are effected by this natural disaster will recover soon and will continue to boost the “Outsource to Pakistan” page’s weekly hourly map :)
once again thanks alot Odesk for your best wishes and concerns .
if you are freelancer and want to offer web development , graphic designing , data entry , software development services , Checkout odesk.com , its best portal for service providers and employers to select the best service provider from the talent pool .

1

Online Data Entry Jobs

-

Are you looking for online data entry / data processing jobs ? do you want to work as a freelancer to render some extra income ? if so you are at right place i am working as a freelance graphic designer , web developer and 3d animator i have successfully completed many freelance projects and hourly tasks on reliable and trustworthy sites like odesk , if you search googleyou will find majority of sites there on top with fake , scamy and bogus offers like you can make $10000/ day etc etc ….

So how to get started ?
usually it works like first you will have to find online projects and contracts listings , BEST site where 1000′s of new jobs are posted daily is odesk.com , there are some other outsourcing sites too but majority of employers scam the service providers there , odesk have very safe and friendly policies for both freelancers and employers .

data entry jobs

data entry jobs


Skill(s) you must have !
there isnt any major skill required to be a good data processor , if you type fast , have fast and 24/7 active internet connection , dedication to implement best possible effort and fluency in speaking and typing English then you can be a good data enterer .

How you will get paid and how much ?
First of all you will have to register at www.odesk.com you can visit the site by clicking here , now first step should be :

a) Buildup a good appealing profile
b) find jobs and contracts that suit you and your skill set at best
c) Apply your bid on each contract individually .
d) odesk.com will handle payment methods and transactions itself ,weather you want it hourly or fixed contract .
e)Buildup solid portfolio and expand your client network .

You need some more suggestions ? post them below and i will try my best to answer each individually .

6

Stock ticker bar script for Joomla / WordPress

-

few days back i coded a small script to show stock ups and downs ticker , script fetches data from yahoo finance and scrolls the ticker , you can use this script on on Joomla (tested on joomla 1.5) and all versions of wordpress .

How to use the script

<marquee id=”m1″ onmouseover=”this.stop();” onmouseout=”this.start();” truespeed=”" scrollamount=”2.4″ scrolldelay=”50″ direction=”left” loop=”repeat” width=”70%”>
<?php

function getStockSite($stockLink){

if ($fp = fopen($stockLink, ‘r’)) {
$content = ”;

while ($line = fread($fp, 1024)) {
$content .= $line;
}
}

return $content;
}

function processStockSite($wurl){

$wrss = getStockSite($wurl);
$name  = ‘-’;
$price = ”;
$diff  = ”;

if (strlen($wrss)>100){
$spos = 0;

// Get text
$spos = strpos($wrss,’</span>:’,$spos)+3;
$spos = strpos($wrss,’<big>’,$spos);
$epos = strpos($wrss,’</div><h1>’,$spos);
if ($epos>$spos){
$text = substr($wrss,$spos,$epos-$spos);
} else {
$text = ‘-’;
}

$spos = $epos + 10;
// Get company name
$epos = strpos($wrss,’<’,$spos);
if ($epos>$spos){
$name = substr($wrss,$spos,$epos-$spos);
}
// Get actual price
$spos = strpos($wrss,’yfs_l10′)+strlen(‘yfs_l10′);
$spos = strpos($wrss,’>’,$spos)+1;
$epos = strpos($wrss,’<’,$spos);
if ($epos>$spos){
$price = substr($wrss,$spos,$epos-$spos);
} else {
$price = ‘-’;
}

// Get direction
$spos = strpos($wrss,’alt’,$epos)+strlen(‘alt’)+2;
$epos = strpos($wrss,’”‘,$spos);
if ($epos>$spos){
$dir = strtolower(substr($wrss,$spos,$epos-$spos));
}

// Get difference
$spos = strpos($wrss,’>’,$epos+3)+1;
$epos = strpos($wrss,’<’,$spos);
if ($epos>$spos){
$diff = substr($wrss,$spos,$epos-$spos);
}

}

$result['name']  = $name;
$result['value'] = $price;
$result['diff']  = $diff;
$result['direction'] = $dir;
$result['text']  = $text;

return $result;

}

?>
<?
// Get stock data
//$data = processStockSite(‘ttp://finance.yahoo.com’); // Google
$data = processStockSite(‘http://finance.yahoo.com/q?s=GOOG’); // Google
?><html>
<style type=”text/css”>
<!–
.unnamed1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF;
background-color: #000000;
}
–>
</style>
<body class=”unnamed1″>
<?php echo $data['name']; ?>$
<?php
echo $data['text'];
//echo $data['value'].’ ‘;
//if ($data['direction'] == ‘up’) echo ‘<span class=”up”> +’.$data['diff'].’</span>’;
//else echo ‘<span class=”down”> -’.$data['diff'].’</span>’; ?>
</body>
</html>
<?php
$data = processStockSite(‘http://finance.yahoo.com/q?s=MSFT’); // Microsoft
?><?php echo $data['name']; ?>$
<?php
echo $data['text'];
//echo $data['value'].’ ‘;
//if ($data['direction'] == ‘up’) echo ‘<span class=”up”> +’.$data['diff'].’</span>’;
//else echo ‘<span class=”down”> -’.$data['diff'].’</span>’; ?>
<?php
$data = processStockSite(‘http://finance.yahoo.com/q?s=AAPL’); // Apple
echo $data['name'];
echo $data['text'];
$data = processStockSite(‘http://finance.yahoo.com/q?s=GE’); // GE
echo $data['name'];
echo $data['text'];
$data = processStockSite(‘http://finance.yahoo.com/q?s=BELFA’);//Bel Fuse Inc
echo $data['name'];
echo $data['text'];
$data = processStockSite(‘http://finance.yahoo.com/q?s=BIOD’);//Bio Del
echo $data['name'];
echo $data['text'];
?>

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “DTD/xhtml1-transitional.dtd”>
<html>
<body>
<?php echo $data['name']; ?>$
<?php
echo $data['text'];
//echo $data['value'].’ ‘;
//if ($data['direction'] == ‘up’) echo ‘<span class=”up”> +’.$data['diff'].’</span>’;
//else echo ‘<span class=”down”> -’.$data['diff'].’</span>’; ?>
</body>
</html>
</marquee>

For Joomla
Download and install Joomla PHP component “Jumi” from here : http://extensions.joomla.org/extensions … ntent/1023
create new “Jumi “  module and paste this script and save the module . thats it !
For WordPress
download this plugin :http://wordpress.org/extend/plugins/exec-php/
and paste the above script  , it will work !

you can replace or add stock values i.e http://finance.yahoo.com/q?s=AAPL ( for apple )  with any values by refering to yahoo finance .

Demo
http://universocanario.com/

0

Moneybookers for Germany

-

Moneybookers is best payment gateway to send /recieve money online and for shopping online in germany . its much better and cheaper than paypal , currency exchanges are almost free . many popular websites like ebay , istockphoto etc now accept moneybookers . beside that moneybookers is global unlike paypal which is available only in few countries .
best thing about moneybookers is that if you withdraw $100 from your account to your bank account you will exactly recieve $100 in your bank . they dont have any additional annoying fees .

Click here to Open your Moneybookers account Now ! Opening a moneybookers account is totally free !

2

Odesk vs Elance – Best Site to Find a Job

-

which site is good for you to find work or find a provider ? odesk or elance , lets  review both sites below and compare the features , i am freelancing for almost 6-7 years  , there are few renowned websites known for outsourcing like Odesk , getacoder , getafreelancer ( now freelancer ) and Elance  there are some other too like scriptlance , rent a coder , ilance etc etc but if you compare traffic stats you will definately dropdown to these two   , so which one is better ?

Free

i regularly use both odesk and elance to find projects , Elance isnt completely free for providers which isnt  catchy  for any new provider to signup at all ,while Odesk is 100% free for providers but theres limited quota of 20 Bids per week for average provider there which i think is good idea to keep odesk spam free  ,  there are always fresh job postings on both sites but through buyer’s perspective if he/she will post a job on odesk candidate list will be around 10-30 same posting on elance will only render 5-10 applicants so it will give buyer less choices and talents to select best provider .

Profile Pages

now lets checkout provider profile pages , Odesk profile pages are much smoother , through the point and clean while elance prodile pages look bit boaring . if you dont have  attractive feedback there chances are low you can get job there when your competitor have high feedback , in this context on odesk if you have good portfolio and less or no feedbacks you can still prove your presence to buyers there .

General popularity

Popularity wise i think both websites are at same stage , both websites are featured in  media many times .

SEo rankings

seo wise Elance got edge , elance is ahead of odesk for popular searched keyowrds like “ find web developer” ,  ”find a freelancer”  .

Payment and Withdraws

Payment wise odesk is superb elance doesnt support withdraws via moneybookers , which is very depressing as many Asian countries which are marked as top outsourcing destinations like Pakistan , Philippines etc dont have paypal and service providers of these countries vastly use Moneybookers .

will share more comparisons soon if you want to share some likes / dislikes of any of these sites please comment below .