Slashdot Mirror


User: Barbarian

Barbarian's activity in the archive.

Stories
0
Comments
1,033
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,033

  1. what about the obvious uses? on Remote Control Robotic Snakes · · Score: 2

    I'll bet that these will be used for survillence. Can you just see it?

    guard #1: Did you hear that?
    guard #2: Something over there I think.
    guard #1: Ah, I see it. Just a garter snake.

  2. 80% - 20% on Charging for Cable Internet Access in Australia · · Score: 2

    I assume the 80% is the www user who clicks around and talks about "surfing" and propogates the email worms when they get them by blindly clicking.

    I assume that the other 20% is advanced users and gamers.

    And I really doubt that this is cost recovery. More likely profit taking.

  3. speaking of spam on Charging for Cable Internet Access in Australia · · Score: 1

    What about all of this pyramid-scheme crap that people push in their signature's on slashdot? Like the alladvantage crap. I think one of the moderation things options should be "SPAM".

  4. one more note on Network Solutions Changes WHOIS · · Score: 1

    This works best with the whois from: http://freshmeat.net/appind ex/1999/10/30/941297803.html

  5. simpler script on Network Solutions Changes WHOIS · · Score: 2

    Here's one that doesn't hide anything from the user, and works for non .com, .net, .org, and .edu domains:#!/usr/bin/perl
    # whois3 -- do a whois on the default server
    # then parse output to find the server of the
    # registrar that manages that name.
    # Re:solution (Score:1)
    # by hucke (matt@hucke.org) on Wednesday December 01, @01:07PM MDT (#68)
    # (User Info) http://www.graveyards.com/
    # fixed by Barbarian (conanford@hotmail.com)
    # made compatiable with non-US TLD's and a bit more verbose
    # now prints full response

    die ("Usage: $0 domainname\n") if ($#ARGV);

    $item = @ARGV[0];

    @results = `whois-real $item`;

    for $line(@results)
    {
    chomp($line);
    $line =~ s/^\s//g;
    print "$line\n";
    if ($line =~ m/Whois Server: (.*)/) {
    $server=$1;
    }

    }
    close(W);
    if ($server)
    {
    print "Querying Server: $server\n";
    # system("whois-real $dom\@$server"); ## for RIPE whois
    system("whois-real -h $server $item"); ## for other whois
    }


  6. fixed! on Network Solutions Changes WHOIS · · Score: 2

    There were a few lines missing in the script.


    #!/usr/bin/perl
    # whois3 -- do a whois on the default server
    # then parse output to find the server of the
    # registrar that manages that name.
    # Re:solution (Score:1)
    # by hucke (matt@hucke.org) on Wednesday December 01, @01:07PM MDT (#68)
    # (User Info) http://www.graveyards.com/
    # fixed by Barbarian (conanford@hotmail.com)

    die ("Usage: $0 domainname\n") if ($#ARGV);

    $item = @ARGV[0];

    @results = `whois $item`;

    for $line(@results)
    {
    chomp($line);
    $line =~ s/^\s//g;
    if ($line =~ /^[[]/)
    {
    print "$line\n";
    } elsif ($line =~ m/(Domain Name|Registrar|Name Server): (.*)/) {
    print "$line\n";
    } elsif ($line =~ m/Whois Server: (.*)/) {
    $server=$1;
    print "$line\n";
    }
    }
    close(W);
    if ($server)
    {
    print "Server: $server\n";
    # system("whois $item\@$server"); ## for RIPE whois
    system("whois -h $server $item"); ## for other whois
    }

  7. which whois version does this? on Network Solutions Changes WHOIS · · Score: 2

    I want to get it...whois with RedHat 6.0 doesn't.

  8. not just a matter of spam.. on Network Solutions Changes WHOIS · · Score: 2

    As an example:

    In the past, there have been "fan" sites for movies, revealed to have domains registered to companies marketing the movies. If you can't look up who registered a domain, how can you tell?

    (There was a slashdot.org story on this a few months ago.)

  9. beowulf cluster? on Intel Owns Patent on Distributed Computing · · Score: 2

    Although the intent of the patent is for distributed computing across a large network, it seems to me that it would also cover clustered computer systems like beowulf.

    Maybe some day when people try to enforce these patents, defendants will look to old /. postings for tips on prior stuff.

  10. good - it uses my full screen width on redhat.com Redone · · Score: 2

    The old site, like many today (cnn, msnbc, abcnews) only used 800x600. So on my 1024x768 screen I had a big white space on the right site of the browser (while running browser at full screen).

    Good to see that the new redhat.com uses this space properly. Now if only we could get the other sites to figure it out.

    Noticed that other sections of the site, like the errata, etc., haven't been redone yet.

  11. minors and EULA's on Bruce Perens Discusses Lawsuit Against Corel (UPDATED) · · Score: 4

    The problem is the EULA on the Corel software--in Canada at least, you cannot sign a binding contract if you're a minor.

  12. method of interference on AM Frequency Hinders ADSL Capacity · · Score: 1

    So does this cause packets to be dropped/corrupted, or does it interfere in some other way?

  13. with proper notice on FBI Shuts Down Website · · Score: 1

    IANAL, but in most jurisdictions, the landlord must give you 30 days notice (at least) before kicking you out, unless you are doing something like busting up the place.

    Now it could be contented that 'Z' was causing damage to the ISP by having this content. Well, was there any contract provision that said, "You may not post controversial content?", or "Your site can be removed without notice?". There could have been.

    Regardless, the primary concern here is that the videos may or may not have been doing any damage (I consider any small in this case), and it is hard to justify removing content just because it may be partially controversial.

  14. NO DGA MOUSE SUPPORT--UT LINUX problems on Linux Unreal Tournament Files Released · · Score: 1

    Well, I tried the UT LINUX Demo in the past. The problem I found---no X11 DGA mouse support. It will probably be supported in the future though. A smooth mouse is key to a good fps.

  15. You mean Activision CEO on Quake 3 Arena goes Gold · · Score: 1

    This story says that id CEO Todd Holleshand says it's gold as far as id is concerned: here

  16. related...UT linux client download on Quake 3 Arena goes Gold · · Score: 1

    For use with the data files on the Windows CD -- here

  17. don't trust old benchmarks on Tom's Reviews Kryotech's 1000MHz PC · · Score: 1

    They are notoriously unable to cope with new processor architectures.

    Like the 1983-era benchmark I ran that said my K6-2 350 was 5600 times as fast as an 8mhz 8088. Well maybe, but not that fast.

  18. like that NBC atomic train movie on Y2K: Fuel the Panic, the NBC Movie · · Score: 1

    Where there was a stolen bomb on a train, and "Oh No!", it's going to explode because the train's crashed and on fire. Nevermind that it doesn't work like that.

  19. Distributed DNS servers first off... on Quake III Arena Demo Test for Linux · · Score: 1

    Look at the DNS records for the server the download is from. There's like 9 different DNS servers for it.

  20. for static content on http servers on 2.4 Gigabit Network Demoed · · Score: 1

    BUT NOT for dynamic content, where NT falls flat on it's face.

    Now name me a mainstream site that uses no dynamic content.

  21. and can serve 10E6 http sessions per second on 2.4 Gigabit Network Demoed · · Score: 1

    WTF would you want to put a Gigabit connection into ANY intel box? That's the kind of thing for routers to handle and split up.

  22. well, it's already Gold on Unreal Tournament Not To Include Linux Executable · · Score: 1

    I.e. it's in stores Monday, so there's no way to change it.

    But if 100 000 people download the LINUX executable, maybe they'll change their minds.

  23. why open source is a bad idea here on SETI@Home Says Client 'Upgrades' Are a Bad Idea · · Score: 1

    In a client-server system like this, there is no way to ensure that a client is actually doing what it's supposed to be doing. If you release the source code, it becomes much easier to make a fake client that pretends to process data blocks. Some groups may do this in order to get their names near the top of the list (or to sabotage the effort).

    As it is now, it's a lot harder to make a fake client without source code. And before a few knee-jerk reactions get posted, like "Open source r00lz you Micro$oft whore!", for example (I use LINUX), just think about HOW you would verify the validity of the client results here from an open source program. Maybe there's a way. Please prove me wrong.


  24. very good point on Carmack on the retail Quake3 for linux · · Score: 1

    And if your local retailer doesn't carry the Q3A for LINUX, spend $5 extra and order it online.

  25. here on OpenSSH Project Now at openssh.com · · Score: 1
    >

    The OpenBSD project is based in Canada.

    The Export Control List of Canada places no significant restriction on the export of cryptographic software, and is even more explicit about the free export of freely-available cryptographic software. Marc Plumb has done some research to test the cryptographic laws.

    From http://www.openbsd.org/crypto.html.