Saturday 30 July 2016

Cloud Download Any file including TOrrent To Goole Drive

Many of us suffer from slow download speed, high cost , no resume support etc. And in case of torrent some times its too slow even in 3G speed. So previously we have used bytebx, zbigz, quick torrent etc as cloud downloader, so that we can letter download it using our favorite downloader. But personally I faced many problems in zbigz, bytebx. So searched for another option and found:-

Offcloud which is an cloud downloader for Google Drive. that is you can download any file directly to your google drive.

Just SignIn with your gmail, 

go to Google Drive

Click New--> More---> Remote Download

paste the download link or torrent file and click Fetch


Now go to Google Drive and You will see the file . You can now save the file to your Computer.


Monday 14 October 2013

How to enable Java Script on UC Browser for S60v5


If you have a Symbian v5 mobile like 5230, 5233 or 5235. Then most of are using UC Browser to browse and downloads, as its fast, reliable and has a download resume capability with an easy cloud download option. But friends one annoying fact that disturbs the pros of this beautiful browser, Is the JavaScript not working in i.e. you can’t skip the waiting time or get the  option in some pages like "adf.ly" and go to your download page. Even if the JavaScript is enabled in the default browser, its remains the same. Even the QT package not working fully, at least in my case QT can’t help me to  SKIP AD on adf.ly. Then My curious friend Utpal do a research on this and get a solution. Thanks to my friend.....

 So friends just download Component Master from here and extract it to E :( Memory Card). That’s it now you have a fully functional s60 device.

Note:  If you are downloading this via UC on your s60 phone. Then UC may show you Cloud Download option instead of Save.  You need to log in to UC cloud using Facebook or Google account or you can create a UC account simply. Then you can save it to local i.e. download it in Memory card. If you want to extract it on your s60 phone then you will need THIS .
If you face any problem or it solved the problem, Please COMMENT.

Thursday 19 September 2013

HOW to Write Compile & Run Java Program on Windows 8 64 bit

How to Write , compile and Run java Program via Commamd Prompt(CMD) in 64 bit Windows

In the previous version of windows writting java programs is done via "edit " command. Bur now in the modern 64bit 
version of windows dont have the classic MS-Editor(edit.exe) thow 32bit versions still have it.. In 64bit Windows the only
option to write any text via CMD is "notepad"........All the procedure is as follows

1. Download latest JDK 64bit  (jdk-7u25-windows-x64) & install it.

2. Richt click on Computer icon(desktop) and click properties
    click Advance System Settings
    click Environment Variables
    In the system variables box click on Path ----Click Edit
    In the variable value just ADD ";C:\Program Files\Java  
    \jdk1.7.0_25\bin" without quotes at last. i.e. Don't delete   
    a single letter of the previous value, only add the above
    text after it
    save every thing you've done by clicking OK.
  Here is the screenshot of the step 2


3. Now open cmd(windows key +R and type cmd & Enter)

4. Type "notepad" without quotes

5. Write your java program and save it in your Home Directory 
   i.e. C:/Users/usrername(currently you have logged in) or You cam Create A folder(suppose named JAVA) to Store all
   your java programs and class files.

6. To set CMD to start in your JAVA folder(the folder you recently created) type CMD in run and Enter,
     Right ckick on CMD icon of tast bar --->Right click on Command Prompt ----> click properties ---->In the starts in box write \JAVA after the %HOMEDRIVE%%HOMEPATH% string. And save
    Now every time you open CMD it will starts in your JAVA folder that u have created in step 6.

7. Save your java program as class name.java( if the class name is Hello then program name should be Hello.java)

8. Compile with javac<space><program name.java> (like    javac Hello.java  )

9. If compilation shows no error tye java<soace><program name>  (like   java Hello ) to run the program.

10. If compilation showa any error type notepad<space><program name.java> ( as notepad Hello.java ) to edit the progrm.