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:Not another Java on Carmack: Lord of the Games · · Score: 2, Interesting

    There was a point in id software's evolution where John Carmack almost adopted Java as the "scripting language" for Quake 3. This got abandoned REAL quick when it wasn't fast enough.

    I'm not sure speed is java's real problem for something like that--I would be really surprised if java managed to be slower than the homemade language used in Quake I (QuakeC)...

    Probably has more to do with java's bondage-and-discipline aspects (absolutely zero control over memory management, for example) or the great difficulty making java code interoperate with C.

    --
    Benjamin Coates

  2. Re:open the flood-gates on Stem Cells From Nonviable Embryos · · Score: 1

    So how about we let the christians and other superstitous people deprive themselves of whatever advances and technology we come up with, while they argue amongst themselves, (or rather, blindy obey the will of the pope) about such matters as whats going to be banned this week, or what northern irish school to throw stones at this weekend.

    Meanwhile the rest of the world should be free to enjoy the benefits of modern science.


    Regardless of your opinion, I seriously doubt you can fail to see that there is a moral issue here.

    --
    Benjamin Coates

  3. Re:Perspective on Microsoft Stops New Work To Fix Bugs · · Score: 1

    Out of the entire year, there are two, count 'em TWO, months suitable for X History month. October and February. And February is actually better since it has fewer distractions - there's no distraction as the kids see the first Christmas decorations go up or parents discuss Holiday travel plans.

    I don't know about you, but I spend most of February in a post-groundhog day stupor.

    --
    Benjamin Coates

  4. Re:READ the 4th amendment on Feds Undertaking Massive Passenger Profiling Plan · · Score: 2, Informative

    Merely being constitutional doesn't make it any less of a stupid dangerous idea that won't actually make flying one bit safer. There's no constitutional restriciton against putting police cameras and listening devices in every public place, but it still makes people uncomfortable, for good reason.

    Your idea that travel is somehow a privelege, and not a right, is fairly repulsive, too.

    --
    Benjamin Coates

  5. Re:dont participate in what you dont agree with. on Feds Undertaking Massive Passenger Profiling Plan · · Score: 1

    Except for the fact that air travel is paid for as much with (income) taxes as with fares, so even if you stay home or take the bus, you get to pay. Fun!

    --
    Benjamin Coates

  6. Re:Profiling is so much easier. on Feds Undertaking Massive Passenger Profiling Plan · · Score: 1

    You don't accost 90 year old NUNs just to be fair

    So, all you have to do to get on a plane without being looked at carefully is to convincingly fake being a 90 year old nun?

    Not falling for the easy trap of profiling makes things more secure, not less.

    Yes it would mean that those who are both Arabian descent and Muslim would be scrutinzed more...

    I love it when people suggest we should subject Muslims to more security at airports. How, exactly, do you tell a Muslim from, say, an Atheist? Demand they denouce God or eat a ham sandwich or something?

    --
    Benjamin Coates

  7. Re:So...? on Feds Undertaking Massive Passenger Profiling Plan · · Score: 1

    That's what I'm talking about. What kind of twisted order of priorites is it to allow publishing Nazi propoganda and promoting violent acts based on race alone, while not allowing citizens to write and publish technological solutions for home entertainment.

    It's not an accident; Nazi propaganda is political speech, and therefore given special protection--You're only giving people self-determination if you allow them to choose the "wrong" government, too. A nation that selectively outlaws political speech and political parties is as much a sham democracy as the communist regimes.

    Not that the US has a 100% spotless record in this category, either. Debs, the Sedition Acts, and Kent State coming to mind...

    --
    Benjamin Coates

  8. Re:So...? on Feds Undertaking Massive Passenger Profiling Plan · · Score: 2, Insightful

    Look at El Al in Israel

    You're right, there are already dozens of perfectly nice police states around the world. I sure wish the paranoid would just move to one of them and be "safe", instead of trying to turn the US into one...

    --
    Benjamin Coates

  9. Re:More importantly... on A Quick Peek at Longhorn · · Score: 1

    Is anyone really insane enough to leave their CC# on their computer?

    It's not like it would be convenient, since most people keep their cards with them.

    --
    Benjamin Coates

  10. Re:Good! on ElcomSoft Files For Dismissal Of E-Book Case · · Score: 2, Insightful

    Incidentally, though, this "blind people used e-book reader" argument seems a bit thin on the ground, for two reasons:

    1) I've never seen any report of any case where a blind person actually used the software, and

    2) I seem to recall they only sold about 50 copies before it got yanked.


    I think the idea is that it's a "substantial non-infringing use" which is, iirc, what got the VHS people off, since it would be legal to "time-shift" by recording a TV show and watching it later, the VCR wasn't only useful for illegal copying. (even though that's a major use of the record feature)

    --
    Benjamin Coates

  11. Re:Pointless device in Canada on Trimming Television to Sell More Ads · · Score: 1

    Um, I think because people (at least some people, I suppose) find government-controlled media outlets somewhat distasteful... You know, the whole "we tell you what to think then you vote that way" feedback loop and all. People even make a stink now and then about money going to PBS in grants.

    Not that the free U.S. press isn't doing a wonderful job of looking the other way and swallowing the official line without question anyway, mind you.

    --
    Benjamin Coates

  12. Looks kinda like a Messerschmitt on Electric Car Sighted on Highway - Who Makes It? · · Score: 1

    Hard to tell, but that car bears a passing resemblence to a Messerschmitt. Wacky little car, that was/is.

    --
    Benjamin Coates

  13. MP3s- I would have killed for that in college (nt) on Innovative Uses for Educational Technology Funds? · · Score: 1

    like i said, nt

  14. Re:amazing new tech on Innovative Uses for Educational Technology Funds? · · Score: 1

    Man, those things are dangerous. You'd think something described as "pulp" wouldn't be sharp, but you cut your finger on the edge and you'll wish you were dead.

    --
    Benjamin Coates

  15. Re:An Offtopic question... on Free Software Magazine · · Score: 1

    I imagine most of the 353 Offtopic are the same editor, though.

    --
    Benjamin Coates

  16. Re:C Advocacy on Free Software Magazine · · Score: 1

    argh, no, for signed addition,
    c = a + b is overflow if
    (a ^ b) &gt= 0 && (a ^ c) &lt 0
    (a and b have the same sign and the result is different sign)
    ... if i'm awake yet.

    --
    Benjamin Coates

  17. Re:C Advocacy on Free Software Magazine · · Score: 1

    There are a few things assembly has over C (just try to figure out if that last addtion operation just overflowed).

    isn't (a += b) overflow if (b &gt 0 && a &lt b)?

    --
    Benjamin Coates

  18. Re:Shouldn't this be illegal? on Spyware in Audio Galaxy · · Score: 1

    Wasn't the the click-thru licence on Netscape "smart download" shot down in court? I thought there was a slashdot article on it, but I can't find it.

    --
    Benjamin Coates

  19. Re:Read the fine print on Intel C/C++ Compiler Beats GCC · · Score: 1

    I've only used the Intel compiler on Win32, but i imagine there isn't much difference. It creates code that detects the CPU on the fly and branches to multiple optimized versions, so you get the fastest code for the system you're running.

    There are options you can set to control this behavior, so you can create smaller binaries targeted to a single processor (pentium, mmx, II, III, or IV, iirc)

    --
    Benajmin Coates

  20. Re:Take it one step further on UNIX Process Cryogenics? · · Score: 1

    Hibernation, you can do it on Windows 2000. When you can get it to work, hibernate (swap everything to disk and power down) and de-hibernate (reloads the image, give the password of the logged in user, right back where you left off) are much faster than shutdown/startup, particularly since you don't have to restart all those applications.

    It's a pain to get working and keep working, though, since (iirc) all hardware and all drivers must allow it, and windows is very unhelpful about which piece of hardware/driver is refusing to allow hibernate.

    --
    Benjamin Coates

  21. Re:I'd love to work with the Woz on Woz's New Startup · · Score: 1

    If you're really weak-willed, you could set the PDA up to make a guess at whether you're really doing what you said you wanted to do, or if you've actually gone for a beer instead.

    "No, Bob, I'm not going to go jogging with your PDA so that it thinks you've earned another Heineken. You need help."

    --
    Benjamin Coates

  22. Re:NYTimes article has more stuff to it on Woz's New Startup · · Score: 1

    Hey, if it has GPS and wireless support, you could phone the damn thing and have it tell you where you left it.

    --
    Benjamin Coates

  23. Re:Fix them up or Shut Them Down!!! on California City Issues Internet Cafe Moratorium · · Score: 1
    I've stepped into a couple local Internet Cafe's and have this to say:

    They are havens for HARD drug deals.

    Due to the lack of actual supervision, many of the so called patrons nearly live there.

    The cafe's have been the sites of many un-documented drug overdoses, hurriedly covered up by worried owners and PFYs.

    Wait a minute, you've "stepped into" a couple of these places and noticed HARD drug deals, ODs, and that some of the patrons "live there"? Either a) you've spent more than a little time at these places or b) you're making that up.

    My guess is b, since the one or two gamer cafes I've been to are have just been a bunch of (nearly unsupervised) kids (age 14-20ish) playing CS.

    --
    Benjamin Coates

  24. Re:Who gives them the right? on California City Issues Internet Cafe Moratorium · · Score: 1

    In that line of reasoning, a parent could also say that "I feel my son is reponsible enough to go into a bar and drink."

    I know lots of parents that think that. They're usually right.

    --
    Benjamin Coates

  25. Re:why? on California City Issues Internet Cafe Moratorium · · Score: 1

    If people think this is a bad thing?! What if the teenagers in question don't think someone being stabbed is a bad thing? Suppose they fatalistically think it's a natural part of teenage life? I imagine you think it's not government's job to tell teenagers that gang violence is not a natural part of life...it's the parents' job, and if they don't get it done, too bad!

    Or maybe these teenagers aren't quite as hysterical as their parents/legislators, and realize that while they may not be able to do much about violence, they can go on with their lives instead of trying to be perfectly safe by hiding under a rock or something...

    Besides, I'd wager more kids are murdered at home every year (where most people get killed) than at some internet cafe. It's just not news.

    --
    Benjamin Coates