Slashdot Mirror


User: shampster

shampster's activity in the archive.

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

Comments · 21

  1. this is just a link to apple pr on In a Leaked Memo, Apple Warns Employees to Stop Leaking Information (bloomberg.com) · · Score: 1

    PR disguised as a news article.

  2. Re:Sauce for the goose on GPS Tracking Without a Warrant Declared Legal · · Score: 1

    Cop cars already broadcast their GPS location in most jurisdictions.

  3. Haven't they been doing this for a while now? on Pre-Installed Linux On Dells Coming · · Score: 1

    I bought a Dell workstation about a 1.5 years ago with RedHat WS pre-installed.

  4. I like _some_ of the in game ads on In-Game Ads Necessary? · · Score: 2, Interesting

    The ads I've seen in-game Anarchy Online are generally static and animated billboards and posters. For example billboards in large cities and posters on the wall in subways. Personally I think it adds realism to the environment. IMHO it's (at this point at least) minimal and tastefully done.

    Don't think it would work in fantasy MMORPGS like Wow though.

  5. Ruby and Python look almost the same in this case. on Rolling With Ruby On Rails · · Score: 1

    Here was the ruby version:

    class Foo
    attr_accessor :a, :b
    def add() a + b end
    end

    f = Foo.new
    f.a = 1
    f.b = 2
    puts f.add

    Here's the python version:

    class Foo:
    def __init__(self):
    self.a = 0
    self.b = 0
    def add(self):
    return (self.a + self.b)

    f = Foo()
    f.a = 1
    f.b = 2
    print f.add()

    ... pretty similar, no?

    And for those of you who like things compact:

    class Foo:
    def __init__(self): self.a = self.b = 0
    def add(self): return (self.a + self.b)
    f = Foo()
    f.a, f.b = 1, 2
    print f.add()

  6. Re:80/20 rule on The Centralization of BitTorrent Networks · · Score: 1

    What networks did you include in your study? I think that the average torrentbits user uploaded far more then they downloaded.

    I think this 80/20 rule probably applies to Bittorrent 'in the wild' a-la suprnova. But not close-gated communities like torrentbits -- which had more then one type of reward system in place to encourage uploading.

  7. Re:Jerk, yes; criminal, no. on The Man Who Could Have Been Bill Gates · · Score: 1

    There's tons of links about M$-FUD relating to DR-Dos in google ( Windows even threw up a bogus error message when run under DR-Dos):

    http://www.cavcomp.demon.co.uk/halloween/fuddef. ht ml
    http://www.my-opensource.org/lists/myoss/1999- 05/m sg00192.html

    Just google for 'accusations dr-dos' and 'dr-dos fud'

  8. What's more important . . . on Meteorite Hits Girl · · Score: 1, Interesting

    . . . is that if this poor girl got hit by the meteorite -- she should now 'own it' (IMHO). Meteorites are a very valuable commodity, and this wouldn't be the first time one has been snached up quickly by those who don't deserve. . .

  9. Re:Quite a challenge. on A New Challenge from Honeynet · · Score: 0

    It's almost precisely what reversers for cracking/warez groups have been doing for 20+ years. A large group of system/network security professionals today started off reversing viruses in the MS-Dos days, and/or cracking programs for fun and profit in the warez scene.

  10. Re:Flawed arguments -- loose dateing authenticity? on Do Digital Photos Endanger History? · · Score: 0

    WHat about not being able to carbon date digital images to prove they are a specific time period?

    That's something else to thing about.

  11. Re:In a word? -- NO! on Open Source Programmers Stink At Error Handling · · Score: 0

    Due to the nature of 'Open Source', end-users will likely be using the software long before a commercial company would release it. Open Source software is meant to be shared (even at it's most alpha stages). I think that most 'open source' coders put function above form, and features above stability. As coders become satisfied with their implemented feature-set -- they will go back and improve documentation/stability/correctness. A good example of this IMHO is rsync.

  12. Read the rest of the THREAD!!! on On The Costs of Full Security Disclosure · · Score: 0

    Please go read Eeye's excellent response. Aleph1 only allowed this to be posted to BugTraq to once again EDUCATE the public on how this type of thinking is FLAWED.

    I wish slashdot had investigated this submission instead of just running with it.

  13. Not surprising . . . on Constants Not Constant? · · Score: 0

    Lots of things once believed to be black/white are really just on one extreme end of a continuum.

  14. Re:Open source problems on Will Open Source Lose the Battle for the Web? · · Score: 1

    No -- what you speak of will make a more 'user-friendly OS'. User friendly = loss of power. I don't care to field off any theoretial arguments on that (yet). It's interesting how everyone was happy on the 'net before big-business moved in. Linux/Open Source/whatever doesn't 'have' to compete with Corporate America.

  15. this is pro-microsoft bull!!! on Will Open Source Lose the Battle for the Web? · · Score: 0, Redundant

    The ratio of fact / persuation is too high -- ignore this.

  16. this article is misleading . . . on The Death Of The Open Internet · · Score: 1

    THe author believes that the 'network' part of the internet will supercede the 'host' part of the internet technology-wise, and compares this to our land-line phone system layout.

    This is misleading -- the entire purpose of the telephone network is to connect your phone to someone elses -- that's the real value.

    On the internet, the only reason for the network to exist is to provide access to the content on the hosts.

    Both will be important.

  17. Re:Wrong group on Buffer Overflow In All Shockwave Players · · Score: 1

    "you do not understand". :)

  18. Should have been released much sooner. on Buffer Overflow In All Shockwave Players · · Score: 1

    It should have been released sooner. All the 'commercial-friendly'/1 week advisory waiting period/vendor co-operation/etc 'ethics' that exist today do nothing more then alienate the white-hats knowledge of the 'black-hats' bleeding edge.

  19. Re:I'm shocked... (n/t) on Buffer Overflow In All Shockwave Players · · Score: 1

    And it should have been released sooner. All the 'commercial-friendly'/1 week advisory waiting period/vendor co-operation/etc 'ethics' that exist today do nothing more then alienate the white-hats knowledge of the 'black-hats' bleeding edge.

  20. Re:Fascinating on Net Security With "NanoProbes" · · Score: 1

    Umm, it may be true that the resultant code from a compiled c program will be optimized very well -- but it is still very true that writing your own asm will result in MUCH less actual code to do the same work -- especially in some tight loops. Thus, this code should run faster with only 1/2 the calories.

  21. Steve Gibson's state of mind. on Net Security With "NanoProbes" · · Score: 1
    Steve Gibson knows exactly what he is doing, look at this FUD on his website now:
    "News Flash: SlashDot Discovers NanoProbes I have been expecting this to happen, though it took longer than I expected: An entertaining discussion thread on SlashDot was launched Friday, Sept 29th, by Commander Taco. For readers of my pages who don't know, SlashDot is a popular hangout for the (younger) Linux crowd where they have lots of fun and share ideas. SlashDot's sub-head reads: "News for Nerds. Stuff that matters." It tends to be light on fact and heavy on invective and misinformation - especially where anything non-Linux, Microsoft, or Windows is involved. But it is, after all just a discussion board, and it always entertains. Reading through all of the angst this page has generated makes me wish that I had this stuff all running so that they'd have something more to play but that will happen soon enough!"
    Steve does write excellent code -- and frequently his programs are more 'cutting-edge' then most others. BUT -- he knows that he is just talking about port-scanning and OS Fingerprinting. When I questioned him at steve@grc.com, he replied twice to my inquiries with a whole lot of fluff / bloat-speak. He writes great code -- and he's not crazy. He's just using a very different marketing strategy.