Pages

Showing posts with label Tips And Tricks. Show all posts
Showing posts with label Tips And Tricks. Show all posts

Sunday, August 7, 2011

Latest : Free GPRS On Aircel Airtel , TATA DOCOMO



Before Trying It : 
        1. This is for educational purpose only.

How To Create MAtrix Effect Using Command Prompt (CMD)

If you love Matrix effect that is the falling of random numbers or letters top to down then here is a small trick to create your own matrix of numbers as well as alphabets of  different colors.









Monday, August 1, 2011

Mediafire Uploader Desktop Application with Download Link



Z_O_O_m's File & Image uploader which is a very tiny but poweful software application for Windows. This is a great tool to upload to mediafire direct anonymously or logging in. This can not only be called as Mediafire Uploader because of it also supports a large numbers of Filehosting websites, image as well as video hosting sites.


The Supported Hosting Sites Are :  

Friday, July 1, 2011

How To Use Unlimited Aircel 3G Using 2g Sim

 Hi friends here I am going to tell you ,How to use unlimited Aircel 3G using your Aircel 2G SIM and of-course using the 2G GPRS plans i.e the 14,27,98, etc.

Wednesday, March 30, 2011

The Easiest Way To Put Custom Watermark On Video

We see videos where logo(watermark that may be text as well as image) of the production company are there. Have you tried to put your own text/image logo on that  Of course there are different video watermarking softwarea available in the market like video watermark factory,vidlogo,etc. But maximum of those are not free i.e. either shareware or commercial software.
I am here going to tell you the easiest simple way to put custom watermark on any video with some tiny tools which are freely available.

The tools you require are:
1. VirtualDubMod . You can get it here.
2.Image Creation.manipulation Software e.g Paint.Net,MS Paint,etc.
3.A logo filter(optional) e.g Donald Graft's logo filter

So,how to do this. The followings are the steps.

Friday, March 18, 2011

Google, Blogger,Orkut,Gmail Not Opening in Firefox, chrome [Problem Solved]

IS YOUR FIREFOX OR CHROME BROWSER TELLING YOU THAT "CONNECTION FAILED" OR "SERVER NOT FOUND"OR "OOPS LINK IS BROKEN" WHEN YOU ARE ATTEMPTING TO OPEN WWW.GOOGLE.COM OR ANY OTHER GOOGLE LOGIN OR REDIRECTING PAGES LIKE WWW.BLOGGER.COM OR WWW.ORKUT.COM OR WWW.GMAIL.COM ?

Did your browser crashes during opening google.com or other google.com redirected page?

This may the cause of a malware or a virus . This is generally knows as Google rediecting virus. You may not fixed it by performing system clean up, virus scan , etc.

Here is the best way( I have tried and its worked) to solve the google redirecting problem.

THE STEPS ARE:

1. CHECK YOUR LAN SETTING
    

Saturday, January 1, 2011

4 Simple And Easy Ways To Make Free Internet Calls | Free PC To Phone Calls :-

Are you looking for a way through which you can make free calls from internet to phone numbers both landline and mobile also, across the globe ? The good news is, there are some good and simple ways you can make free internet call. Most of these provides free calls to US and Canada only and some provides all around the world. I am going to explain some of those which are the best according to me(as i have used them), you can try them.

1. Eva phone:-


EvaPhone is a popular website to make free Internet phone calls. EvaPhone lets you make free, but incredibly short, PC to phone calls all from a Flash-based interface right on their website.
Through EvaPhone, you can call nearly any phone in the entire world for free. Another thing that 


Saturday, November 27, 2010

Google Servers (url) In Different Contries Worldwide

Google ,the search engine giant is the product of Google Inc.Google Inc. was founded in 4th September 1998 in california, US. Now a days google is the no1 most visited website in the internet. Google provides services like search,mail,readr,google site,group,videos,and many more across the  world.
     Google servers are spreads all over the world. If you open www.google.com in a country then automatically it will redirects to the local google server of that country if the country has, otherwise it will not.
    Goolgle.com changes it logo( the original is permanent)  temporarily in occasion of some special days.
Here is  a list of google servers or urls for different contries worldwise. 


  Image source : www.google.co.in

(Logo of Google India)
A
Afghanistan-----------------------www.google.com.af
Albania-----------------------------www.google.com/intl/sq/
Andorra-------------------------www.google.ad
Angola---------------------www.google.it.ao
Argentina-------------------www.google.com.ar
Armenia--------------------www.google.am
Australia--------------www.google.com.au
Austria------------------www.google.at
B

Bahamas-------------www.google.bs
Bahrain--------------www.google.com.bh
Bangladesh-----------www.google.com.bd
Belarus--------------www.google.com.by
Belgium--------------www.google.be
Bolivia ---------------www.google.com.bo
Botswana--------------www.google.com.bw

