Posted by [V3N0M] on Saturday, January 31, 2009
Labels:

Now-a-days Pen Drives are easier to transfer data from one PC to another. Pen Drive makes your immovable data movable and it becomes recover your deleted data the easiest method for storing and handling large number of data. In the same way Pen drives can get damaged due to power surges, static electricity, lightning strikes, fires, floods, sabotage, viruses, accidents, & user error i.e. deleted files etc.

This software provides Pen Drive Data Recovery Services to recover lost missing, deleted, formatted, corrupted, Data files, folders and other similar files stored in your damaged Pen Drive. this provide you with the best pen drive recovery services. Our Pen Drive Recovery Specialists successfully recover data from corrupt or damaged tape drives, damaged due to following reasons:

  • Physical damage to the Pen Drive due to water, electricity and fire etc.
  • Failure in back up
  • User error such as accidental deletion
  • Improper System Shutdown.

This software recover lost data from corrupt or damaged Pen Drive and provide complete solution for Pen Drive Recovery. This software successfully recover data by using an easy methodology from corrupt or damaged Pen Drives instantly as Our recovery services serves your need quickly and it is cost Effective.

Just download this software and just feel relax.

Download for undelete your file

[V-LINKED]

posted by V3N0M . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Friday, January 30, 2009
Labels:

Probably the best way to start learning a programming language is by writing a program so in this tutorial I am going to tell how can you start writing the simple program.

STEPS:

