Slashdot Mirror


User: autopr0n

autopr0n's activity in the archive.

Stories
0
Comments
4,754
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4,754

  1. Well, you can't be all that l33t on Half Mast · · Score: 1

    If you're still living in the same small-ish town?

  2. Well, *of course* it should be well gaurded! on Antibiotic Resistant Staph Antibiotic Discovered · · Score: 1

    If we gave it out like candy, then we'd soon find a new super-resistant form of staph.

    A lot of the problems we are having with various bacteria have been caused by over-use of anti-biotics in the first place.

  3. Intresting..... on Baby Bells Promise Broadband Stagnation · · Score: 1

    Last year, after much lobbying, the House passed the Tauzin-Dingell broadband deregulation bill, which would have freed the Bells from some of the line-sharing requirements. While the bill was halted in the Senate by Senator Ernest Hollings,

    If it wasn't for the hated Fritz "Mandatory DRM" Hollings we would have no competition in DSL whatsoever.

  4. I remember that thing on New Computer Program Determines "Hitability" · · Score: 1

    A friends roomate was totaly adicted to that thing. Ultimately it was shot down by the record-companies, even though it was owned by one of them...

  5. Uh, no... on IsoNews Ostensibly Shut Down By The DOJ · · Score: 1

    Well, in iowa at leat you don't get an extra ticket, but I've heard that the cops are much more linent with you if you don't have one.

  6. No, you are totaly wrong on IsoNews Ostensibly Shut Down By The DOJ · · Score: 1

    DVD region coding is not a copyright control mechanism. It's a control mechanism, and it's to the benifit of the copyright holders, but it's just so they can make money, and does not have legal force.

  7. wrongo on IsoNews Ostensibly Shut Down By The DOJ · · Score: 1

    REAL conservative believe that you should be able to do anything you want as long as it doesnt adversely affect others.

    Those people are called libertarians.

  8. Uh... on IsoNews Ostensibly Shut Down By The DOJ · · Score: 3, Funny

    Oh yeah, and a lot of "Old Money" republican families were so much trailer trash until they made their millions running alcohol during prohibition. Funny how you never hear about that...

    You mean, like the Kennedys?

  9. Well, *I* don't see any DOJ page on IsoNews Ostensibly Shut Down By The DOJ · · Score: 0, Redundant

    here is what I get when I got to isonews.com. Maybe it's just an issue of the DNS servers not updating soon enough (assuming the DOJ just changed the address).

    The IP address on that is 66.201.243.172, it apears to be a virtual host

  10. I doubt it on NASA Gives Up On Pioneer 10 · · Score: 1

    these probes follow a 'path' through the solar system, slinging their way from jupeter/satern/etc. If we sent another probe in 5 years, it wouldn't be able to follow the same path, as the planets would be in diffrent places.

  11. it's doubtfull that anyone far away will hear on NASA Gives Up On Pioneer 10 · · Score: 2, Insightful

    Asside from a few projects designed to beam high-energy signals at spesific stars, most of the radio waves we send out will be so weak that they would never be able to be detected against background nose just a few lightyears away.

  12. The biggest problem... on Microsoft Fights to Weaken Washington Anti-Spam Law · · Score: 5, Insightful

    is the reduction from $500 to $10. For $500, it's actually worth it to try to track the spammers down and sue his ass. But no one is going to go through that much trouble for just $10, unless their time is completely worthless.

    Not to mention the whole "previous business relationship" is total BS. Companies swap email address lists and call each other 'partners'. It's a bunch of crap. I think they ought to rase the fee to $5000. Make it worth someone's time to sue.

  13. Lern to count. on Verbing Weirds Google · · Score: 1

    Well, alltheweb digs up 41 sites other then slashdot or k5 that have links to me. Google apparently can't handle the link:... and -site:... commands together, but finds 87 pages not on slashdot or k5 that discuss me. Most of those pages also link. None of them were written by me.

    Lets not forget that nothing else out there is called autopr0n, and almost every single page that does have the term also has a link to my site. Especially those which appear at the beginning of the search results.

    Intresting experiment, try doing a search for "redhat 8 ISOs" on google and on Alltheweb, then get back to me on how great google is.

  14. Re:Bleh on Verbing Weirds Google · · Score: 1

    Yes, it makes perfects sense. How many people link to "autoPron"? If not many, then the algorithm ranks it low. As it should be. That means it's not a well known site.

    102 sites. Anyway, it certainly makes more sense then returning this which is just a description of my site in German, with a link to it as the second result. Or this my kuro5hin account information (which also links to me) is the first result?

    The fact is, 'autopr0n' is only ever used as A) my username or B) in reference to my website, almost always with a link. So why am I ranked near the bottom, after a few sites that decided to stick 'autopr0n' in the massive keyword lists they use to try to Spam search engines?

    I also used to be the #1 returned result.

  15. Bleh on Verbing Weirds Google · · Score: 3, Interesting

    Of course, the downside is that if Google loses it's trademark then other companies can use the term for themselves. Alltheweb can say, for example, "come google with us".

    On the other hand, unlike the situation with Nintendo, no one can take google's domain name. If google does become a term meaning "to search the internet with an effective relevancy calculator" then their domain name will always be synonymous.

    Personally, though, I say screw google. They put autopr0n on the 11th page on a search for "autopr0n", which doesn't make any damn sense. And no one is ever going to say "Let me Alltheweb for it."

  16. what do you mean by 'check'? on Do Scripters Suffer Discrimination? · · Score: 1

    //Assuming that by 'check' you mean check to see
    //if the link works, and the text file is one URL
    //per line, the following code should work:

    import java.io.*;
    import java.net.*;

    public class LinkCheck{

    public static void main(String args[]){
    BufferedReader br;
    string url;
    try{
    br = new BufferedReader(new FileInputStream(args[1]);
    }
    catch(Exception e){
    System.out.println("File error, check to make sure file ");
    System.out.println("exists, and that you named it on the"
    System.out.println(" command line");
    }
    do{
    try{
    url = br.readLine();
    URL u = new URL(URL);
    System.out.println("OK: " + url);
    }
    catch(Exception e){}
    }while(url != null);
    }}

    //This is just off the top of my head, of
    //course. But it only took me 5 minutes. If you
    //could give me a more precise definition, I
    //could probably still come up with something
    //quickly.

  17. Re:weeks vs. hours on Do Scripters Suffer Discrimination? · · Score: 1

    public java.util.Collection sort(java.util.Collection c){
    return new TreeSet(c);
    }


    *yawn

  18. Re:Happens all the time on Do Scripters Suffer Discrimination? · · Score: 1

    writing applications that have to go to the network for things like HTTP or (especially) LDAP are trivial in perl but seriously heavy lifting in C.

    Java has built in HTTP and LDAP support. I'm sure there's lots of C/C++ libs you can go out and download.

    You also get string parsing, regular expressions, and garbage collection built right in. Not to mention the incredibly powerful (from a code legibility standpoint) associative array or "hash" data structure.

    Java got regexes in 1.4. The rest, it's always had. As has the C++ Standard template library.

    Believe it or not, correctly written perl is orders of magnitude more legible than C or Java, because it works at a higher level of abstraction.

    That's ridiculous.

    You obviously don't have any experience using Java, or modern C++.

  19. windows start on Do Scripters Suffer Discrimination? · · Score: 1

    You realize, right, that 'start' can open URLs with the system default browser automatically?

  20. Erm... on Do Scripters Suffer Discrimination? · · Score: 1

    A good coder would have seperated the markup phase of the page generation code from the rest, so it could be easily upgraded, or simply changed.

  21. Who moderated this insightful? on Do Scripters Suffer Discrimination? · · Score: 1

    You're an idiot who doesn't know anything about modern web design. CSS is about formatting pages of information, now showing pretty pictures and graphics like flash. You can do some of what you can do with CSS with table layout (the only alternative) but it's stupid.

    Netscape 4's CSS is fucked up, but people using Netscape 4 should stop. The browser should not be supported.

  22. Good point, but... on Do Scripters Suffer Discrimination? · · Score: 1

    Insane compile times are largely a C++ issue. Since each class is a separate compiled file in java, you don't have to worry about recompiling the whole thing, unlike C++. And you don't need to link at all. I honestly don't understand how people can deal with that insane compile/link cycles in large C++ programs.

  23. A better definition on Do Scripters Suffer Discrimination? · · Score: 3, Interesting

    Would be to say that 'scripting' is a subset of 'programming'.

  24. Re:Flip side on Do Scripters Suffer Discrimination? · · Score: 1

    If it ain't compiled into assembly language, it ain't real programming.

    What do you code in, Intercal? C and C++ are compiled into machine code these days. Just like Java.

  25. Oh please on Do Scripters Suffer Discrimination? · · Score: 3, Funny

    If you didn't lay out the tranistors yourself, you didn't do shit!