Wednesday, November 10, 2010

7 Easiest ways To Download YouTube videos And Other Online Videos


There are many websites that allows online videos sharing . Some example of these are Youtube(www.youtube.com), Metacafe(www.metacafe.com), Veoh(www.veoh.com) ,Videosurf ,etc . YouTube is a part of google network .Youtube is the most popular website for video sharing which allows user to watch video , upload and share any videos. Most of the internet users use YouTube to share or see their favorite videos. YouTube has more popularities than other but unfortunately it does not provide any method or any facility to download those videos to user’s computer.
     Here are some easiest way to download YouTube videos or any videos from any video sharing websites .
  
1.       USING ORBIT DOWNLOADER
      Orbit downloader is a popular download manager software to download from internet to computer.Orbit is one of the best 3rd party software to download youtube  videos. This is a very small but powerful tool for download for internet. Orbit is a freeware.
You can download Orbit from here. Get the latest version of Orbit , install it (close all browsers before installing). The installation process will install orbit downloader with a Grabbing software.
     Go to youtube and play the video then a icon should appear asking to download or grab the video . Just click on it and it will download the playing video to your computer

Saturday, October 9, 2010

Create A Download Manager In Java


         Have you ever thought to create a software of your own. Here I am going to explain how to create a Download Manager using Java programming  landguage. First of all I should write “What is a download manager and what does it do?”.

What is a download manager and what  does it do?
    A download manager is a program or you can say it a software who downloads a file or data from a server to user computer requested by the user. The download process is nothing but the simple form of client/server relationship.

  The Download Manager uses a simple yet effective GUI (Graphical User Interface) built with Java’s Swing libraries. The Download Manager is broken into a few classes for natural separation of functional components. These are:
 Download, DownloadsTableModel, ProgressRender and DownloadManager classes .

      The DownloadManager class is responsible for the GUI interface and makes use of DownloadsTableModel and ProgressRender class. The Download class represents a “managed’ download.

The Download Class
 import java.io.*;
import java.net.*;
import java.util.*;

// This class downloads a file from a URL.
class Download extends Observable implements Runnable {
   
    // Max size of download buffer.
    private static final int MAX_BUFFER_SIZE = 1024;
   
    // These are the status names.
    public static final String STATUSES[] = {"Downloading",
    "Paused", "Complete", "Cancelled", "Error"};
   
    // These are the status codes.
    public static final int DOWNLOADING = 0;
    public static final int PAUSED = 1;
    public static final int COMPLETE = 2;
    public static final int CANCELLED = 3;
    public static final int ERROR = 4;
   
    private URL url; // download URL
    private int size; // size of download in bytes
    private int downloaded; // number of bytes downloaded
    private int status; // current status of download
   
    // Constructor for Download.
    public Download(URL url) {
        this.url = url;
        size = -1;
        downloaded = 0;
        status = DOWNLOADING;
       
        // Begin the download.
        download();
    }
   
    // Get this download's URL.
    public String getUrl() {
        return url.toString();
    }
   
    // Get this download's size.
    public int getSize() {
        return size;
    }
   
    // Get this download's progress.
    public float getProgress() {
        return ((float) downloaded / size) * 100;
    }
   
    // Get this download's status.
    public int getStatus() {
        return status;
    }
   

Wednesday, October 6, 2010

HOW TO MAKE A USB BOOTABLE

 Instructions to making a bootable USB drive using Vista/Windows7
This guide will not work on Windows XP.
1. Insert your USB stick into USB port (MUST be 4GB or higher).
 
Warning: Backup the data on your USB drive as we are going to format it

2. Open the Command Prompt: (follow steps listed below to do this)

Go to Start Menu >

All programs >

Accessories >

Right click on ‘Command Prompt’

Select ‘Run as Administrator’

3. When the Command Prompt opens, enter the following command:

DISKPART (hit enter)

LIST DISK (hit enter)

(Note: Once you enter the LIST DISK command, it will show the disk numbers of all drives connected to your PC)

4. In this step, enter all the below commands one by one and hit enter:

SELECT DISK 1 (Replace “DISK 1? with your USB drive’s disk number, For example: If your usb is 4GB,
and Disk 2 shows 4000mb disk size, type SELECT DISK 2, as that is your usb drive)
CLEAN

CREATE PARTITION PRIMARY

SELECT PARTITION 1

ACTIVE

FORMAT FS=FAT32 (Format process may take a few minutes, depending on the size of the USB drive)

ASSIGN

EXIT

(Note: Don’t close the command prompt as we need it for the next step. Just minimize it)

5. Insert your Windows DVD in the DVD drive.
Note the drive letter of the DVD Drive and USB Drive.
(Here I use “D” as my DVD drive letter and “F” as my USB drive letter)

NOTE: Drive letters can be assigned or changed. In the start menu right click “Computer”,
select “Manage”. A window will open. Select Disk Managment (Near the bottom of the list
on the left side panel), Right click a drive to assign, change or remove the drive letter).

