Slashdot Mirror


User: porkchop_d_clown

porkchop_d_clown's activity in the archive.

Stories
0
Comments
1,526
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,526

  1. There is one very widely used FORTH-type language on Next Generation Stack Computing · · Score: 2, Insightful

    that almost every /. user encounters every day: Postscript and PDF.

  2. Archival environments... on Has Anyone Seen the Moon Pictures? · · Score: 1

    There are ways to store tapes so they don't decay - but NASA has had such a problem storing all the data generated by each space probe it wouldn't surprise me if the tapes got pushed further and further back till they were misfiled and possibly destroyed.

  3. I absolutely agree. on The Doom of Wired Peripherals · · Score: 1

    And it absolutely pisses me off.

    I'm no tree-hugger, but the amount of power we consume in aggregate because of all these "it's just another milliamp" computers, TVs, stereos, and so on could go a ways towards meeting our carbon emission problems.

    Don't get me started on video cards with their own power supplies..

  4. What point was that? on Blogging All the Way to Jail · · Score: 1

    Look, when people go around making ridiculous claims that the government equates vandalism with terrorism all they do is undermine their own cause and, like the boy who cried wolf, end up being the cause of the problem rather than the solution.

    Criticizing the government for what it is doing is fine, and valuable. Making shit up is merely embarassing.

  5. What? on Xcode Update Gives Objective-C Garbage Collection · · Score: 1

    ROTFL.

    You know, as someone who spends a lot of time dealing with the interactions between malloc and the OS, I find it extremely amusing that you think a sanity checker for the heap is a bad idea.

    So, GC is good, but defending the heap is a bad idea?

    Personally, I wish Linux had it. As it is, the unsafe implementation of malloc hooks in Linux leaves me forced to deal with races and timing holes, or with the "bad" decision of completely replacing the standard malloc library with my own.

  6. Nice FUD. on Blogging All the Way to Jail · · Score: 1

    You can't prove any of this, but, hey, it all sounds so scary it must be true!

    I particularly enjoy how you conflated actual threats against our liberties with intellectual gibberish.

    Scary stories might be fun on camping trips, but in the real world, I prefer to make decisions based on real evidence, not ravings of people who aren't even bright enough to distinguish between a request for evidence and "trolling".

  7. Again... on Blogging All the Way to Jail · · Score: 1

    Cites.

    Citing a TV commercial that says drugs support terrorism is hardly evidence that the government considers petty vandals to be terrorists.

  8. I'm pretty sure that on Blogging All the Way to Jail · · Score: 1

    firebombs, death threats and causing $3.5 million in damage don't count as "petty vandalism".

  9. Right. And when on The Doom of Wired Peripherals · · Score: 1

    all your peripherals and all your appliances consume power even when you aren't using them, that's a significant change to your consumption.

  10. Right, right. on Blogging All the Way to Jail · · Score: 1

    Because the San Francisco police are famous for "putting the thumbscrews" to protestors. Why, compared to them, China looks anarchic.

    Pull the other one.

  11. Cites, please. on Blogging All the Way to Jail · · Score: 1

    Gimme a single case of someone being charged, or even labelled, as a terrorist for committing vandalism.

  12. Right. on Blogging All the Way to Jail · · Score: 1

    Please provide an example of someone being labelled a "terrorist" for engaging in petty vandalism.

  13. Uh. Right. on Blogging All the Way to Jail · · Score: 1

    How many people died in the Boston Tea Party?

    By that standard, vandals and grafitti artists are terrorists, too.

  14. Do you realize how much power on The Doom of Wired Peripherals · · Score: 1

    all your instant on appliances and devices are consuming in aggregate? How much it costs you each year to keep them running? How much CO2 is emitted to keep them running?

    All so you can enjoy a slight momentary convenience?

  15. Stupid idea. on The Doom of Wired Peripherals · · Score: 5, Insightful

    Yeah, cabling is a pain, but we should be looking at ways to reduce the power consumption of our electronics, not boost it.

    Wireless peripherals would have to draw independent power and be "always on" - guaranteeing that even when everything is shut off and you're on vacation in the islands, your home computer gear is still sucking power.

  16. Oh, what garbage. on Blogging All the Way to Jail · · Score: 1

    When our country was founded, by people who would be called terrorists today

    Nice. I missed the part where Washington employeed suicide bombers, or targeted the citizens of Philadelphia to death for being insufficiently pro-rebellion, or where Ben Franklin used sabotage to attack London, or where Patrick Henry cut the balls off captured British soldiers. But other than that, yeah, the American rebels were complete terrorists.

  17. Yeah, sorry. on Xcode Update Gives Objective-C Garbage Collection · · Score: 1

    There seems to be a lot of cross communication in this thread.

  18. Heh. Non-standard features? on Xcode Update Gives Objective-C Garbage Collection · · Score: 1

    Actually, from first hand experience I can tell you that Linux can make a mockery of even the mallopt features that glibc says it supports.

    Besides, why are you lecturing me about this? Someone asked a question, I said "no" and now you're lecturing me about what I have to do to change the answer to "yes"? Thanks, but I already know that.

  19. The problem is that on Xcode Update Gives Objective-C Garbage Collection · · Score: 1

    That's for Java, not a C-type language. Since Java does not permit access to memory pointers, GC can be made much more efficient; in a language derived from C, GC is never going to work well - there are too many ways to access memory directly.

  20. Sorry, yeah, you're right on Xcode Update Gives Objective-C Garbage Collection · · Score: 1

    about retain/release not being in libc; I seem to be confusing retain/release with allocator zones today.

  21. Yeah. on Has Steve Jobs Lost His Magic? · · Score: 1

    It's weird - the rest of the industry moved to the commodity model 10 years ago, yet Jobs still grabs attention like it's 1985.

    I mean, do people flood web sites to read a live blog of Windows developer key notes?

  22. They didn't kill VPC on No Virtual PC for Intel-based Macs · · Score: 1

    They ported it to Windows, where they use it as a training, configuration and administration tool.

  23. Sonny, since the effect is the same on Xcode Update Gives Objective-C Garbage Collection · · Score: 1

    there is no difference.

  24. Freeing all at once... on Xcode Update Gives Objective-C Garbage Collection · · Score: 1

    Ummm... In my professional experience with Java, "freeing all at once" has been directly responsible for making Java on the desktop unusable. I will be the first to say that Java has probably gotten a lot better since I got my JDK certification, but I have no reason to believe that "freeing all at once" is somehow better than doing incremental heap inserts. Particularly since the GC has to go hunting for the things it will be "freeing all at once".

  25. Checking some more... on Xcode Update Gives Objective-C Garbage Collection · · Score: 1

    From my 1st edition ADC Cocoa book...

    Each application puts in place at least one autorelease pool and can have many more. An autorelease pool tracks objects marked for eventual release and releases them at the appropriate time.

    To me that implies that the same pool exists for the life of the app.

    Maybe the behavior changed sometime after 10.0?