Posts

Showing posts from 2012

Shutdown Your System Remotely

Image
Hi friends here is the idea to shutdown your system remotely ..... all you need : – Microsoft Outlook – A phone or computer that can access internet and send emails – 2 email accounts Tested with windows7 and outlook 2010 Step 1:Create Shutdown.bat save where ever you like Step 2:Settings in outlook             i). File->options           ii). Advanced->send/Receive button            iii).Select the options shown below           iv).Then goto File->Manage Rules & Alerts             v).Choose new rule window appears in start from a blank rule select apply rule on message Receive then next.             vi). In the next step, choose with specified words in the subject , on this computer only and then click on specific...

Download Free Computer Graphics E-book

Image
Hi friends as per requests am just uploading only books.Today am here with new book Computer Graphics (C version) Author:Donald Hearn,M.Paulin baker Click Here To Download

the complete reference c++-free ebook

Image
hi friends download the complete reference c++ ebook Author:Herbert Schildt Edition :4th editon Click here to download

Download free book "Let Us c"

hi friends here is another book...."Let Us C" Fifth edition by Yashavant P. Kanetkar      The book which is helpful for c programmers...n it is easy to understand for beginners    Click here to download the free Book

Installing andriod development tool to eclipse

Image
Today Am going to explain how to install andriod in eclipse Before going to install to eclipse make sure that you installed -jdk version 1.6 -sdk version 2.x(x-any version in 2,sdk-android software development kit) -set your device in Avd manager -eclipse indigo these are all the minimum requirements(and minimum versions) Now start with eclipse-indigo  -Goto Help-Install new software  -click on "Add" button   (The dialogue will appears as shown in image)  -enter any name you want(ADT plugin is preferred)  -copy the below address to that Location area(If you have interenet in your system)   https://dl-ssl.google.com/android/eclipse/  -(Another method for location area : incase you already downloaded the ADT plugin    - click here to download ADT plugin20.0.3 -browse this downloaded file into    Location area then press "ok".select the only "development tools" and uncheck the    last option ...

Small Registry trick for welcome note on windows XP

H i guys ,      Today am going to show to make welcome note in windows xp by simple registry editing and dont worry about how to edit registry and al. i'll show you registry editing with cretaing  file and using this file you can easily edit the registry just by double clicking that file. Step 1:  1st you need to open notepad         start-> run-> notepad Step 2:  And copy this below code and paste in it...(copy 8 lines of code including line showing version also) Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system] "dontdisplaylastusername"=dword:00000000 "shutdownwithoutlogon"=dword:00000001 "undockwithoutlogon"=dword:00000001 "LegalNoticeText"="hi....this is from prasad...welcome to pc world....." "LegalNoticeCaption"="Raviprasad" Step 3: change the message between " " in last 2 lines as you ...

Small virus code to hang your friend's system

Image
Hi friends,Today i am going to tell you about small virus program(small command line program).    Are you interested to write virus programs and make your friend panic ?, here we go.    Before going to exact thing lets know about "virus"-virus is small unwanted program that affect the system Okay guys don't scold me"you stop saying non sense and come to point"....:p .This is just for knowledge i am saying.  This works in all windows.this involves following simple steps.... Step 1 : open notepad- goto start - Run - type "notepad" Step 2 : copy and paste the below code to your notepad (only one line i.e symbols and number) %0|%0 Step 3: save it as "virus.bat"(what ever name that you want with .bat extension) Step 4 : now your virus is ready.copy this file to your friend system and double click on that file and see that system will hang on you can't do anything at that time.(Don't worry Restart system to r...

Download Spring in Action free ebook

Image
Download spring in action ebook for free... 3rd edition by craig walls Click here to start download

Hibernate in action free ebook download

Image
The Best book for Hibernate.... download it for free.... Publishers : Christian Bauer , Gavin King Click here to Start download

Download free ocjp or scjp material for free

hi friends,this is the preferred scjp or ocjp exam SCJP SCJD 1.6 Kathy Sierra & Bert Bates most of questions are asked by this book u can get more than 90% marks by this book. this book authors only set the scjp or ocjp exam questions. click here to download

c program to reverse string without using library functions

#include<stdio.h> #include<string.h> main() {  char str[50],revstr[50];  int i=0,j=0,n=0;  printf("Enter the string to be reversed : ");  scanf("%s",str);        while(str[n]!='\0')         //to get string length     {       n++;     }    for(i=n-1;i>=0;i--)        //at 1st iteration i=total length-1    {      revstr[j]=str[i];      j++;     }  revstr[j]='\0';  printf("Input String : %s",str);  printf("\nOutput String : %s",revstr);  getch(); }

Head First HTML with CSS and XHTML free download

very good book for learning html with css published by:o'reilly Head First HTML with CSS and XHTML click here to start download

Drag and drop the file to the command line for path

When working with files with a long file path instead of typing the full path drag-and-drop a file into the command line. For example, if you needed to copy the picture.gif file from E:\Ravi\Users\Documents\folder\image directory you could open that folder in Windows Explorer and drag and drop the file into the command line to have "E:\Ravi\Users\Documents\folder\image\photo.gif" entered into the command line. Note: works in almost all windows os except some versions.

Access Windows Desktop icons without minimizing anything

Image
If you keep your most frequently used files and shortcuts on the Desktop, you can quickly access those icons by adding a Desktop Toolbar to your Windows Taskbar by following the below steps. Right-click on the Windows Taskbar. Click Properties. In the Taskbar and Start menu Properties Window, as shown above, click the Toolbars tab and check the Desktop checkbox and click Apply. Once the above steps have been completed you should have a Desktop option by the Windows Notification area of your Taskbar, which is also shown at the bottom of the above picture. After the above steps have been completed, click the chevron arrows next to Desktop will display all shortcuts and files stored on the Desktop

Head First Servlets and JSP free pdf download

This is the book for servlets and jsp. Edition: 2nd edition Authors: Bryan Basham , Kathy Sierra , Bert Bates Download from below link: click here to start download

Head first java book free download

Hi guys,here is an head first java's ebook. the best book for java. Author:Kathy sierra, Bert Bates Edition: 2nd edition Download it from below link. click here to start download  

java program to check whether the given number is prime or not

import java.util.*; public class IsPrime {     public static void main(String[] args)     {         Scanner sc=new Scanner(System.in);         boolean flag=true;         int n=sc.nextInt();         if(n>=2)         {             for(int i=2;i<n;i++)             {                 if(n%i==0)                   flag=false;             }             if(flag)               System.out.println("is prime");             ...

java program to print 1 to n prime numbers

import java.util.*; public class PrimeNumber {     public static void main(String[] args)     {         Scanner sc=new Scanner(System.in);         int n;         boolean flag=true;         n=sc.nextInt();         for(int i=2;i<=n;i++)         {             for(int j=2;j<i;j++)             {                 if(i%j==0)                    flag=false;             }             if(flag)                System.out.print(i+...

windows all shortcut keys..

Image
The following table contains keyboard shortcuts that can help make your computer easier to use. Press this key To do this Right Shift for eight seconds Turn Filter Keys on and off Left Alt+Left Shift+PrtScn (or PrtScn) Turn High Contrast on or off Left Alt+Left Shift+Num Lock Turn Mouse Keys on or off Shift five times Turn Sticky Keys on or off Num Lock for five seconds Turn Toggle Keys on or off Windows logo key +U Open the Ease of Access Center The following table contains general keyboard shortcuts. Press this key ...