| 0 comments ]

Try 1.Technobuz will be writing all post here .
2. click here

| 0 comments ]

For Mozilla user's
* To copy an image in orkut in case if right click is blocked.

1.Drag the image and put in the Address Bar.
2.You will get direct location of de images from orkut image Server.
3.Right click and choose save picture as.


Other ways are by using Fire Bug and page source and obtaining de link i will continue it later:)

| 0 comments ]

AddServerIntf.java
import java.rmi.*;

public interface AddServerIntf extends Remote

{

double add(double d1,double d2)throws RemoteException;

}
AddServerImpl.java

import java.rmi.*;

import java.rmi.server.*;

public class AddServerImpl extends UnicastRemoteObject implements AddServerIntf

{

public AddServerImpl()throws RemoteException

{

}

public double add(double d1,double d2)

{

return d1+d2;

}

}



*AddClient.java

import java.rmi.*;

public class AddClient

{

public static void main (String args[])

{

try{

String addserverURL="rmi://"+args[0]+ "/AddServer";

AddServerIntf addserverintf=(AddServerIntf)Naming.lookup(addserverURL);

System.out.println("The first number is:"+args[1]);

double d1=Double.valueOf(args[1]).doubleValue();

System.out.println("the second number is:"+args[2]);

double d2=Double.valueOf(args[2]).doubleValue();

System.out.println("The sum is:"+addserverintf.add(d1,d2));

}

catch(Exception e)

{

System.out.println("Exception:"+e);

}

}

}


*AddServer.java

import java.net.*;

import java.rmi.*;

public class AddServer

{

public static void main(String args[])

{

try{

AddServerImpl addserverimpl=new AddServerImpl();

Naming.rebind("AddServer",addserverimpl);

}

catch(Exception e)

{

System.out.println("Exception"+e);

}

}

}

Intialization:set u r path to java bin in cmd.Eg:set path=c:\programfiles\jdk1.3\bin


1.Compile al the files.(javac filename.java)
2.Create stub and skeleton for your AddServerImpl.java using the following command

rmic -vcompat AddServerImpl

3.Run the rmiregistry from bin of your jdk folder,leave it unclosed.
4.Run your server file with foolwing command:

java AddServer

5.Open new command prompt window,set the path and run your client code:

java AddClient 127.0.0.1 1 1
6.u should c the summed up value,here 127.0.0.1 is the local host(ur own system).

**If the program is not working set the CLASSPATH in the environmental variable:

Right click my computer->properties->advanced->Environment variable(at de bottome)
In the user variable click new type name as CLASSPATH and for value set u r path where ur java code resides.
Eg:c:\java\rmi

| 0 comments ]

Disabling Right Click and redirecting:

*Place dis code inside "Java Script" Tag


//Disable right click script
var message="Sorry, right-click has been disabled:-)";
///////////////////////////////////
function clickIE() {if (document.all) {window.location="http://www.orkut.co.in/Profile.aspx?uid=8167398536947930242";alert(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {window.location="http://www.orkut.co.in/Profile.aspx?uid=8167398536947930242";alert(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")

| 0 comments ]

The following is the Html code to find what OS your running,
its TESTED working fine with WINDOWS and LINUX.

Save the Code as .html and open it.

See it in Action:Click

Download the file here:
OStest.html

| 0 comments ]

ORKUT STATUS BUG:(Currently Working)


This bug provides the ability to add more then one line in the Status Line


Steps:

1.Go to scrapbook and type what ever u want even new line allowed

2.Then run de following script..




3. Done..

Addded Feature:It also allows you to Lock Your scrapbook.


Check My profile:Click Here

| 0 comments ]

Message Passing:*WildCard*

~It gets Really Wild when we use WildCard,Just try is this Code below:


Set wshShell =CreateObject("WScript.Shell")
wshShell.appactivate("*")
do
wshShell.sendkeys "Hello World"
loop


Here is the Screen Shot:

| 0 comments ]

Message Passing:

You can easily pass a message to any window from a Vbscript,Use the following code to send message to Notepad(new file)

Set wshShell =CreateObject("WScript.Shell")
wshShell.appactivate("Untitled - Notepad")
wshShell.sendkeys "Hello World"
wshshell.sendkeys "{SCROLLLOCK}"

Instruction:
1.Copy in Notepad and save with .vbs extension
2.Open a new file in Notepad.
3.Run the saved .vbs file.

Here is the Screen Shot:









| 0 comments ]

