Slashdot Mirror


User: rockNme2349

rockNme2349's activity in the archive.

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

Comments · 276

  1. +1 Funny on In Oregon, Wind Power Surges Disrupting Grid · · Score: 1

    So you're saying we should avoid energy loss from wire resistance by pumping liquid fuel in pipes instead? You're joking right?

  2. Re:NO NOT MATH on TI vs. Calculator Hobbyists, Again · · Score: 3, Funny

    we mathematicians DO NOT wee calculators. We don't do arithmetic. Don't tag this math.

  3. Re:And Extrapolation? on Can Drones Really Get National Airspace Access? · · Score: 1

    There were 5,688 flight hours in the past 4 years, and only 3 accidents. Claiming that the CBP is 52.7 accidents per 100,000 years is preposterous. They might as well just say 52.742616. I'm not a statistician, but like the GP said, it is absurd to use three significant figures here. It is very unlikely that the accident rate will scale up with standard use. It is much more likely that these accidents happen more often as the system is first used and the kinks are worked out.

  4. Re:Good on South Korea Deploys Killer Robot In DMZ · · Score: 1

    Which is why they are all programmed with positronic brains.

    On a more serious note though, these are pretty much just remote controlled. And even if we do make robots capable of deciding to kill on their own, do you really think that the engineers would completely forget to include a failsafe?

  5. Re:Minor improvements on How To Use HTML5 Today · · Score: 2, Informative

    The "input type" mechanism for forms is lame. There are a number of standard types like "tel", but it's just text with no line breaks. They should have provided for either regular expressions or syntax like the COBOL Picture clause ("CREDIT_CARD_NUMBER PIC 9999-9999-9999-9999").

    If you had RTFA you would have seen that one of the new validation types IS regex in the HTML 5 draft.

    <input type="text" pattern="REGEX HERE">

  6. Re:Electric isn't ready... on High Depreciation May Slow Electric Car Acceptance · · Score: 1

    Taxi's can even solve the problem easier, by just having a fleet of vehicles, and having drivers come and swap out the entire car as the battery is drained.

  7. Re:Most likely scenarios on SanDisk WORM SD Card Can Store Data For 100 Years · · Score: 2, Funny

    Even if there's some piece of hardware in a museum, it won't be able to interface with existing technology.

    SD card reader plugged into a USB adapter plugged into an Ethernet adapter plugged into an optical encoder plugged into whatever they need in the future.

  8. Re:what could possibly go wrong ? :) on Building a Homemade Nuclear Reactor In NYC · · Score: 1

    And then you wake up from that dream and remember that you don't have a girlfriend. You spend most of your free time in your apartment building a fusor.

  9. Re:dumb question... on Deformable Liquid Mirrors For Adaptive Optics · · Score: 1

    Such objects could easily range from a planet to a small black hole.

    Problem solved.

    How about, oh say, Mercury?

  10. Re:it's magic! on Cloud Gaming Service OnLive Set For Launch · · Score: 3, Interesting

    Well for one, they plan on transferring 2D video data probably at around 24 FPS. They are trying to get as low latencies as possible by having several servers around the country and are only selling to people near those servers.

    Their target is not hardcore PC gamers. Also this system will never work with twitch gaming, like unreal tournament. However for less latency critical games, and for more casual gamers who aren't looking for a large hardware commitment, this fills a niche. I'm personally not interested in their service, but I'm interested to see how it turns out.

  11. Re:He Won! on The South Carolina Primary and Voting Machine Fraud · · Score: 1

    Inconceivable!

  12. Re:What the? on Starbucks Frees Wi-Fi · · Score: 3, Informative

    Schultz also said that Starbucks is partnering with Yahoo! to debut the Starbucks Digital Network this fall. Starbucks customers will have free unrestricted access to various paid sites and services, such as wsj.com, as well as other free downloads Starbucks didn't detail.

    It sounds to me like they will get free WiFi access to the internet, as well as a free pass around a couple pay-walled websites, although neither the article or the summary explicitly says it.

  13. Re:Cool on Hong Kong Company Develops Solar-Powered Lightbulb · · Score: 2, Interesting

    Maybe something like this would be cheaper?

    I would hardly say this is the world's first.

  14. Re:Use ads on Anti-Speed Camera Activist Buys Police Department's Web Domain · · Score: 1

    idk my bff jill works for the CIA and shes smrt

  15. Re:20 minute delay ... on Mars500 Mission Begins · · Score: 1

    I get it, like on the space station!

    Tired of the cramped ISS? Just suit up and go for a space walk!

  16. Re:Limited Life of SSDs? on Hitachi-LG Debuts HyDrive, Optical Drive With SSD · · Score: 1

    Well, actual testing is ideal, but I'm sure their estimations aren't far off. If they claim that they have at least 20GB / day for 5 years, and can run them at 10000 GB / day for 3-4 days then I think that's a fair estimate. Of course there are other factors involved, but it is far from wild guesswork from the marketing department.

  17. Re:Next up on Thumbprints Used To Check Books Out of School Library · · Score: 1

    their fingerprint is always at hand

    Bah dum ... CHA!

  18. Re:Interesting on Researchers Create 4nm Transistor With Seven Atoms · · Score: 1

    Or you could just store it in a silicon crystal. That aught to do the trick...

  19. Re:What, no plus sign? on When Rewriting an App Actually Makes Sense · · Score: 1

    Sorry about that. I just used that as an example and did a quick search for a code. I agree that I am frustrated when a program doesn't validate, but the entry is to specification. The poster after you posted a link to a proper email regex string.

  20. Re:Here's my short list on When Rewriting an App Actually Makes Sense · · Score: 1, Informative

    Do you really think that a thousand if-else statements is more readable than a regex statement. If it takes you one hundred lines of code to test for one condition, then the code becomes less readable, even if each piece makes more sense. RegEx is optimized to test for formatting of a string. This is what it was meant for.

    Pseudo-code:
    'If Email Address
    If (String.RegExMatch("^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$")) Then
    'Do Stuff
    Else
    'Do Other Stuff
    End If

    As proof of the point I'm not going to try and program the same functionality with If-Else statements. If you are using regular expressions correctly you leave a human-readable comment explaining what the regular expression matches.

    But I think the important point to take away here, is that we can all agree that VB sucks. =)

    RegEx copied from regexlib.com

  21. Rosebud... on Researchers Restore Youthful Memory In Aging Mice · · Score: 1

    it was his FTP password. There. I spoiled the movie.

  22. Re:New horrible death... on Supermassive Black Hole Is Thrown Out of Galaxy · · Score: 1

    The episode will conclude with Adam blowing up one of the black holes.

  23. Re:Mostly laughable concept. on "Wet" Asteroids Could Supply Space Gas Stations · · Score: 1

    IANARS, but I've always thought that in space, there was plenty of energy to be harvested from the Sun, via solar panels, or directly applying the radiation as another poster commented. From what I understand, the reason we require so much fuel is because we need more than just energy, we need something to push behind us, which is why ion propulsion is popular for long distance space travel. You use what little mass as effectively as you can. We're not trying to run a power plant here. Of course we're not going to generate energy by splitting and then recombining water. We're trying to collect something that we can usefully use to propel ourselves that we don't need to bring out of a gravity well in the first place.

  24. Re:Yeah... on When SSD and USB 3.0 Come Together · · Score: 1

    I have yet to buy a SSD, but everyone I hear who has bought one says that they will never go back to a system without one. SSDs aren't there to replace your mass storage, they are there to replace your boot drives.

    My system right now has 3 HDDs, I have 2 performance 640GB HDDs in Raid 1 for the OS and programs, and a 1.5TB slow spinning HDD for my movies and any other very large storage that I don't feel needs to be duplicated. SSDs aren't trying to replace my media HDD, for the foreseeable future this task will be covered by spinning discs. SSDs are going to replace my boot drives. I wouldn't be surprised to see slightly higher level consumer PCs start shipping with two drives in the near future.

  25. Re:So what do I do? on DNSSEC May Cause Problems On May 5 · · Score: 1

    Your internet is full.