Slashdot Mirror


User: vingilot

vingilot's activity in the archive.

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

Comments · 51

  1. seen for what it is on Jewish School Removes Evolution Questions From Exams · · Score: 1

    "Maybe they fear that their creation story will be seen for what it is if pupils get to learn ideas supported evidence."

    What would that be? I see nothing wrong with accepting the creation story in a theological context and evolution in a scientific context. I totally agree evolution should be taught in school over creationism since the context is science. But I also detest snide comments such as this.

  2. Web blew it all up? on How Mobile Apps Are Reinventing the Worst of the Software Industry · · Score: 1

    'The tablet and phone app ecosystem is slowly, painstakingly reinventing everything I hated about the computer software industry before the web blew it all up.'"

    Web blew it all up? Web sucks too.

  3. Why not fund Ultimate Frisbee with a Lottery Bond? on Why Not Fund SETI With a Lottery Bond? · · Score: 1

    EOM

  4. Nothing wrong with paid software on Developer Drops Game Price To $0 Citing Android Piracy · · Score: 1

    Zero-cost, but certainly not Free Software; one has to wonder whether Open Source games with a "donation" build in the store would do better than proprietary games with upfront costs.

    I would rather pay a dollar for a high quality game than have a dumb ad supported model. There is nothing wrong with people wanting to be paid for software they have written. What is wrong is people stealing it. Worse stealing it when it only costs a dollar.

  5. Pot calling the Kettle Black on Chuck Schumer Tells Apple and Google To "Curb Your Spy Planes" · · Score: 1

    I would say the same thing to Chuck:

    http://www.ajc.com/news/nation-world/drones-at-home-raise-1460393.html

  6. terrible review on The Shadow Factory · · Score: 3, Interesting

    A review that tries to debunk the conspiracy theories set out in the book... pretty lame.

  7. terrible article on Model-View-Controller — Misunderstood and Misused · · Score: 1

    what a whiner.

  8. 1134 on Claimed Proof of Riemann Hypothesis · · Score: 1

    hEll

  9. Re:Hatch Act on NASA Employee Suspended For Blogging At Work · · Score: 1

    wrong, the hatch act does not prohibit political activity on your own time. I have a friend who worked for OSC (as an IG). That said the current head of OSC, Josh Block, is a real knuckle head. He is being investigated for multiple ethics violations, such as using gov't funds for political activity. Do a google search about him.

  10. My perspective as a Java Developer on How Microsoft Dropped the Ball With Developers · · Score: 1

    I recently (a year ago) switched to c#/wpf from java when I switch jobs. I have developed enterprise java applications (both swing and web front ends) since the start of java. As a language and api i find myself liking java far more. I'm sure part of this is familiarity, but mostly java's api is organized better.

    Eclipse is hands down the best IDE i have used, VS sucks for base features-- we do use resharper which makes it way better.

    Now here is where Microsoft rules: UI developent. WPF is so much easier to work with than anything java has to offer. Designing UIs and maintaining them with java is a royal pain. Microsoft makes it quick and easy. Sure, it may not be perfect, but it gets the job done.

  11. there are other benifits to the new DST change... on Daylight Saving Change Saved No Power · · Score: 1

    like having more sun in the evening to exercise outside after work. Normally its still dark. I like the change.

  12. stat on everest on 100 Things We Didn't Know Last Year · · Score: 4, Informative

    For every 10 successful attempts to climb Mount Everest there is one fatality.

    This is per expedition. See:
    http://www.americanalpineclub.org/pdfs/aaj/HueyEve restAAJ_03.pdf

    1 in 54 climbers dies. 1 in 10 expeditions will experience a fatality.

    For any climbers out there the above reference has good statistics of risk, including vs denali and k2.

  13. Re:Java sucks on Java Regular Expressions · · Score: 2, Informative

    Come on:
    "Some String".replaceAll("Java", "Bloated piece of shit")

    And FYI PatternSyntaxException is a runtime exception so no need to catch it and rethrow as a RuntimeException.

    so to write it your way:

    String theTruth(String s){
            return Pattern.compile("Java").matcher().replaceAll(s);
    }

  14. hand brace on Input Solutions for Repetitive Stress Victims? · · Score: 1

    I use hand braces (futuro brand). They sell them at Rite-aid or Walgreens. I also use a split keyboard. When I don't use the braces my wrists and hands hurt (insert joke here ). A split keyboard helps, but the braces eliminate any pain. I notice that if I use the braces then it helps with other things when I'm not wearing the braces that can be painful like opening cans or gripping things.

  15. large enough test pool? on Cosmic Radiation Speeds up Aging in Space? · · Score: 1

    "which is possibly one of the reasons astronauts who have been to the Moon tend to get cataracts about 7 years earlier than other astronauts"

    or because the sound stage they faked the landing on was contaminated with radiation from the manhattan project.

  16. how about you get more sleep? on Computers, Long Hours and Vision Problems? · · Score: 1

    call me crazy but you need more than 5hours of sleep.

  17. Re:The lesson? Don't buy in New York City, period. on Cameras Online? How The Shysters Work · · Score: 2, Informative

    unless it is adorama or B&H photo. They don't do sucker deals and have good reps in Photography circles.

    Jonathan

  18. Re:I don't see the big deal behind intelligent des on Vatican Rejects Intelligent Design? · · Score: 1

    And which God would that be?

    my perspective: the one I worship
    your perspective: the one you worship
    the guy with a turban: the one he worships
    your cat: can of tuna

    And thats the whole problem with teaching ID, at some point someone will say my God is responsible for this.

  19. Re:I don't see the big deal behind intelligent des on Vatican Rejects Intelligent Design? · · Score: 1

    I don't have anything against evolution nor intelligent design and I don't see why other people like that. I don't see why the two theories can't be merged.

    Neither do I; however, I hardly think that the 2 should be merged though. The second to last thing I want is some religious nut trying to explain science-- the very last think I want is some scientist trying to explain God. Trying to do either is demeaning to the other.

    And lets face it, ID is about God.

    Jonathan

  20. Re:Take Java seriously on Help crack the Java 1.6 Classfile Verifier · · Score: 1

    Both Java and .Net have the same problem. Sloppy memory. [...] No direct memory control, GC waited until it was too late, and everything started to crawl.

    I would hardly call it sloppy: Read this article on tuning GC ergonomics. Object allocation/deallocation is highly organized and much of it can be tuned.

    With the default Throughput collector full gc does not happend until the young generation is full. So your application may not fill the young generation; Additionally, collection in the young generation is parallel so memory reclaimation can implictly take advantage of multiple processors.

    The example you give where allocation/deallocation happens in a loop over 2^32 iteration can be made to run by knowing something about how/whats being allocated. With smaller objects you could decrease the size of the young generation to make incremental collections faster. With variable size object you could set and adaptive resize policy for the tenured/young generation size-- this would allow the heap to grow and shrink as needed (this can make GC faster since it may have to collect on a smaller space). You can also increase the amount of GC can consume; sometimes gc can be too timid and allow memory allocation to get out of control, resulting in a heap that grows too big for GC to collect in a reasonable amount of time.

    That said there are still times when it would be nice to have direct memory access, but there are always to get around this (such as JNI and managing your own memory/reusing objects).

  21. Re:Article somewhat ignores the fatness of the JVM on Java Urban Performance Legends · · Score: 1

    As an end user you should not have to worry about what to set your memory sizes to be. As a developer you should determine what your application's memory requirements should be and package your application accordingly for the end user. I wouldn't complain if you are a developer and end user. That said you can use an adaptive size policy for your generations to keep the jvm size smaller. The jvm size will grow and shrink as it needs to. Understanding ergonomics of GC is at least as important as understanding how to free memory in C/C++.

  22. Re:This sort of thing... on RIAA Sues a Child · · Score: 1

    and when some one makes music they are not spending their time? You think that because their time is not spent exclusively on you their work is inconsequential? This is a BS argument. I am not aware that theft is defined in terms of effort by the creator. There is not much grey when it comes to theft, either you payed or you didn't.

  23. Re:This is bull on GTA Sex Game Leads to ESRB Fracas · · Score: 1

    I'm certainly not going to argue that violence is ok and sex is not, however sex does carry with it certain responsibilities.

    And killing some one doesn't? give me break. Althought I agree with your statement:

    Maybe he should come down with an STD if he fucks every skank in the neighborhood. Or maybe he can be have his cash taken away to support the kid he fathered.

  24. its a trojan horse on Sony's New Nagging Copy Protection · · Score: 5, Insightful

    They want people to accept DRM, this time its easy to crack-- first hit is free. Next time though...

    call me paranoid

    Jonathan

  25. Re:I'd like to introduce... on Al Gore to Receive Internet Achievement Award · · Score: 0, Offtopic

    All hail the strongbox!
    lockbox