Slashdot Mirror


User: clayne

clayne's activity in the archive.

Stories
0
Comments
102
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 102

  1. Re:Setting aside the humor, do they have a point? on Retailer Refuses Hardware Repair Due To Linux · · Score: 0

    While running too lean is typically more dangerous than running too rich, there are downfalls too running too rich. For instance:

    * Accelerated dillution of oil with excess unburnt fuel seriously reducing it's lubrication abilities.
    * Excess unburnt fuel can also effectively wash down the cylinder walls, removing the thin film of oil used to lubricate the piston rings resulting in pre-mature ring and piston failures.

  2. Great stuff.. on Inventor of GMR Bids To Shake Up Storage, Again · · Score: 0

    But being that we've sat through more than enough "believe it when I see it situations" we'll just have to wait and see..

    Also, when will people stop referring to "Moore's Law" as a law? It's a hypothesis at best.

  3. Re:More than one side to this one... on Best Programming Practices For Web Developers · · Score: 0


    You can do any OO design in PHP5 just as easily as in Python.



    I take it you've not used Python then? How would you do co-routines in PHP? Decorators? Metaclasses? Things like DictMixin?

    Right, because coroutines are oh so useful.


    "OO design" is a lot more than grouping methods and member variables into a namespace and calling it a "class".

    An OO language is not necessarily required to implement derivation, polymorphism, or inheritance in order to make use of object oriented concepts.

    window w;
    dialog d;
    int s;

    w.close();
    d.close();
    close(s);
  4. Re:More than one side to this one... on Best Programming Practices For Web Developers · · Score: 0

    Exactly how is removing PHP going to solve the client vs server bias? It's a server-side resource just as well.

    IMO, the main issue is simply one of signal:noise, unsurprisingly. As much as graphics are neat, and sometimes useful, the majority of the time I feel people want information first and most importantly - fast. Minimal design oriented graphics used for separation and layout are fine with me. However, data should be driving things - not crap.

  5. Re:Benchmarks on AMD Finally Unveils Barcelona Chip · · Score: 0

    Larger caches to combat the lacklustre memory architecture, right? Circular.

  6. Re:Happens all the time on Jatol.com Disappears, Stranding Customers · · Score: 0

    Once I got a pleading phone call from a guy who had rented rack space from somebody who rented it from us. The guy in the middle had stopped paying his bills and got cut off. Policy was to seize the hardware in the defaulter's racks, even if it wasn't his, and hold it hostage against payment. The caller just wanted his hardware back, and if it'd been up to me he would have gotten it. We couldn't sell it, so it was just going to collect dust until the bill got paid — that is, forever. But nope, wasn't going to happen. Sounds faintly similar to something that would happen at Savvis (aka Exodus aka C&W) or HE...
  7. Re:If competitive area means scam on Jatol.com Disappears, Stranding Customers · · Score: 0

    Web hosting is so fucked up with people with no physical access to the servers and no idea how a web server even works selling accounts from control panels that it makes me nostalgic for my old free .edu hosting on a HP-UX box. Let us not forget the reflex ftping of Crack source to said .edu box as well.
  8. Re:Similar story on Jatol.com Disappears, Stranding Customers · · Score: 0

    http://technologyfront.com/resume.html -- kdawson's background in FUD/bullshit/hand-waving nonsense

  9. Re:I know this is kdawson, but... on de lcaza calls OOXML a "Superb Standard" · · Score: 0

    http://technologyfront.com/resume.html

    Professional marketeer/hand waver.

  10. New York City? on Cybersquatter Faces Jail Time For Wire Fraud · · Score: 0

    "Get a rope."

  11. Re:Good morning, people. on de lcaza calls OOXML a "Superb Standard" · · Score: 0

    And to think I thought it was actually Object Oriented XML...

    *XML is typically bloated cache-trashing nonsense anyways. Great for markup and config mechanisms, shit for efficient use of resources and network transport. But I digress, I'm digressing.

  12. Re:Not "evil" on Google Mulling Video Ads In Search Results · · Score: 0

    First off, I agree to a large extent...

    False dichotomy. Maybe you're too young to remember, but there was a time when most sites didn't have ads.

    And there was a time before web sites existed at all too, but someone is paying for a site in ALL cases. Fuck this, I'm going back to Gopher.

  13. Re:Why sell them? Then you admit they were there.. on Police Busted When Tracking Device Found On Car · · Score: 0

    Checked NZ cell rates lately?

  14. Re:Not "evil" on Google Mulling Video Ads In Search Results · · Score: 0

    Google has historically shown themselves to be full of shit on more than one occasion.

    Yet even more reason to disable all plugins in Opera and then enable flash on a per-site basis when it's needed.

  15. Re:security on NTP Pool Reaches 1000 Servers, Needs More · · Score: 0

    Maybe you should take it to the next step and just run a vmware instance just to run ntpd under that. Maybe even run a java vm under that as well. Can never be too secure can we?

  16. Re:Look it up on Torvalds on Linux and Microsoft · · Score: 0

    If it were for all the userland tools commonly used, I guess many current Linux installations would be more properly named KDE/X/Linux

    Most people who are still debating this have not heard of the old LiGnuX suggestion that was in the gnu newsletters long ago which is the same sort of idea.

    How about GNUKlius while we're at it.

  17. Oh hell no. on A Free XML-Based Operating System · · Score: 0

    XML is at the top of my list for AVOID.

  18. Re:Cryptic? Complex!? on Minimal Perl for Unix and Linux People · · Score: 0

    You're strawmaning this into stupidity territory now.

    It is implied that it's production code not toy obfuscated code. There's no reason to play stupid about that.
    Now reanalyze your last statement and consider it's circularity.

  19. Re:Cryptic? Complex!? on Minimal Perl for Unix and Linux People · · Score: 0, Offtopic

    Yes - because everyone normally writes production C code as an obfuscation contest?

    Lame example. If anything perl heads much more in that direction with less effort than C does.

  20. Re:Cryptic? Complex!? on Minimal Perl for Unix and Linux People · · Score: 1

    It's completely obvious what's going on just by reading the code.

    If a programmer just randomly reads x memory location and casts it to y for apparently no reason whatsoever, then that's just stupid code and a bad example.

  21. What I love most about Perl is it's SPEED! on Minimal Perl for Unix and Linux People · · Score: 2, Funny

    (yes I pre-ran them both multiple times to reduce cache affects)

    [src] $ time perl -e '$tdata = "../../tests/ctok.in.2"; $sz = -s $tdata; print "sz == $sz\n"; open(FH, $tdata); while (<FH>) { @t=split(/[ :#]+/, $_); $c += $#t; } print "c == $#t\n";'
    sz == 96252007
    c == 12301001

    real 0m31.877s
    user 0m31.662s
    sys 0m0.148s

    [src] $ file ctok
    ctok: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.2.5, not stripped
    [src] $ time ./ctok ../../tests/ctok.in.2 " :#"
    sz == 96252007
    c == 12301001

    real 0m2.417s
    user 0m2.280s
    sys 0m0.132s

    And yet I still proudly use C. Let the prophets K&R reign supreme.

  22. Re:Cryptic? Complex!? on Minimal Perl for Unix and Linux People · · Score: 0, Flamebait

    Really. Does C have $_ or any number of ridiculously implied $ nonsense in it?

    Perl should have just stopped about 8 years ago.

  23. Firefox fanboyisms on Over 27% of Firefox Patches Come from Volunteers · · Score: 1

    I find the lemmings to a cliff jump to use Firefox amusing.

    1. It's better than IE, we know that. IE itself wouldn't be bad if they would stop supporting and enabling goofy Microsoft extensions that eventually Firefox goes along and supports as well.
    2. Opera has been out there for ages. It's a better browser with much more advanced use of tabs, has had them for years, and is much more COMPLIANT to the spec.
    3. Konqueror has been out there for ages. It's use of tabs is not as great as Opera's, but more importantly, it is COMPLIANT to the spec.

    50M/year in revenue and Firefox is still like a CS project?

    You know my bias, I use two browsers: Opera for when I'm locally using my windows applications, and Konqueror for when I'm in an NX session in KDE. I check rendering of my own html markup through those two browsers, if it looks good, then I check it in IE and Firefox - annoyingly sometimes finding they are not renddering how I desire - but not significantly or frequently enough to make an issue over.

    While I do not believe that Firefox is a *bad* browser, I find it disturbing how many opensource addicts blindly jump at it - without consideration for the fact that it still is not 100% compliant and the fact that there are just plain better options out there.

    http://www.howtocreate.co.uk/acid/ -- useful info.

  24. Re:Great on Google Releases Paper on Disk Reliability · · Score: 1

    Yet more useless data from the "we want to break ground on everything courtesy of Google" department.

    1. No controlled set. They keep changing their drive configurations around.
    2. Only 8 months of data (they state this study was conducted between Dec 2005 - Aug 2006).
    3. It's like an average of 5% overall w/ the only real piece of info from this being that smart doesnt really correlate
    4. There is no correlation to number of drive platters vs "afr" here.
    5. Utilization rate as a measure of bandwidth, yet no account of fragmentation which would drive a correlation to drive head excessive moment and sweeping vs controlled movement.
    6. No mention of number of drives in the set. Which is needed to calculate the granularity of statistics.

    7.This must be why their stock is at 469. By providing ground breaking studies of entropy and it's affects on random data.

  25. Re:Not true on Good Agile — Development Without Deadlines · · Score: 1

    Yep. They're a bit uncanny there, aren't they? Like I said.. a company hellbent on cramming as many Stanford grads into one place.