• This is Slide 1 Title

    This is slide 1 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...

  • This is Slide 2 Title

    This is slide 2 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...

  • This is Slide 3 Title

    This is slide 3 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...

Tuesday, 3 December 2013

Online Audio Transcription Jobs Without Investment – Typing Work

Online Audio Transcription Jobs Without Investment – Typing Work


You might have tried lot of online data entry jobs without much of success. Do you know that you can earn lot of money doing Online Audio Transcription Work? Yes there are websites which offers Online Transcription Work from home; wherein you will be paid for audio to text transcription.
Audio Transcription Jobs are lot better than online data entry work. The main reason being the huge difference in rate of payment; Audio transcription job offers a much better pay than online data entry work. The work is almost similar to data entry wherein you will have to type in the words that you hear in the audio. I would callAudio Transcriptions Jobs as one of the best Online Jobs Without Investment.

Basic Requirement to do Audio Transcription Jobs

  • Good English (Verbal & Written)
  • Excellent Typing Speed
As you can see this work does not require any expertise skill set; all you need is a good English communication skill along with excellent typing speed. This is the main reason behind many looking for online typing work. So if you are one of them with good communication skill then this article is just for you.

Websites Offering Audio Transcription Work Without Any Investment

Scribie

Scribie is one of the best networks when it comes to Online Transcription Jobs. It offers both audio and video transcription work from home. All you will need to do is sign up and take up their skill check test; once you clear it you will be eligible to work with Scribie. Scribie pays $10/hour wherein each video will be of 6 minutes so it is like $1 per video. Payments will be done through PayPal.
Link: Scribie

Elance

Elance is a micro job site wherein you can select a job which suits your skill set or areas of interest. So you can even find online transcription work in Elance. All you need to do is create an account with Elance, Sign in and search for online transcription work; you will find a huge list of available transcription work. You can look at the image below for reference –
elance
You can find lot of offers wherein the rate varies from $10-$50/hour or even more. Preferred mode of payment is PayPal.
Link: Elance

oDesk

oDesk is also a micro job site which is almost similar to Elance. If you are a freelancer and in search of online audio transcription work; then oDesk will be handy for you. You can refer to the image below to see how the listing looks –
odeksYou will find lot of offers in the range of $5-$50/hour or even more. Like other networks the preferred mode of payment for oDesk is PayPal.
Link: oDesk
You can find lot of such micro job site online (e.g. FiverrFreelancer etc.). So all you need is a good communication and excellent typing speed. Your earning will totally depend on the time you spend on it. You will be your boss as you will be selecting or deciding the job of your choice and will work on time convenient to you. I will be updating this list regularly as I come across genuine networks. So subscribe to Justclickin for more updates.

Online Data Entry Jobs Without Investment – Genuine Work

Online Data Entry Jobs Without Investment – Genuine Work


typewriter1Online Typing Work Without Investment

There are many ways through which we can make money online and each way has its own requirements like Marketing Skill, Content Writing Skill, Web Development Skill etc.  Mostly many search for Online Data Entry Jobs Without Investment to minimize the risk of loosing money. The prime reason being data entry work doesn’t require any additional skill; all you need is a good typing speed.

Making Money Online – No Money Required

Recently I came through a site called Megatypers.com which pays for Online Data Typing work or offers online jobs without investment.  So I started to search about this website and I came to know that this one is not a scam from Registered Members comments. I can also say that it is one of the better Online Jobs which does not require any investment but the pay is very less.
I registered myself online and these are the reviews about Jobs on MegaTypers.com:
  • Megatypers.com seems to be genuine online site but the amount they pay is very less.  It starts from $0.6 to $1.05 for every 1000 images and the rate varies every hour (So it’s always better to work on hours wherein the pay is high)
  • Each image consist of a CAPTCHA Image which may consist of one or two words and both the words have to be entered correctly that too within 15 second else you will be kicked out (Multiple kicks can lead to account getting banned)
  • Affiliate program is available wherein you make 10% of your affiliates earning (So more the no. of referrals more is the chance of making more money)
  • Payment will be done on every Monday and the minimum amount required is $3
  • Making multiple ID’s or cheating can lead to account getting banned and payment won’t be made on any of those accounts

How to Register in MegaTypers.com?

