User Profile

Collapse

Profile Sidebar

Collapse
tyagithehacker
tyagithehacker
Last Activity: Sep 21 '11, 03:05 AM
Joined: Jul 2 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • tyagithehacker
    started a topic Eclipse Helios's Password required pop-up
    in Java

    Eclipse Helios's Password required pop-up

    My Helios:

    irritates me every time it try to use "Auto Suggest" feature of the IDE. It almost happens every time i try to use that feature (except sometimes, don't know why).


    Version Details:
    Eclipse Java EE IDE for Web Developers.

    Version: Helios Service Release 2
    Build id: 20110218-0911
    See more | Go to post
    Last edited by Niheel; Sep 20 '11, 01:50 PM. Reason: You have to upload the image, the URL was pointing to your desktop

  • tyagithehacker
    replied to Remote Desktop To Windows XP
    Good one ROB, nice research !!

    I had experienced the same thing many times but never bothered to find out, WHY ???
    Keep it up \m/
    See more | Go to post
    Last edited by tyagithehacker; Apr 26 '11, 01:43 PM. Reason: missing \m/ logo :p

    Leave a comment:


  • Hi vijay,
    Keeping in mind that you dont have hands on exprience in progamming nither you like it i would suggest you to regester on the below mentioned link. you would be lucky if you got selected for ITIS. This would be best for your skill set.

    Choose DIPLOMA under "entry lavel direct applicant"

    http://www.careers.tcs.com/CareersDe...areersHome.jsp...
    See more | Go to post

    Leave a comment:


  • tyagithehacker
    started a topic Pattern matching: Audio and Images ?

    Pattern matching: Audio and Images ?

    Hi All,

    I want to try my hands in AI (artificial intelligence) based application developement. So i just wanted to ask how would we recognise the pattern among the audio and/or graphics files.

    Hint: application must be capable of sorting all the images of a particular person.
    Or the audio player must be capable of suggesting some songs to user based on what kind of music user usually (prefer to) listen.
    ...
    See more | Go to post
    Last edited by tyagithehacker; Apr 18 '11, 12:48 PM. Reason: Aditional information

  • I'm not sure, but let's make a guess....

    How will you switch from screen saver mode to normal mode ? By mouse or keyboard interrupt. So when you do this you are actually interrupting the IO-processor (DMA). Since these screen savers(SS) are the part of OS*, The OS can easily trace this event.

    These application must be implementing some subroutine, and these subroutine must be capable of tracing the DMA interrupt and...
    See more | Go to post

    Leave a comment:


  • Thanks Chad, i actually want that webcam to be a mobile webcam ie: to be installed either on safety helmet, or on eye-safety glasses. Is it a concern..??
    Also can you please suggest me a good SDK-IDE, that could help me in application development.mor eover, i haven't developed any application in c# till now, just want to carry it forward with my JAVA,C/C++ skills would it be of any use?
    See more | Go to post
    Last edited by tyagithehacker; Jan 13 '11, 09:39 AM. Reason: incomplete message

    Leave a comment:


  • tyagithehacker
    started a topic Which language would be suitable for WebCam?
    in APIs

    Which language would be suitable for WebCam?

    i want to develop an application which can enable video communication between two remote systems over a network. can any one please suggest me which programming language would be suitable for that?
    thanks in advance.
    See more | Go to post

  • tyagithehacker
    replied to What is wrong with the code?
    in Perl
    What a damn silly blunder it was. Feeling offended now. Sorry guys.
    Thanks Bazz
    Thanks RonB
    See more | Go to post

    Leave a comment:


  • tyagithehacker
    replied to What is wrong with the code?
    in Perl
    Code:
    if ($ent ==  "")
    	{
    		print "\nNo Match Found !!!\nPassword Cannot be changed";
    	}
    	else
    	{	
    		my $dn=$ent->get_value('entrydn');
    		my $cn=$ent->get_value('cn');
    		print"\nOne Match Found !!!\nEmployee Name: $cn";
    		
    		my $mesg2 = $ldap->modify('$dn', replace =>{'userpassword'=> 'Test123' });
    		
    		my $error = $mesg2->error;
    ...
    See more | Go to post

    Leave a comment:


  • tyagithehacker
    started a topic What is wrong with the code?
    in Perl

    What is wrong with the code?

    Code:
    my $mesg2 = $ldap->modify('$dn', replace =>{'userpassword'=> 'Test123' });
     
     
            my $error = $mesg2->error;
            print "\n############$dn \n############$error";
            if($error == "Success")
            {
                print "\nPassword $error fully Changed";
            }
            else
            {
                print "\nCaught
    ...
    See more | Go to post

  • Even though the defination of BIOS and CMOS given above is perfectly right, i do not agree that there is no relation between CMOS and BIOS. both are closely related as BIOS instruction (a small low level software) are written over ROM chip, and this ROM chip is CMOS chip.

    thus one can say that CMOS chip (a chip that implements CMOS technology) is just a hardware component , on which BIOS instructions are stored.
    See more | Go to post
    Last edited by tyagithehacker; Dec 27 '10, 09:33 AM. Reason: gramatical mistake.

    Leave a comment:


  • API is to kernel as Protocols is to Network server ?

    Is it right to say that protocol plays the same role in networking context as API plays in context of kernel of a standalone computer? As both of them defines the way to access the intended services; over the network in case of “network server” and on standalone computer in case of “Standalone Computer”.
    See more | Go to post

  • wow, very nicely answered. thanx :-)...
    See more | Go to post

    Leave a comment:


  • As u said before:-

    On a simple embedded platform where the process has direct access to the physical memory then you might well be storing the direct physical address of them memory.

    can u please tell me some/any of the OS/plateforms where processes has direct access to physical memory.

    does it mean that under those OS/plateforms there is no memory manager exist.

    and if there is no virtual...
    See more | Go to post

    Leave a comment:


  • >>>>Applicati on layer
    Transport layer

    both communicates with network layer through OS's system calls.

    >>>>Network layer

    network layer communicates with physical layer through DIVICE DRIVERS.

    Physical layer....
    See more | Go to post

    Leave a comment:


  • can you please explain this line of yours..

    "There is no relationship between the logical address and the physical memory location in the computer."

    As i feels that there is a corresponding physical address to each and every logical address....
    See more | Go to post

    Leave a comment:


  • can you please tell me what type of plateform "UNIX red hat" is...??...
    See more | Go to post

    Leave a comment:


  • Address stored by pointers is PHYSICAL or LOGICAL

    Me and 1 of my friend were arguing, over the nature of address stored by pointers in c language.

    He was saying that its logical address, while i thought he is wrong. can anyone plz tell me who is right, he or me, plz give the reasion for the same.

    thanx in advance.
    See more | Go to post

  • tyagithehacker
    replied to Is C a Object oriented language...?
    in C
    hmm it was much clear this time.
    thanx a lot... :-)...
    See more | Go to post

    Leave a comment:


  • tyagithehacker
    replied to Is C a Object oriented language...?
    in C
    Does system call open() is violating C's principles.

    C is basically a non-object oriented language, then while doing system programming in UNIX why we have two different versions of OPEN function (system call):

    Code:
    [I]int open(const *pathname, int flags);
    int open(const *pathname, int flags, mode_t mode);[/I]
    which is basically a popular feature called Function Overloading of object oriented language...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...