simple prog in c++

  • #include <iostream>
    • Lines beginning with a hash sign (#) are directives for the preprocessor. They are not regular code lines with expressions but indications for the compiler's preprocessor. In this case the directive #include <iostream> tells the preprocessor to include the iostream standard file. This specific file (iostream) includes the declarations of the basic standard input-output library in C++, and it is included because its functionality is going to be used later in the program.
  • int main ()
    • This line corresponds to the beginning of the definition of the main function. The main function is the point by where all C++ programs start their execution, independently of its location within the source code. It does not matter whether there are other functions with other names defined before or after it - the instructions contained within this function's definition will always be the first ones to be executed in any C++ program. For that same reason, it is essential that all C++ programs have a main function.
    • The word main is followed in the code by a pair of parentheses (()). That is because it is a function declaration: In C++, what differentiates a function declaration from other types of expressions are these parentheses that follow its name. Optionally, these parentheses may enclose a list of parameters within them.
    • Right after these parentheses we can find the body of the main function enclosed in braces ({}). What is contained within these braces is what the function does when it is executed.
  • cout << "Hello World!";
    • This line is a C++ statement. A statement is a simple or compound expression that can actually produce some effect. In fact, this statement performs the only action that generates a visible effect in our first program.
    • cout represents the standard output stream in C++, and the meaning of the entire statement is to insert a sequence of characters (in this case the Hello World sequence of characters) into the standard output stream (which usually is the screen).
    • cout is declared in the iostream standard file within the std namespace, so that's why we needed to include that specific file and to declare that we were going to use this specific namespace earlier in our code.
    • Notice that the statement ends with a semicolon character (;). This character is used to mark the end of the statement and in fact it must be included at the end of all expression statements in all C++ programs (one of the most common syntax errors is indeed to forget to include some semicolon after a statement).
  • return 0;
    • The return statement causes the main function to finish. return may be followed by a return code (in our example is followed by the return code 0). A return code of 0 for the main function is generally interpreted as the program worked as expected without any errors during its execution. This is the most usual way to end a C++ console program.

Now see the program code below:

#include<iostream.h>
int main()
{
cout<<"\n Hello world";
return 0;
}

  • To see out put just press alt+F5.

In the above program code “/n” is used to enter the text in new line. Now we can make the calculation programs in c++ by making just simple changes and defining some variables.

NOTE:

We can make comments in the program just to make it user friendly by putting just two slash as “//”.

Now see the following program code:

//This program adds two numbers
#include<iostream.h>
int main()
{
int a,b,sum;
cout<<"\n enter the value of a:";
cin>>a;
cout<<"\n enter the value of b:";
cin>>b;
sum=a+b;
cout<<"\n sum="<<sum;
return 0;
}

  • To see out put just press alt+F5.

Addition program in c++ Here cin command is used to for input the data and int a,b,sum; is used to define three variables a,b and sum. In cout<<”\n sum=”<<sum; the sum which is without the inverted commas is for output data. the data which we have to show in output is put without the inverted commas. With just changing the operation sign we can now make the program for subtraction, multiplication and division program.

Now practice these program in your c++ compiler and learn many more on                   [ V-LINKED]

posted by V3N0M . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Thursday, January 29, 2009
Labels:

Ever wonder how programs like Paint or Calculator are made? Well, learn how to create a basic application using this step-by-step guide.how to make a window

STEPS:

  • Get a compiler. A compiler transforms your raw source code (which you will soon write) into an executable application. For the purpose of this tutorial, get DEV-CPP IDE. 
  • After installing DEV-CPP, open it. You will be presented with a window with a text area where you will write your source code.
  • Get ready to write a program to display text in a textbox. Before you begin writing the source, keep in mind that Win32 applications don't behave in the same way as other languages, such as JAVA.
  • In the main screen of DEV-CPP, go to File -> New -> Project. You will be presented with another screen. Choose the little picture which says "Windows Application" and set the language as "C", not "C++." At the text box where it says "Name", enter "SimpleProgram." Now, DEV-CPP will ask you where you wish to save it. Save the file in any directory, but just be sure to remember it. As soon as you are done with that, you will be presented with a template on the source screen. Do Ctrl+A and then Backspace. The reason we are doing this is so that we can begin anew.
  • At the begin of your source, type "#include <windows.h>" (without the quotes). This includes the windows library so that you can make an application. Directly beneath that, write:

 #include "resource.h" And then type: const char g_szClassName[] = "myWindowClass";

  • Write one method to handle all the messages and write another method where we will handle the messages from the resources. Don't worry if this is confusing. It will become clear later on. Now, save your source as SimpleProg.c. We will be leaving it as is for the moment.
  • Make a Resource Script. A Resource Script is a piece of source code which defines all your controls (e.g: TextBox, Buttons, etc.) You will incorporate your Resource Script into your program and Voila! You will have a program. Writing the Resource Script isn't hard, but can be time consuming if you don't have a Visual Editor. This is because you will need to estimate the exact X and Y coordinates of the controls, etc. In your DEV-CPP main screen,

go to File -> New -> Resource File.

DEV-CPP will ask you "Add resource file to current Project?" Click YES. At the top of your resource script, type

#include "resource.h", and also type #include <afxres.h> This takes care of all the controls.

  • Make your first control: a simple menu. Type:
    • IDR_THEMENU MENU
    • BEGIN
    • POPUP "&File"
    • BEGIN
    • MENUITEM "E&xit", ID_FILE_EXIT
    • END
    • END
  • The "IDR_THEMENU" part defines your menu as THEMENU. You can call it whatever you want, however. The BEGIN part is self explanatory. The POPUP "&File" makes a new menu catagorey called File. The & sign allows the user of your application to type Ctrl+F on the keyboard and quickly access your menu :) The MENUITEM "E&xit", ID_FILE_EXIT adds a menuitem to the File catagorey. You must, however, define the menuitem by doing ID_FILE_EXIT.
  • Now for the button part. Your button will be inside a dialog, so we must make the dialog first. Do this by typing:
    • IDD_SIMPLECONTROL DIALOG 50, 50, 150, 142
    • STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION |
    • WS_SYSMENU
    • MENU IDR_THEMENU
    • CAPTION "Simple Prog"
    • FONT 8, "MS Sans Serif"
    • BEGIN
    • DEFPUSHBUTTON "Hello!", ID_HELLO, 10, 10, 40, 15
    • END
  • The IDD_SIMPLECONTROL defines your dialog. The four numbers after the word "DIALOG" determine x-pos, y-pos, width, and height of the dialog. Don't worry too much about the Style part for now. The MENU IDR_THEMENU puts our old menu into the program. The CAPTION speaks for itself as does the font. The DEFPUSHBUTTON creates our button named "Hello!" and we define it by saying ID_HELLO and give it x-pos and y-pos and width and height coordinates.
  • That's it! We're done with our resource script. Only one more thing remains. We have to assign values to all the things we defined in our resource script (e.g. IDR_THEMENU, etc.) Save the resource file as SimpleProg.rc
  • Go to File -> New -> Source File. Add the source file to the current project? Yes. You will be presented with a blank screen. To assign values to our defined controls, we give them numbers. It doesn't matter too much on which numbers you give your controls, but you should make them organized. For example, don't define a control by giving it a random number like 062491 or something. So type:
    • "#define IDR_THEMENU 100"
    • "#define ID_FILE_EXIT 200"
    • "#define IDD_SIMPLECONTROL 300"
    • "#define ID_HELLO 400"
  • Save this file as resource.h Do you remember we did "#include "resource.h""? Well, this is why we did it. We needed to assign values.
  • Get back to the source, our SimpleProg.c or whatever you called it. Type:

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow){return DialogBox(hInstance, MAKEINTRESOURCE(IDD_NUMBERS), NULL, SimpleProc);}

  • Don't worry too much with all the technical stuff here. Just know that this parts returns the dialog to our message handling procedure called SimpleProc.
  • Type:

BOOL CALLBACK SimpleProc(HWND hWndDlg, UINT Message, WPARAM wParam, LPARAM lParam){switch(Message){case WM_INITDIALOG:return TRUE;case WM_COMMAND:switch ( LOWORD (wParam) ) {case ID_HELLO:MessageBox(NULL,"Hey", "Hallo!", MB_OK)break; case ID_FILE_EXIT:EndDialog(hWndDlg, 0);break;}break;case WM_CLOSE:EndDialog(hWndDlg, 0); break; default: return FALSE;}return TRUE;}

  • This part handles the dialog messages. For example in the case ID_HELLO (our button), we make a message box saying hello. Also, in the case where we go to File and Exit, we close the window in case ID_FILE_EXIT.
  • Make sure that your SimpleProc comes before the int WINAPI WINMAIN part! This is important if you want your program to work.
  • Press F9 to compile and run your program!

[V-LINKED]

posted by V3N0M . WIKIHOW . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Wednesday, January 28, 2009
Labels:

First, you need to know the basic java concepts of object and interface. We assume that you already know this - if no, you need to start from something like "how to learn java". How to Create a Swing GUI in Java

This article explains how to create simple application that is show in the figure on the left, giving its source code as well.

To place buttons, text labels and other components on the program window, you need to understand about JPanel. It is a kind of container for components, which occupies the rectangular piece on the screen and shows the components arranged in some simple way. How exactly the components are arranged, depends on which layout have you set to that panel. For the manual programming you will likely need to know at least the BorderLayout which places four components at the sides and one large component into the middle, then the FlowLayout which usually arranges them side by side into horizontal row and finally the GridLayout which arranges components into arbitrary n * m table. There are more of them, but others seem too complex for beginners. The key idea here is that a "component" can be not just a button or check box - it can also be another JPanel. You can get a complex user interface by just putting panels one inside another and choosing the layouts for them.

Once you have an instance of JPanel, call the .setLayout method to set the layout and then the .add method to add the components to it and . For the BorderLayout, you need to give the location as a second parameter. For instance, call myPanel.add(myButton, BorderLayout.North) to place your buttom at the top edge.

The top level container, which appears on the screen representing java application, is not a JPanel but JFrame. Call myJFrame.getContentPane().add(myJPanel, BorderLayout.Center) to add your main panel to the instance of JFrame.

To make your application to do more than just appear you also need to understand the ActionListener interface. Every non-abstract ActionListener has a single method, actionPerformed, which is called automatically when the user makes an "action" with the component on which the listener is registered (the action with button is, obviously, pressing it). To register action listener for the button or other component, call the method.

STEPS:

Making the Overall Frame

  • Create a class that extends the JFrame class. This class will hold all of your GUI components, such as buttons and textfields.
  • Plan the overall layout of your first application. A good start could be a central panel with BorderLayout with another panel at the bottom (BorderLayout.South). This second panel may have the FlowLayout and contain several buttons, check boxes and other similar controls. Finally, place the bigh JTextArea into the center of the central component. You will be able to use its getText() and setText() methods to do some text-based interaction with the user.
  • Write constructor to your class. This constructor must create all panels and components you plan, place them properly into each other and add the final panel the "holds all" to you frame (myFrame.getContentPane().add(myLargePanel, BorderLayout.Center).
  • Write the main method which will be the program's entry point. In this method, create an instance of your frame, set the intial size and location (use .setSize(x,y)and .setLocation(width, height) ) and make it to appear on the screen by calling .setVisible(true).

Programming responses to the user actions

  • Make your frame implement the ActionListener interface. This will allow your class to listen to components' activities.
  • For every button, check box or other control that you have created, invoke its method .addActionListener, passing your frame (this) as parameter.
  • Override ActionListener's abstract method, actionPerformed(ActionEvent event). In this method, you should put if statements checking where does the action event come from. This if statement should have a condition that says something like "if (event.getSource() == button1)". This checks where the event came from and if it came from your button. Inside the if statement, do whatever needs to be done when your button is pressed.
  • JTextArea has a method .setText("myText") which seems good as the way to program some visible response on your action.

TIPS:

  • It is not much more difficult to implement the MouseListener interface and use .addMouseListener to register it to any component.
  • If you want to draw your own graphical objects (like chessboard), read about the Canvas component. It can be placed into your application like any other, but you need to write method .paint which is fully responsible for drawing it.
  • If you need to ask some input string from the user, call the static method JOptionPane.showInputDialog(this, "My message"). The first parameter must be your application frame or some panel (the input box will appear in the center of the parent). The method returns the value that user enters into the dialog box.
  • In many practical applications the most useful Swing component is JTable. After you master the basic, proceed directly to it.
  • It is possible to put all components into single panel using GridBagLayout, but this class is more difficult to master.

[V-LINKED]

posted by V3N0M . WIKIHOW . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Tuesday, January 27, 2009
Labels:

If you've ever wondered how to create a torrent, you've come to the right place. This article will explain how to create a torrent and use it to upload whatever you want to people all over the world!how to create a torrent

STEPS:

  • Investigate your torrent client. Most up-to-date clients can make torrents, some may not be able to. For a client that can create torrents try µTorrent for Windows, Transmission for Mac or Deluge for Linux.
  • Select the option to make a new torrent file. This is usually located under the File menu and named "Create New Torrent" or something of the same meaning. If it is not in this location try looking under other menus or the toolbars. If you are still uncertain, check the official website of your client for more details.
  • Select the files you wish to be in the torrent. If you will have several files consider arranging them all first in a folder, so you can simply select that folder to use as the torrent contents. The name of your torrent file will usually be the name of the file or folder in it. You can easily rename the file afterwards.
  • Enter a tracker. A tracker controls the transfer of data for your torrent. A tracker looks similar to an ordinary URL. A list of trackers is available here. If you want to index your torrent on a torrent downloads website then you should use the tracker owned by that website, as not all indexing sites will allow external trackers. If you are using a private tracker (You probably are not.) then be sure to tick the box to mark it as private. Do not tick this box otherwise.
  • Add any additional information. You can add a comment for the torrent if you wish. The piece size should be left at the automatic setting unless you know what you're doing. Once you have filled in all the required areas create your torrent. You may be asked where to save and what to call the .torrent file, or you may have been asked beforehand.
  • Now that you have your torrent file open it ready for seeding. Some clients have a seed mode specifically for this. If you do not seed your torrent it will be useless because nobody can download your files.
  • Share your torrent. If you are making the torrent so you can send a friend a file, just send them the .torrent file. If you want it open to the public to download you are best listing it on a torrent download website. Once on such a site find the link to add or upload a new torrent and fill in the required information. You will probably be required to register if you have not already. Once people start downloading the torrent off you it will gather more and more seeders. If you wish you can stop seeding once the torrent is "stable" or continue.

TIPS:

  • When submitting your torrent on a website, give it a descriptive title and description and place it in the best category. This way it will be found more easily. Check the comments for your torrent incase other users have questions regarding your torrent.

[V-LINKED]

posted by V3N0M . WIKIHOW . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Saturday, January 17, 2009
Labels:

What is C++? C++ is an high level language which was developed by Bjarne Stroustrup in 1985 at Bell Labs in America as an enhancement to the C programming language. C++ was developed to implement the concepts of ‘data abstraction’ one of the concept of classes which was not possible in C.

C++ is widely used in the software industry. Some of its application domains include systems software, device drivers, embedded software, high-performance server and client applications, and entertainment software such as video games. Several groups provide both free and commercial C++ compiler software, including the GNU Project, Microsoft, Intel, Borland and others.

The language began as enhancements to C, first adding classes, then virtual functions, operator overloading, multiple inheritance, templates, and exception handling among other features. These all functions were not possible in C.

In my later tutorials I will discuss how to start basic programs in C++ along with its terminologies used in it till then stay tuned with V-LINKED.

[V-LINKED]

posted by V3N0M . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Thursday, January 15, 2009
Labels:

protect your pendrive from viruses.Do you hate viruses….I also hate them specially in pen-drives when we want to transfer the data to the computer and due to virus our computer gets effected so to get rid of that and to preserve your computer from attack of USB viruses we can perform a virus scan from a powerful antivirus but in that case many hidden virus may cant be removed so don’t get worry, just take a look on the following tutorial and play with viruses.

STEPS:

  • Attach your USB pen-drive to your pc.
  • Click on cancel if a window appear for asking to open the pen-drive folder.
  • Just note the name of drive of your USB pen-drive.
  • Click on start.
  • Click on run as.
  • Type cmd and press enter. (command prompt will open)
  • Now write the drive name and press enter. For example if your USB drive name is k then write k: (The command prompt will direct the USB drive)
  • Now write attrib and press enter. (all files in pen-drive will be displayed with their type name)
  • Make sure that their is no SHR file in that if their is then it may be a virus. Here S stands for system, H stands for hidden and R stands for read only file.
  • Their is no need of any system files in USB Drives so the file having s status is surely a virus.
  • Generally common viruses are:
    • Autorun.inf
    • Ravmon.exe
    • New Folder.exe
    • svchost.exe
    • Heap41a
  • Now to remove these viruses we have to type attrib –s –h –r and the file name and then press enter and then write del and the file name. For example if their is autorun.inf as a virus then we will remove it as attrib –s –h –r autorun.inf and press enter then del autorun.inf

By the help of this tutorial your USB drive will be virus free. Now you can transfer your data without any fear.

[V-LINKED]

posted by V3N0M . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Wednesday, January 14, 2009
Labels:

Programming is basically a set of instructions which are given to the computer in order to perform different tasks. Today developers use programming languages so that computer can perform according to the user, the computer will perform the task what the user wants to be done.

Basically programming is divided into two parts , First- Technical which consists of instructions which we give in the programs and the Second deals with the conceptual in which we work upon the idea which we have to perform and the best programming is that which can fulfill these two requirements in a very simple way.what is programming

Programming language mainly broadcast in five steps:-

  • Fortran, C, Pascal
  • High level language
  • Assembly level language
  • Machine level language
  • Hardware

Every programming language has its own syntax and semantics to be written. In my further tutorials I will discuss  C and C++ in details- till that time say tuned with V-LINKED.

[V-LINKED]

posted by V3N0M . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Wednesday, January 14, 2009
Labels:

Sorry readers, I was not able to post articles from last few days as I was hanging out with friends after a long-term university exams and in the mean time I was preparing tutorials for adding new category of programming in which I will start from c++ tutorials……so stay tuned with V-LINKED for more knowledge.

[V-LINKED]

posted by V3N0M . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Saturday, January 10, 2009
Labels:

This reg file automatically ends tasks and timeouts that prevent programs from shutting down and clears the Paging File on Exit. Auto End Tasks to Enable a Proper Shutdown

  • Copy the following (everything in the box) into notepad.
    • QUOTE
      Windows Registry Editor Version 5.00
    • [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
      "ClearPageFileAtShutdown"=dword:00000001
    • [HKEY_USERS\.DEFAULT\Control Panel\Desktop]
      "AutoEndTasks"="1"
    • [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]
      "WaitToKillServiceTimeout"="1000"
  • Save the file as shutdown.reg
  • Double click the file to import into your registry.

NOTE: If your anti-virus software warns you of a "malicious" script, this is normal if you have "Script Safe" or similar technology enabled.

[V-LINKED]

posted by V3N0M . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Friday, January 09, 2009
Labels:

Is your web site running slow? Do web pages take forever to load? It may not be your computer or even the server at the other end. Instead it might be a network issue along the way.How to Traceroute a Computer/Server

STEPS:

WINDOWS STEPS:

  • Click Start.
  • Click Run. From here a box will open.
  • Type in the box "cmd" without quotes. Now the command prompt will open. Here you can type various commands to do different things.
  • Now that the command prompt is open, type in "tracert www.example.com" without quotes and replace www.example.com with the site/server you want to trace to.
  • You will see each 'HOP' along the path to the site/server. On each line there will be three durations (in milliseconds) to each hop along with the domain name of that device and it's IP address.

  You will see something like:

  •     28 ms 41 ms 33 ms www.firstdevicedomain.com [192.168.0.1]
  •     2 48 ms 41 ms 49 ms www.seconddevicedomain.com [16.70.15.99]]
  •     3 92 ms 99 ms 98 ms www.thirddevicedomain.com [53.11.75.99]
  •     4 122 ms 141 ms 137 ms www.domain.com [46.44.5.122]

LINUX STEPS:

  • If you run Linux, install open your favorite terminal (RXVT, gnome-terminal, kterm)
  • type "traceroute www.example.com"

MAC OS X STEPS:

  • Open up Applications >> Utilities >> Terminal
  • Type "traceroute www.example.com"

[V-LINKED]

posted by V3N0M . WIKIHOW.ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Thursday, January 08, 2009
Labels:

Sometimes we need to add new fonts to our system as per according to choice of user. This is a quick guide on how to download and install fonts on a Microsoft Windows PC.how to add new fonts to your pc

STEPS:

  • Search for fonts on the Internet. There are many online font libraries, as well as individual sites that may have a small collection of fonts. Some will change a flat rate, some will charge a monthly fee, and others charge by the individual font. Although they do exist, very few online font libraries will offer free fonts. Some will even offer free, individual font downloads, while charging a flat fee for downloading their entire collection in one compressed file. or simply goto www.1001freefonts.com for downloading free fonts.
  • Download the fonts or collection of fonts you want to the Desktop or other folder you'll remember. If you know someone with a good collection of public domain fonts, ask them to copy their fonts for you.
  • Extract the compressed file(s) if your download file has a ".zip", ".rar", or other compressed file extension. Have them extracted into your 'Fonts' folder (typically: "C:\WINDOWS\Fonts").
  • Browse to the "Fonts" folder by opening "Windows Explorer" (Windows' default file browser), or navigate to it by opening "My Computer".
  • Sort the file listing by clicking on the "Date Modified" column header.
  • Locate the font(s) installed by the current date and time.
  • Double-click on each font to view a sample of it.
  • Delete any fonts you don't want by right-clicking on them and selecting "Delete". Alternatively, highlight the fonts you don't want by clicking once on them, the pressing the  key. Hold down  or  while clicking to highlight multiple fonts at one time. Now you'll be able to use these new fonts within applications.
  • You may need to refresh your fonts by rebooting your computer so that your new downloads will work.

TIPS:

  • Only install the fonts you want. The performance of a Windows system will degrade with too many fonts installed. Typically 300 or less fonts on a Windows PC will not affect performance much, but a thousand fonts will significantly degrade system performance.
  • For Windows XP, 2000, and Vista users, you must be an administrator to install fonts.

[V-LINKED]

posted by V3N0M . WIKIHOW.ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Wednesday, January 07, 2009

Everyone wants to download a song or video but could only listen/watch it by waiting for it to finish buffering. Then keep on reading!How to Keep Buffered Media

STEPS:

  • Wait for the video/song/other to finish buffering.
  • Open Temporary Internet Files or wherever your temporary internet files get stored. Find the application you waited for to finish buffering.
  • Copy the application and paste it somewhere else.
  • Open and use as needed. Now whenever you open that application it will open up and play without buffering.
  • Or you can use different type of download managers like orbit,DAP,IDM to download the streaming data on your hard disk.Specially Grab Pro from Orbit is a very good tool to grab YouTube/metacafe or streaming music on webpage.

TIPS:

  • It could get hard to find the application in the Temporary Internet Files folder so you might want to empty your Temporary Internet Files folder before you let the application start buffering.

WARNING:

  • Don't empty the Temporary Internet Files folder after the buffering starts or else you would have to start the buffering all over.

Download Orbit - 2.8.1

[V-LINKED]

posted by V3N0M . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Tuesday, January 06, 2009
Labels:

Disk Defragment Utility

Disk Defragment is one of the most common way to speed up the performance of your hard drives. This is the tutorial about How to defragment your hard drive and why is it necessary. Fragmented files are simply made into your hard drive when you delete a file or move a file to other place. Fragmented simply means the file is not stored in one place in its entirety, or what computer folks like to call a contiguous location. Different parts of the file are scattered across the hard disk in noncontiguous pieces. That is why hard drive takes time to access the file and slow down your computer. So to overcome from this problem disk defragment utility is designed which makes the noncontiguous files to contiguous location and enhance the hard drive performance.

defrag your hard drive Steps:

  • Open my computer.
  • Right click on drive which you want to defrag.
  • Click on properties.
  • Click on tools.
  • Click on defragment now.
  • Click on analyze which is at the bottom of disk defragment window.
  • Click on view report which will give you the present detail about your selected drive.
  • Click on Defragment.
  • Click on view report again, now it will show you the details of defragmented drive.

Tips:

For best performance of your hard drive just defrag all your hard drive twice a week.

[V-LINKED]

posted by V3N0M . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Monday, January 05, 2009
Labels:

Windows Registry is a registry that stores configuration information about many important parts of this operating system. By editing you can tune Windows to behave the way you want.How to use a windows registry

STEPS:

  • Type win+r to open run application launching window and then type regedit (then enter) to start the registry editing program. The registry editor should start.

POSSIBLE EDITS

Uninstall Programs Manually

  • Just because Windows XP has the Add/Remove Programs feature it doesn't mean your application will appear in the list. Furthermore, even if it does appear, it's no guarantee that the uninstall feature will work. When you run across one of these situations the items listed below will help in getting rid of the application. Be aware that these steps may not remove everything associated with the application and can impact other applications on the computer. Have a backup or restore point and use caution.
  • Find the directory for the application and delete all the files in the directory. Delete the directory.
  • Open regedit and navigate to HKEY_LOCAL_MACHINE\SOFTWARE and find the folder for the application. Delete the folder.
  • Open regedit and navigate to HKEY_CURRENT_USER\SOFTWARE and find the folder for the application. Delete the folder.
    • To remove the application entry from Add/Remove Programs (if present), open regedit and navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall and find the folder for the application. Delete the folder.
    • Some applications have Services attached to them. If this is the case, navigate to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services, locate and delete the service.
  • In Windows Explorer, navigate to the individual user settings and delete program references. Common places to check would be:
    • C:\Documents and Settings\All Users\Start Menu\Programs and delete relevant entries.
    • C:\Documents and Settings\All Users\Start Menu\Programs\Startup and delete relevant entries.
    • C:\Documents and Settings\%YourUserID%\Start Menu\Programs and delete relevant entries. [Do this for each User ID listed]
    • C:\Documents and Settings\%YourUserID%\Start Menu\Programs\Startup and delete relevant entries.[Do this for each User ID listed]
  • If no entries were found in the previous step and the application launches automatically, navigate to

HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows and delete the entry.

Move Location of History Folder

  • By default, History files (the URL to sites that you have visited, organized by day) are stored at in the folder %USERPROFILE%\Local Settings\History. You can redirect these files to any folder using the following Registry changes:
    • Hive: HKEY_CURRENT_USER
    • Key: Software\Microsoft\Windows\CurrentVersion\Explorer\UserShellFolders
    • Name: History
    • Data Type: REG_SZ
    • Value: path to new folder

Clear Pagefile on Shutdown

  • When Windows shuts down, it leaves the pagefile intact on the hard drive. Some programs may store sensitive information in clear text format in memory (which in turn may be paged out to disk). You may wish to empty this file for security reasons, or to help speed a boot time defrag, or because you dual boot, and you don't want to share the file, or just as part of troubleshooting a problem. Making the following registry change (or create the following entry) will clear your page file when rebooting.
    • Hive: HKEY_LOCAL_MACHINE
    • Key: SYSTEM\CurrentControlSet\Control\Session Manager\Memory
    • Management
    • Name: ClearPageFileAtShutdown
    • Data Type: REG_DWORD
    • Value: 1

Disable Changing Passwords

  • If, for some reason, you decided that you didn't want users of a Windows 2000 computer to be able to change their password unless prompted to, you can make this Registry change to implement that:
    • Hive: HKEY_CURRENT_USER
    • Key: Software\Microsoft\Windows\CurrentVersion\Policies\System
    • Name: DisableChangePassword
    • Data Type: REG_DWORD
    • Value: 1
  • A value of 0 means they can change their password whenever they want to. A value of 1 means that users will not be able to change their password unless prompted (by the password expiring, or by the box next to "User Must Change Password at Next Logon" being checked). Please use caution and frequent backups when working with the Registry.

Get Rid of Shared Documents

  • New to Windows XP is a "Shared Documents" folder that appears in My Computer. This is really just a pointer to another area on disk. You can keep this from appearing by deleting the following Subkey from the Registry:
    • Hive: HKEY_LOCAL_MACHINE
    • Key: SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\My
      Computer\NameSpace\DelegateFolders
    • Subkey: {59031a47-3f72- 44a7-89c5-5595fe6b30ee}
    • Delete the whole Subkey and all that it contains.
  • You may wish to right-click this Subkey and export it before deleting it, just to be safe. This also will prevent the current users "My Documents" from showing up in the same area of My Computer. Use caution and frequent backups when editing the Registry.

Shutdown XP Faster

  • When a user shuts down Windows XP, first the system has to kill all services currently running. Every once in a while the service does not shut down instantly and windows give it a change to shut down on its own before it kills it. This amount of time that windows wait is stored in the system registry. If you modify this setting, then windows will kill the service earlier. To modify the setting, follow the directions below:
    • Start Regedit.
    • Navigate to HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Control.
    • Click on the "Control" Folder.
    • Select "WaitToKillServiceTimeout"
    • Right click on it and select Modify.
    • Set it a value lower than 2000 (Mine is set to 200).
    • Or
    • Like previous versions of windows, it takes long time to restart or shutdown windows
  • xp when the "Exit Windows" sound is enabled. To solve this problem you must disable this useless sound. Click start button then go to settings -> control panel -> Sound, Speech and Audio devices -> Sounds and Audio Devices -> Sounds, then under program events and windows menu click on "Exit Windows" sub-menu and highlight it. Now from sounds you can select, choose "none" and then click apply and ok. Now you can see some improvements when shutting down your system.

Warnings

  • Editing the registry can be very dangerous, and can cause permanent damage to your system!
  • Write down the your changes and initial values. You may need to restore the registry as it was.
  • Registry editing may not be possible in some Windows versions.
  • A few words about clearing the pagefile on shutdown. Doing this has no performance benefits whatsoever. This does not delete the file but overwrites every byte with zero's. A boot time defrag will not be sped up by doing this. Clearing the pagefile is sometimes done as a security measure. But unless it is a part of a well thought out security policy it will avail you little. There are many other ways to obtain access to sensitive data and most of them require less effort. It should also be noted that this will considerably lengthen shutdown times.

[V-LINKED]

posted by V3N0M . WIKIHOW . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Saturday, January 03, 2009
Labels:

Design, develop, and maintain standards-based websites and applications
Build world-class websites and applications with one of the industry's leading web authoring tools. Adobe® Dreamweaver® CS4 software is ideal for web designers, web developers, and visual designers. Adobe Dreamweaver CS4 Portable-Download from vlinked.blogspot.com

Download Adobe CS4 part 1

Download Adobe CS4 part 2

[V-LINKED]

posted by V3N0M . WAREZSHARES . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Saturday, January 03, 2009
Labels:

Google Earth combines satellite imagery, maps and the power of Google Search to put the world’s geographic information at your fingertips. Fly from space to your neighborhood. Type in an address and zoom right in. Search for schools, parks, restaurants, and hotels. Get driving directions. Tilt and rotate the view to see 3D terrain and buildings. Save and share your searches and favorites. Even add your own annotations. Google Earth 4.2  Professional

Google Earth lets you do smooth sailing flybyes of the entire Earth. You can easily fly to any spot on the globe, by entering any associated data, like street addresses, place names or lat/long coordinates. There are overlays that put additional information on the map, like roads, international boundaries, terrain, 3D buildings, crime statistics, schools, stadiums, any number of interesting stuff. You can do Local searches in the program, with icons on the map and a display on the side showing your results.

Features

  • Sophisticated streaming technology delivers the data to you as you need it.
  • Imagery and 3D data depict the entire earth - Terabytes of aerial and satellite imagery depict cities around the world in high-resolution detail.
  • Local search lets you search for restaurants, hotels, and even driving directions. Results show in your 3D earth view. Easy to layer multiple searches, save results to folders, and share with others.
  • Layers show parks, schools, hospitals, airports, retail, and more.
  • Overlays a?“ import site plans, design sketches and even scanned blueprints.
  • Annotate the view with lines and polygons.
  • Spreadsheet import - ingest up to 2,500 locations by address or lat/lon.
  • KML a?“ data exchange format let your share useful annotations

Use it for

  • Planning a trip
  • Getting driving directions
  • Finding a house or apartment
  • Finding a local business
  • Exploring the world

Recommended configuration

  • Operating system: Windows XP and Vista
  • CPU speed: IntelA® PentiumA® P4 2.4GHz+ or AMD 2400xp+
  • System memory (RAM): 512MB
  • 2GB hard-disk space
  • 3D graphics card: 3D-capable video card with 32MB VRAM or greater
  • 1280×1024, 32-bit true color screen
  • Network speed: 128 kbps (”Broadband/Cable Internet”)

Download- google earth professional full

[V-LINKED]

posted by V3N0M . WAREZSHARES . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Friday, January 02, 2009
Labels:

Ever thought if that power up was placed at a different position or ever wanted to own more bullets in your FPS or just want to squeeze more frames out of your game. Well now you can here is a simple tutorial to mod a game.how to mod a game

A game mod is a modification of a game that changes its properties. This how-to shows you how to customize your game with little or no programming.

STEPS:

  • Locate the game folder, which is usually in "C:\Program Files\", and find common file types to replace.
  • Use Notepad or another text editor to modify an .ini file (e.g. gunAmmo(26) to gunAmmo(255)). Some .dat * .cfg files can also be modified, but don't try it if you see a bunch of funny symbols
  • Use Paint or another graphics editor to modify image files. These include files with the extensions .bmp (bitmap), .gif (Graphics Interchange Format), .png (portable network graphics), and .jpeg (Joint Photographic Experts Group), among others. Usually these image files are textures to be mapped to certain surfaces or pictures to be used on the game's intro or setup screens.
  • Replace .wav (wave), .mp3 (mpeg3), and .ogg (ogg vorbis) sound and music files with your own. These are audio files that are used for music tracks or sound effects inside a game.

TIPS:

  • Learn a bit about programming, variables, and hexadecimal. This will help in editing files.
  • .ini files, though they are very useful for game modding, are rarely seen, because programs these days now store their configuration settings in the Windows Registry.
  • Use google to find mods for your game. There are usually whole websites devoted to modding games. They also (sometimes) have special tools and forums.
  • For fun you can replace the .wav files with your own recordings, so for an explosion you just blow into a mic for half a second, or gargle a very small amount of spit.
  • Replace audio files with appropriate sounds. This keeps the game and the actions you performed relative to the sound itself. For example, it wouldn't be very realistic to hear anything other than an explosion when a missile strikes a building.

[V-LINKED]

posted by V3N0M . WIKIHOW . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Friday, January 02, 2009
Labels:

Foobar2000 is an advanced freeware audio player for the Windows platform. Some of the basic features Download Foobar vo 9.6.1 include full unicode support, ReplayGain support and native support for several popular audio formats.

Main features

  • Supported audio formats: MP3, MP4, AAC, CD Audio, WMA, Vorbis, FLAC, WavPack, WAV, AIFF, Musepack, Speex, AU, SND... and more with additional components.
  • Gapless playback.
  • Full Unicode support.
  • Easily customizable user interface layout.
  • Advanced tagging capabilities.
  • Support for ripping Audio CDs as well as transcoding all supported audio formats using the Converter component.
  • Full Replay Gain support.
  • Customizable keyboard shortcuts.
  • Open component architecture allowing third-party developers to extend functionality of the player.

Download-Foobar vo 9.6.1

[V-LINKED]

posted by V3N0M . ALL RIGHTS RESERVED .

Subscribe in a reader
Posted by [V3N0M] on Thursday, January 01, 2009
Labels:

K-Lite Codec Pack is a collection of codec's and related tools. Codec's are required to encode and/or decode (play) audio and video. The K-Lite Codec Pack is designed as a user-friendly solution for playing all your movie files. With the K-Lite Codec Pack you should be able to play 99% of all the movies that you download from the internet.K-Lite Codec Pack 4.4.5 Full

The K-Lite Codec Pack has a couple of major advantages compared to other codec packs:

  • It it always up-to-date with the latest versions of the codec's.
  • It is very user-friendly and the installation is fully customizable, meaning that you can install only those components that you really want.
  • It has been very well tested, so that the package doesn't contain any conflicting codec's.
  • It is a very complete package, containing everything you need to play your movies.

Download-K-lite codec pack 4.4.5

[V-LINKED]

posted by V3N0M . ALL RIGHTS RESERVED .

Subscribe in a reader