6. Go back to command prompt window and execute the following commands:

D: CD BOOT (Where D: is your DVD drive letter) And hit Enter.

BOOTSECT.EXE/NT60 F: (Where F: is your USB drive letter) And hit Enter.

XCOPY D:\*.* /S/E/F F:\ (Where D: is your DVD drive, and F: is your USB Drive) And hit Enter.

8. Wait for DVD contents to copy to USB.
Done. Now You can  use this bootable USB as a bootable DVD on any computer
that comes with USB boot feature (most of the current motherboards support this feature).

Write Odia (Oriya) Using English Letters

As Described as by the Publisher:

dhwani Unicode is a software(probably the first Unicode Translator) for odia
language.This uses Unicode characters.The Unicode is provided by Odia.org
This is a simple unicode to write odia letters through English alphabet.This produce
odia equivalent letter for each input of English letters.



Basically there are 3 softwares for different versions of MS Windows operating
system.This, Unicode is for Windows XP SP2 2003 and above.

This is a great software for those who wants to view or write in odia in windows.
The current version of this software is dhwani Unicode version 1.2 and updated versions
are yet to release soon.


Size: 750kb

System Requirements:

* Windows XP(SP2) and up.
* .NET Framework 2.0 and up.(It will automatically install it.).
* Mukta Font By CDAC,Pune,India.

                                                          DOWNLOAD

Download dhwani Unicode from www.odia.org here

Sunday, October 3, 2010

USEFUL RUN COMMANDS


To open RUN goto Start>>RUN or
Simply press “Windows logo key + R
A
Add/Remove Programs = appwiz.cpl
Administrative Tools = control admintools
Abort Shutdown= shutdown –a
C
Calculator = calc
Certificate Manager = certmgr.msc
Character Map = charmap
Check Disk Utility = chkdsk
Control Panel = control
Command Prompt = cmd
Component Services = dcomcnfg
Computer Management = compmgmt.msc or CompMgmtLauncher
D
Date and Time Properties = timedate.cpl
Device Manager = devmgmt.msc
Direct X Troubleshooter = dxdiag
Disk Cleanup Utility = cleanmgr
Disk Management = diskmgmt.msc
Disk Parmelonion Manager = diskpart
Display Properties = control desktop or desk.cpl
Driver Verifier Utility = verifier or /reset
E
Event Viewer = eventvwr.msc
F
File Signature Verification Tool = sigverif
Folders Properties = control folders
Fonts = control fonts
Free Cell Card Game = freecell

G
Group Policy Editor = gpedit.msc
I
Internet Explorer = iexplore
Iexpress Wizard = iexpress
Internet Properties = inetcpl.cpl
IP Configuration = ipconfig.exe
K
Keyboard Properties = control keyboard
L
Libraries = explorer or Windows key + E
Local Security Settings = secpol.msc
Local Users and Groups = lusrmgr.msc
Logs You Out Of Windows = logoff
M
Microsoft Paint = mspaint
Mouse Properties = control mouse
Mouse Properties = main.cpl

N
Network Connections = control netconnections
Network Connections = ncpa.cpl
Notepad = notepad

o
On Screen Keyboard = osk
P
Performance Monitor = perfmon.msc
Phone and Modem Options = telephon.cpl
Power Configuration = powercfg.cpl
Printers and Faxes = control printers
Private Character Editor = eudcedit

R
Regional Settings = intl.cpl
Registry Editor = regedit.exe
Remote Desktop = mstsc
Resultant Set of Policy = rsop.msc
S
Scheduled Tasks = control schedtasks
Security Center = wscui.cpl
Services = services.msc
Shared Folders/MMC = fsmgmt.msc
Shuts Down Windows = shutdown
Sounds and Audio = mmsys.cpl
Spider Solitare Card Game = spider
SQL Client Configuration = cliconfg
System Configuration Editor = sysedit
System Configuration Utility = msconfig
System File Checker Utility = sfc
System Information = msinfo32
System Properties = sysdm.cpl or
Windows key + Pause/Break

T
Task Manager = taskmgr
U
Utility Manager = utilman or Windows key+u
User Accounts = netplwiz or control userpasswords2

W
Windows Firewall = firewall.cpl
"
Windows Media Player = wmplayer
Windows Magnifier = magnify
Windows Management Infrastructure = wmimgmt.msc
Windows System Security Tool = syskey
Wordpad = write