Recent content by Yohhan

  1. Y

    Querying nameservers

    If I wanted to learn all subdomains registered under a domain I did not own, how would I do that? Can I use nslookup on my Linux box to determine this information? ie I know: domain.com And I want to discover if there exists an: a.domain.com b.domain.com c.domain.com ...etc...
  2. Y

    Changing X server startup parameters

    My xserver starts up using the following command: /usr/X11R6/bin/X :0 -audit 0 -auth /var/gdm/:0.Xauth -nolisten tcp vt7 I want to remove the -nolisten parameter, so my machine can accept X connections over TCP. However, I don't know how to change how this command is being called on...
  3. Y

    Stopping limited users from changing time in WinXP

    I have net user setup to log off certain users at a specific time of the day. These users are using limited WinXP accounts. One problem. All they have to do is set the system clock back to prevent themselves from being logged off! Which makes the net user command I'm using virtually useless...
  4. Y

    XP Administrator can't see all user accounts?

    Thanks, that worked.
  5. Y

    XP Administrator can't see all user accounts?

    When I boot up my XP machine in safe mode, and log in as the administrator, I can't see all the accounts on my machine under "User Accounts" in the control panel. I see one plus the guest account, but there others aren't there. Anyone know why this would be, or how I can see all accounts?
  6. Y

    Making your system inaccessible during certain hours

    It doesn't have to be off completely, I just have to be able to keep a certain user off at certain times. That net user command sounds like what I need. I'll try it out. Thanks!
  7. Y

    Making your system inaccessible during certain hours

    I'd like to make my Windows XP machine inaccessible during certain hours of the day. For example at a specified time, I need the system to just shut down completely (even if someone is currently using it), and then refuse to boot up again for a given period of time. Does anyone have any...
  8. Y

    Java - Problems with arrays and lack of pointers

    My mistake. The code I posted is legal apparently. Sorry for the confusion.
  9. Y

    Java - Problems with arrays and lack of pointers

    I have the following situation in some code I'm trying to write: double[] new_poly = {6, 20, 5, -40, 16}; for (int i=0; i<5; i++) { new_poly = deflation(new_poly, x0); } The method "deflation" returns an array of doubles. I want to be...
  10. Y

    Browser attempts to download document from website

    Okay, thanks. Stupid question maybe, but how do I see the header sent to me by the webserver in my browser? and... Can I somehow see the headers that I'm sending to the webserver in my browser? Or would I need some sort of a packet sniffer to do that? Appreciate the help.
  11. Y

    Browser attempts to download document from website

    I have a simple shell script that I'm trying to use to collect form data. When I post method="POST" in the form tag, I get a 405 error saying this method isn't allowed on my .sh script. When I change it to "GET", my browser tries to download the file. Why would changing the method from...
  12. Y

    Loading new fonts through the web

    I have a font I'd like to use on a website, but it's not very common. How can I send the font file from my web server to the client when the page is loaded up?
  13. Y

    CSS - Remove "highlight" from clicked objects?

    I have a couple buttons that I'm using on my site, which are being used as links (see code example below). When I click them, a dashed line appears, outlined the image. I'd like to remove this -- On click, I don't want this dashed outline to appear. Is there anyway to do this using style...
  14. Y

    Finding a Product Catalogue Script

    I'm trying to find a decent, and free product cataloguing script (preferably in Perl). I need to be able to list products online, without actually selling them. It would take me awhile to write something myself, so I was wondering if there was something decent available out there?
Back
Top