Search This Blog

Pages

Saturday, March 6, 2010

Playstation on PC

Play ps1 games on your computer.

Follow these steps-->

1)Download the emulator "epsxe" from the   net.

2)Install it

Look like:


3)Download the latest bios & plugings for   it.They are availaible easily on net.

4)copy all the downloaded bios file into the bios folder of installed epsxe.

5)copy all the downloaded plugins file into the plugins folder of installed epsxe.


It will look like:



6)Start epsxe.exe

It look like:


7)Goto Config-->Wizard Guide

Look like:

8)Click on config

9)Choose the recommended one.

Look like:

10)Choose next.Repeat process 9 until you are asked for Configuring the cd-rom.

11)In Configuring the cd-rom,choose Linuzappz Iso Cdr Driver 1.4(version may vary).

12)click on config button

13)click on select iso.choose the iso you want to play.click on ok.

14)Click on next

15)Click on controller1 button and make your desired settings

16)Click on next

17)click on done

18)Goto File

19)Choose run-iso

20)Select your iso


21)Game will be played.

Friday, March 5, 2010

Create Talking software

Follow these steps-->

  • Open Notepad
  • Write this code
Dim msg, sapi
msg=InputBox("Enter your text")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
 

  • Save it as talk.vbs
  • open it
  • Anything you enter in textbox & click ok will be spoken.
  • Done

Thursday, March 4, 2010

Make your own cmd

Make Your Own Command Prompt :
Follow these steps—>
  • Copy the following script in noteped–>
    Quote:
    code(surrounded by [])@echo off
    cls
    :loop
    set command=
    echo ——————————–
    chdir
    set /P command=”Prompt: ”
    echo ——————————–
    %command%
    goto loop
  • Save the file as cmd.bat.
  • Done

Wednesday, March 3, 2010

Re-enable your Registry,Taskmanager

Follow these steps-->




Reenable Registry editor-->



Goto start > run



Type this or copy and paste this to your run command line..



REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 0



Reboot





Reenable Task manager-->



Click Start -> Run. Type in "regedit" (no quotes) and hit Enter.



Search for HKEY_CURRENT_USER -> Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ System.



Look for: DisableTaskMgr. Double Click on it.



Change the value in "value data" coloumn to 0



Close RegEdit



Reboot

Thursday, February 25, 2010

Remote Desktop Connection

For performing Remote Desktop Connection follow these steps(for Windows 7)--->

  • Press window key+break
  • Goto Advanced system settings
  • Goto Remote tab
  • Check the option saying "Allow Connection from computer running any version of remote desktop"
  • Click on Apply & then on ok
  • Goto Start->All programs->Accessories
  • Select Remote Desktop Connection
  • Enter the ip address of person you want to connect
  • Click on Connect
  • Enter the desired username & password
  • Click on ok
  • Remote Desktop Connection is made

Note-->The computer which you want to connect through Remote Desktop must have a Login

Password(mandatory)

Alternative-->

if you want to save yourself with this long process then download Teamviewer.

But the limitation is it must be installed on both the computer ie the one connecting & the one being connected.

SPDY:Experimental Protocol for faster web

It is under Chromium Project.

SPDY--

SPDY (pronounced "SPeeDY") is an application-layer protocol for transporting content over the web, designed specifically for minimal latency.In lab tests, the performance of these applications are compared over HTTP and SPDY, and have observed up to 64% reductions in page load times in SPDY.

Some of the features of HTTP that inhibit optimal performance:
  • Single request per connection.
  • Exclusively client-initiated requests.
  • Redundant headers.
  • Optional data compression.

Goals for SPDY--

The SPDY project defines and implements an application-layer protocol for the web which greatly reduces latency. The high-level goals for SPDY are:
  • To target a 50% reduction in page load time. Our preliminary results have come close to this target (see below).
  • To minimize deployment complexity. SPDY uses TCP as the underlying transport layer, so requires no changes to existing networking infrastructure.
  • To avoid the need for any changes to content by website authors. The only changes required to support SPDY are in the client user agent and web server applications.
  • To bring together like-minded parties interested in exploring protocols as a way of solving the latency problem. We hope to develop this new protocol in partnership with the open-source community and industry specialists.

Some specific technical goals are:
  • To allow many concurrent HTTP requests to run across a single TCP session.

  • To reduce the bandwidth currently used by HTTP by compressing headers and eliminating unnecessary headers.

  • To define a protocol that is easy to implement and server-efficient. We hope to reduce the complexity of HTTP by cutting down on edge cases and defining easily parsed message formats.

  • To make SSL the underlying transport protocol, for better security and compatibility with existing network infrastructure. Although SSL does introduce a latency penalty, we believe that the long-term future of the web depends on a secure network connection. In addition, the use of SSL is necessary to ensure that communication across existing proxies is not broken.
  • To enable the server to initiate communications with the client and push data to the client whenever possible.

SPDY FEATURES--

SPDY adds a session layer atop of SSL that allows for multiple concurrent, interleaved streams over a single TCP connection.

The usual HTTP GET and POST message formats remain the same; however, SPDY specifies a new framing format for encoding and transmitting the data over the wire.


Make header files in c

You can easily make a header file in c by following these steps:

1)open turbo c

2)Go to File->New

3)write all the header files & functions(except main) which you want in ur header files in the program.

4)Save it in Directory\tc\include\filename.h

5)filename is your desired header file name.Remember to save with filename.h extension.

6)Now open any new program

7)Include the header file u just made.

Example:

my.h:

#include

void fun()

{

printf("Hello");

}

in my case saving as--c:\tc\include\my.h

Check.c:

#include

void main()

{

fun();

}