Step 1: Go to megatypers.com/register and create an Account
Step 2: Fill in your details
Step 3: Invitation Code is must for registering so you can use 3SJH, 3SJI, 3SPP or 3SJJ… That’s all!!!
You should also know: How to Create Paypal Account?
People will say that you can easily make around $100 every month on such sites but it’s very difficult without a proper plan.  Let me show you a small calculation which can be achieved but will take some amount of time:
Imagine you complete 500 images every day (working for an hour) at the rate of $1 every 1000 images
Your monthly earning = $0.5 * 3 0 = $15
Now imagine that you have 50 referrals under you and they do the same amount of work as you do
Earnings from referral = (50 * $15) * 10% = $75
Total monthly earning = $90
So if you work as per this plan then you can end up making around $90 working for 1 hour every day.  Gaining referral is easy in this case as registration requires referral code.
We can’t depend on such Online Data Entry Jobs Without Investment for our living, instead we can do such work whenever we are bored just for some relaxation, fun and meanwhile can make some money too. So this is one of the Best online jobs without investment for sure compared to its peers.
Note: There are many reviews from visitors saying that they do ban account (This happens when we type in the wrong word again and again). So try it at your own risk also the pay you get from such sites are very very less.
Give it a like if you like this article… Thanks

Monday, 2 December 2013

Reading data from excel sheet using liferay/Java


Tuesday, February 26, 2013

Reading data from excel sheet using liferay/Java


Consider the situation where i need to read the data from EXCEL sheet.

So , If you have an input of type "FILE" where you need to upload the Excel sheet and Submit button to submit the file as below code.


In JSP page


Create action URL and file type to submit the file as show the below
PortletURL actionURL = renderResponse.createActionURL();
 actionURL.setParameter("_spage", "/portlet_action/excel/excel");

<form method ="post" action = "${actionURL}" type"multipart/encrpt>
    <input type ="file" name"filename"/>
   <input type ="submit"/>
                 </form> 


In Class i am reading the Excel sheet as follows as ,


In Class


boolean isMultipart = ServletFileUpload.isMultipartContent(request);

if(isMultipart) {   //Checking the Type of file

FileItemFactory factory = new DiskFileItemFactory();

ServletFileUpload upload = new ServletFileUpload(factory);

List items = null;

try {

items = upload.parseRequest(request);

} catch (FileUploadException e) {

log.error(e);

}


StringBuilder errorBuilder = new StringBuilder();

Iterator itr = items.iterator();

while (itr.hasNext())
{
  FileItem item = (FileItem) itr.next();   //Since form is of type encrypt we should follow this procedure

if(!item.isFormField()) {

String itemName = item.getName();

String fieldName = item.getFieldName();

if(fieldName.equalsIgnoreCase("file")) {

File file = new File(itemName);

try {

item.write(file);

InputStream ios = new FileInputStream(file);

//Here the actual coding starts 
HSSFWorkbook workbook = new HSSFWorkbook(ios); 
HSSFSheet sheet = workbook.getSheetAt(0); // Getting the first Sheet 
Iterator rows = sheet.rowIterator(); // Getting the rows 
int rowCount = 0; 
while (rows.hasNext()) {   //Iterating the Rows 
HSSFRow row = (HSSFRow) rows.next();  // Getting the First Row  
for(int i=0;i<15;i++){  //Iterating the First rows of 15 cells (Here i am assuming that i have filled only 15 cells for row  
HSSFCell cell = (HSSFCell) row.getCell(i); //Getting the first Cell 
if(cell!=null){              
      val  = cell.getRichStringCellValue().toString(); //Getting first cell value            
       System.out.println("Value is "+ val);

  }
  }





// Import Statements i have used  in this class is :


import org.apache.commons.fileupload.FileItem;
import org.apache.commons.fileupload.FileItemFactory;
import org.apache.commons.fileupload.FileUploadException;
import org.apache.commons.fileupload.disk.DiskFileItemFactory;
import org.apache.commons.fileupload.servlet.ServletFileUpload;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;


for first 5 imports
https://drive.google.com/file/d/0B1c-cxUeQg5Oa0o3czdsSlY4dVU/edit?usp=sharing


for last 4 imports
https://drive.google.com/file/d/0B1c-cxUeQg5OY2p3SHU3aXVULTA/edit?usp=sharing



2 comments:

  1. I want the jar file to be included?
    Reply
    Replies
    1. I have provided links to download the jar files.