Turn your Keyboard Lights into Disco Lights:

*General Instruction:Copy the code and save it with .vbs extension and double click it.To terminate the process end Wscript.exe in processes from Task Manager.

Set wshShell =CreateObject("WScript.Shell")
do
wscript.sleep 200
wshshell.sendkeys "{CAPSLOCK}"
wscript.sleep 100
wshshell.sendkeys "{NUMLOCK}"
wscript.sleep 50
wshshell.sendkeys "{SCROLLLOCK}"
loop

| 0 comments ]

Make your XP Speak :

*General Instruction:Copy the code and save it with .vbs extension and double click it.
To terminate the process end Wscript.exe in processes from Task Manager.


Dim msg, sapi
msgbox("Turn on de speakers:-)")
msg1 = InputBox("enter")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg1

| 0 comments ]

Vbscript to Eject the Cd

*General Instruction:Copy the code and save it with .vbs extension and double click it.To terminate the process end Wscript.exe in processes from Task Manager.




Set o = CreateObject("wmplayer.ocx" )
Set a = o.cdromCollection
a.item(0).Eject

| 0 comments ]

Rainbow Font For ORKUT:

(use dis script)

| 0 comments ]

ORKUT Logout Script:


Too bored place dis code in ur friends scrap book,just for fun:-)


-------------------------------------------------------------------------------------

| 0 comments ]

NOTEPAD "world trade centre trick":

♥Did you know that the flight number of the plane that had hit WTC on
9/11 was Q33N .Open your Notepad in ur computer and type the flight
number i.e Q33N..Increase the Font Size to 72, Change the Font to
Wingdings. U will be amazed by the findings.

| 0 comments ]

Notepad Trick:


♥Just add a .LOG in the first line of your text file and close it.
Whenever you open the file with that text in the first line in the notepad, it will insert the current date and time at the end of the file. You can start entering your text after that.

| 0 comments ]




































































| 0 comments ]


MusicPlaylist

| 0 comments ]

Sometime you wanna download some e -books and wil end up finding it has a Price Tag on it:-)
Here are links for some E-books that are usually priced ,you can download it free of cost from these links :


Vbscript Programmers Reference*


Link: Click Here
Password:knowfree.net

Vbscript project with source code*


Link:Click Here
Password:knowfree.net

Vbscript Nutshell*


Link:Click Here
Password:ganelon

| 0 comments ]

Mobile Fact:

♥Can we dial a number with the key pad locked..?Not possible,Hmm try.

♥As far as i know there are two numbers you can dail with the key pad
locked.Try these numbers 112 and 911 .These numbers can b dailed even
with u r keypad locked!

♥These are for emergency calls.,Working fine with Sony and Nokia Models.

♥Enjoy.

| 0 comments ]

Sending song scrap in ORKUT:
Impress your Loved Ones by scrapping them a song which they like the most:-)

1.First you need to convert the song into .swf format.

2.To download the converter


3.After converting, upload it into the web.Google Pages is a good option.

4.Then embed and send the scrap,Synatx is as follows:





To view it in actionClick Here

5.Done.Enjoy!

-------------------------------------------------------------------------------------

| 0 comments ]

Wαииα Wяiтє likє diร?

Stylish Cool Fonts For ORKUT:

(υรє diร รcяiρт)


| 0 comments ]

Click To See

| 1 comments ]

Dσи'т Click мє(For Mozilla User`s)

Dσи'т Click мє Pls(For IE User`s)

Dσи'т Click мє

Cяαzy яαbbiт:









| 1 comments ]

Geographical Location



(* Refresh your browser if location is not being displayed)

| 0 comments ]

www.compwizard.webs.com

(~for educative informations~)