Slashdot Mirror


User: BCoates

BCoates's activity in the archive.

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

Comments · 579

  1. Re: Robotic Nation Essay on The 'Robotic Psychiatrist' Answers · · Score: 1

    As far as I can tell the essay is just a modernized version of the marxist capitalist-overproduction catastrophe that has consistently been 10-20 years away for the last ~150 years.

    I don't know if they claim that massive tax increases to fund a wealth-redistribution scheme will somehow stimulate the economy and massively increase the GDP so as to pay for itself, though. I doubt even hardcore collectivists are that, er, misinformed.

  2. Re:Under the Rug on A Glance At Garbage Collection In OO Languages · · Score: 4, Informative
    That sounds like the way a C++ destructor is used with the "Resource Acquisition is Initialization" model. You'd open a file by creating an object on the stack, and the destructor would close the file-handle once control returns (or the object is deleted, if on the heap)
    // some_file_object is a hypothetical file i/o object with manual open(), close(), write(), etc. functions

    class File : public some_file_object {
    public:
    File( const std::string & fname ) : m_handle( open(fname) ) {}
    ~File() { close(m_handle); }
    private:
    const handle m_handle;
    };
    It's sort of inside-out relative to the ruby version becuase it doesn't use the closure, but the useage is near-identical:
    {
    File file( "foo" );
    file.write( "There are more things in heaven and earth, Horatio, than are dreamt of in your philosophy." );
    } // close happens here, or at the throw/return/break/continue site, if any
    new/delete just being another open/close pair to be avoided or contained away in a small object when practical, so it reduces the benefit gained from GC use.
  3. Re:Someone please tell me on U.S. Considering Ratifying Cybercrime Treaty · · Score: 1

    Congress doesn't write laws, congress passes laws. Anyone can write a law, and many of them come straight from the white house, or through white-house aligned senators/congressmen.

    And IIRC, the Vatican edict is that Sen. Kerry should be denied communion by the local church authorities, they're the ones breaking the rules, not him. If he's offered communion he can (must?) take it.

  4. Re:"Force users to provide their encryption keys" on U.S. Considering Ratifying Cybercrime Treaty · · Score: 1

    If the attacker gets the pad itself, OTP is completely broken. That's why you have to be careful about destroying it when you're done and why OTP is such a useless scheme.

  5. Re:bad standards on U.S. Considering Ratifying Cybercrime Treaty · · Score: 2, Informative

    Bush refused to sign the treaty for the International Criminal Court

    Clinton signed the ICC treaty. There is no chance in hell that it will pass the Senate, and he didn't even try. Bush wasn't interested in getting it passed either, and withdrew from the unratified treaty.

  6. Re:One other thought . . . on After DeCSS, DVD Jon Releases DeDRMS · · Score: 1

    Not having to worry about losing my DRM key or a random "software update" breaking my DRM and locking me out of my music.

    Burining to CD in a manner of my choice instead of jumping through hoops.

  7. Re:Paint everthing white on Satellites Show That Earth Has a Fever · · Score: 1

    Can biodiesel produce anywhere near enough energy to replace crude oil mining?

  8. Re:Climate Change + Extinction on Satellites Show That Earth Has a Fever · · Score: 1

    But add to this the fact that we are currently seeing a mass extinction unlike anything in the last 65 million years, and you've got quite a conspicious coincidence.

    I would think the sudden extinction might have more to do with humans covering the earth with agriculture and hunting, putting roads through, and living in much of the rest...

  9. Re:Didn't they raise a stink about.... on Software To Stop Song Trading · · Score: 1

    Because, you know, nobody ever throws bullshit claims they can't enforce in a TOS.

  10. Re:I don't get it. on BayStar Interviewed Regarding SCO Investment · · Score: 2, Interesting

    But isn't that a sign that the shorters think this is the lowest price SCOX will be at for a while -- so pretty much the same thing as for any other buying?

  11. Re:This is all political BS on Academics Take On Government Net Censorship · · Score: 1

    Since when are images of illegal activities illegal? Seems like that would put a crimp in the news business...

  12. Re:you won't find out anything at commondreams.org on Academics Take On Government Net Censorship · · Score: 1

    Whatever you say, Trotsky.

  13. Re:Misguided on Academics Take On Government Net Censorship · · Score: 1

    Cultures aren't people, they're things, and when they no longer justify the costs of their own existence, they should go away. It's wrong to save a culture at the expense of the people in it, if they'd rather be doing something else.

    Languages, for example, are dying out all the time, and that's a shame, but keeping a language alive is a tremendous amount of work, and people won't do it unless there's some benefit to them (like being able to communicate with a large group of other people)

  14. Re:from on Academics Take On Government Net Censorship · · Score: 1

    How is The Memory Hole an example of censorship? It looks to me like the exact opposite.

  15. Re:the preserving culture argument on Academics Take On Government Net Censorship · · Score: 3, Funny

    Er, except right now they're a anti-western fundamentalist state run by a ruling royal family.

  16. Re:Different cultural standards... on Academics Take On Government Net Censorship · · Score: 4, Insightful
    However... the day I see an electorate in a "culturally different" country freely and democratically vote for a regime that restricts human rights, I'll change my mind.
    People do that all the time. Restricting the other guy's rights is one of the more popular political themes of the world--Both in the West and in the "Culturally Different" places. Democracy is useful, but it's not a magic wand that makes authoritarianism disappear.
  17. Re:Reap what you Sow on Academics Take On Government Net Censorship · · Score: 5, Funny

    Fascinating. I suppose you think you live in a country with free speech due to some sort of virtue on your part? Perhaps you have managed to overthrow a dictatorial government and replace it with a liberal one yourself?

  18. DOS? on Port Knocking in Action · · Score: 1

    Wouldn't sending random connections at a server (whatever qualifies as a 'knock') interfere with anyone else completing a pattern to open a port?

    If you want people to have to authenticate without revealing what services you're running, couldn't you just do a real (unlike replayable, sniffable plaintext like this) authentication one-way over UDP? That doesn't give anything away either, and is much less hokey.

    It could even run on a well-known port... Is there already a UDP authentication protocol, or would one have to be designed?

  19. Re:How is this Constitutional?! on Are You Reporting Your Internet Purchases? · · Score: 1

    It's a use tax: the tax is not on taking things into the state, it's a tax on using the thing, regardless of where it was obtained from.

    Since you already pay the tax on things you bought in-state, you don't have to pay it again.

    There's no Constitutional restriction against that.

  20. Re:Can anyone say ..... on No EZ Fix For The IRS · · Score: 1

    How does this make things any simpler? The tax bracket system is not a big, confusing thing, particularly since it's implemented as a lookup table. But it's only one step in the entire big process of calculating taxes.

    Changing the shape of the tax curve will not "Save tons of time" or "lower operating costs".

  21. Re:Our take on it from inside MSFT on The New Linux Speed Trick · · Score: 2, Funny

    Your comment is meaningless gibberish studded with technobabble.

    I believe you, you must really work at Microsoft.

  22. Re:Looks to me like the ultimate bicycle outfit on Make Your Own TRON Costume · · Score: 1

    A recumbent. Trailing 20 feet of blue fabric.

  23. Re:Low adoption: AutoAuto == sunday driver on Automobiles Evolve to Live Up to Their Name · · Score: 1

    That's easy, modify the bumpers a bit and have the cars run touching each other.

    No delta-v == no problem.

  24. Re:Cosmonauts? on Loud Metallic Noise Heard at ISS · · Score: 1

    Naah, this is happening every few months, and he would want to drum again in about an hour.

  25. Re:Load of junk, eh? on HP Experiments with 'Always On' Camera · · Score: 1

    I'm an American too, but I've never heard of a law like that.