Fishery

Catch many information here

  • I entered into my college for the first day having lots of dreams in my mind. Thinking about my school life, I enjoyed it by studying most of the time and having fun sometimes. I have scored good marks and got seat in an engineering college. My dream while I’m entering the college was to get my degree with a good percentage. My college celebrated the fresher’s day for welcoming the students who are entering into the college life. All fresher are asked to introduce themselves and have given a chance to perform something on the stage.

    Before entering into the college, I was very scared thinking about the ragging problems, but the college is so good that I did not face any such problems. I enjoyed my first day of my college life. I got lots of information about my college and my college activities by the program. We all have got a warm welcome by our college.

    No Comments
  • It was a nice day I went along with my college friends to a theme park. We went to theme park together during the final year of my college. We planned to start in the morning. As we planned, we have started but unfortunately when we are on the way to theme park our vehicle has got some problem and it took nearly two hours for us to solve the problem. Then we started and entered into the theme park in the mid-noon, it was too late to enter into the park, because it has lots of rides to enjoy.

    Though we entered late, we enjoyed all rides in the theme park. We played in most of the rides, though we are in less period of time. Since we went to theme park during the end of our college life, we enjoyed much. The day was really a funniest day. It was one the most enjoyable day in my college life.

    No Comments
  • I love blogging. My friends encouraged me last year for doing blog. Now I love to write post. It’s one way of KT (knowledge Transfer). I had nice experience in blog as well as with Web people. I’m getting knowledge about technical, entertainment, technology, and other new software features while blog walking. Every one has different thoughts, they will put into their domain. Why I started this domain is? Just for sharing my thoughts, experience, and knowledge.

    1 Comment
  • Some of the commands I collected for performing the action at Windows XP(OS) with easy way and fast accessing. I shared for your usage.

    Windows Environment Commands :

    %ALLUSERSPROFILE% - Open the All User’s Profile
    %HomeDrive% - Opens your home drive e.g. C:\
    %UserProfile% - Opens you User’s Profile
    %temp% Opens - temporary file Folder
    %systemroot% - Opens Windows folder
    Wupdmgr - Takes you to Microsoft Windows Update

    General keyboard shortcuts :

    CTRL+C(Copy)
    CTRL+X (Cut)
    CTRL+Z (Undo)
    DELETE (Delete)
    SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin)
    CTRL while dragging an item (Copy the selected item)
    CTRL+SHIFT while dragging an item (Create a shortcut to the selected item)a
    F2 key (Rename the selected item)
    CTRL+RIGHT ARROW (Move the insertion point to the beginning of the next word)
    CTRL+LEFT ARROW (Move the insertion point to the beginning of the previous word)
    CTRL+DOWN ARROW (Move the insertion point to the beginning of the next paragraph)
    CTRL+SHIFT with any of the arrow keys (Highlight a block of text)
    CTRL+UP ARROW (Move the insertion point to the beginning of the previous paragraph)
    SHIFT with any of the arrow keys (Select more than one item in a window or on the desktop, or select text in a document)
    CTRL+A (Select all)
    F3 key (Search for a file or a folder)
    ALT+ENTER (View the properties for the selected item)
    ALT+F4 (Close the active item, or quit the active program)
    ALT+ENTER (Display the properties of the selected object)
    ALT+SPACEBAR (Open the shortcut menu for the active window)
    CTRL+F4 (Close the active document in programs that enable you to have multiple documents open simultaneously)
    ALT+TAB (Switch between the open items)
    ALT+ESC (Cycle through items in the order that they had been opened)
    F6 key (Cycle through the screen elements in a window or on the desktop)
    F4 key (Display the Address bar list in My Computer or Windows Explorer)
    SHIFT+F10 (Display the shortcut menu for the selected item)
    ALT+SPACEBAR (Display the System menu for the active window)
    CTRL+ESC (Display the Start menu)
    ALT+ Underlined letter in a menu name (Display the corresponding menu)
    Underlined letter in a command name on an open menu (Perform the corresponding command)
    F10 key (Activate the menu bar in the active program)
    RIGHT ARROW (Open the next menu to the right, or open a submenu)
    LEFT ARROW (Open the next menu to the left, or close a submenu)
    F5 key (Update the active window)
    BACKSPACE (View the folder one level up in My Computer or Windows Explorer)
    ESC (Cancel the current task)
    SHIFT when you insert a CD-ROM into the CD-ROM drive (Prevent the CD-ROM from automatically playing)
    CTRL+SHIFT+ESC (Open Task Manager)

    No Comments
  • You can create icon of your own and the procedure for creating it is a very easy process. There is no need of much knowledge in computers for creating it. To create it on your own just follows the procedure:
    Open paint application. Draw a picture whichever you want but in 100 x 100 pixel are better.
    Save the file in hard drive (not in a folder) openly named as
    “ABC.ico” (note: you can type your name also)
    Open notepad application: type:
    [Autorun]
    icon = ABC.ico
    And save the file with name “autorun.inf”.
    Restart the PC and see the magic.

    No Comments
  • It is possible to create /design a header file in c++.  Just declare your prototype functions in a c++ file.
    For example:
    #define RES_32
    Void masters(){
    ….. your functions
    }
    You save this file as an “.h” extension, and include it within your program. Then you use all the functions in your c++ course file/program.
    You can create header files in c/c++. The only thing you have to do is write your program without main() and store this program with extension “.h”. It is the best if you store it in the folder which contains all the header files. We can have header files like this and use them as we use other header files.
    The way to write header files is:
    functions.h:
    int sum( int a, int b);
    functions.cpp:
    #include “functions.h”
    int sum(int a, int b){
    return a+b;
    }
    Compile:
    g++ -c functions.cpp –o functions.o
    main.cpp:
    #include”functions.h”
    main() {
    cout<<sum(1,2)<<endl;
    }
    Compile and execute main:
    g++ main.cpp functions.o –o main
    main

    No Comments
  • Users who logon to a windows domain can change their password for their domain accounts when they are not signed in? Here is a simple way.
    There are many cases, though far from ideal usage, where a legitimate user is not logged on to a Windows domain on your network, and still may need to change his password. When he is logged on to the domain, he can simply press Ctrl+Alt+Delete, select ‘Change Password’ button and do it. But if he is logged on to his local system or another domain, changing the password becomes difficult. One way around is to call up the administrator and get him to change it. But this means that the new password is not a secret one. The best way is to use IIS. Note that to continue with the steps described below, you need to be on a Windows Server 2003 driven domain with IIS 6.0 installed.

    Step 1: Enable scripts.
    In some cases, the scripts to use the functionality (changing passwords) may have been installed to the server’s hard disk, but not linked to IIS. To check whether the scripts have been installed, open the IIS management console, the Website folder and then the Default Website node there. If a virtual directory site by name ‘IIS Admin password’ exists, skip to step 3 below. Right click and create a new Virtual Directory. Provide the path as ‘%systemroot%\system32\Inetsrv\Iisadmpwd’ with ‘Read’ and ‘Run scripts’ permissions. Now, we need to allow this script to change passwords. Open a command prompt window and change directory to your INETPUB folder and the following command.
    You can alternatively set it to ‘0’ (instead of the ‘1’ at the end of the command above) to allow the operation only if it comes in on HTTP(we are enabling it for regular HTTP).

    Step 2: Configure access
    Now, we need to limit access to this path to only legitimate users of the domain. This is simple. Go again to the IIS management console; navigate to the virtual directory site you added in step 1 and select Properties from its context menu. Go to the Directory Security tab and click on the Edit button under ‘Authentication’ and check the option for ‘Integrated Windows Authentication’. Now, when a user hits the URL to change his password, he will see a login box to authenticate himself before proceeding.

    Step 3: Change password

    To change password, user should visit <http://mydomainserver/iisadmpwd/aexp2b.asp>.  Now , the user can be logged on locally to his computer and still change his password. Also, if he is mobile and this URL is accessible from the Net, then also he can change his password.

    No Comments