Slashdot Mirror


User: Gulthek

Gulthek's activity in the archive.

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

Comments · 1,939

  1. Re:We have one already... on Publishers Campaign For Universal E-Book Format · · Score: 1

    -1. I easily carry dozens of volumes on my iPad: all searchable. Key when you're referencing programming books or website documentation slurped into epub.

  2. Re:ePub on Publishers Campaign For Universal E-Book Format · · Score: 1

    Funny, the Pragmatic Programmers, Sitepoint, and O'Reilly seem to have no trouble generating technical books with lots of diagrams / code blocks / etc. in epub.

  3. Re:ePub on Publishers Campaign For Universal E-Book Format · · Score: 2, Informative

    ePub can handle just about any formatting: it's HTML and CSS. Both Sitepoint and Pragmatic Programmers put out excellent epub technical books with many non-standard bits like code blocks and inline images: no formatting issues.

  4. Re:Amazing on BP Says "Top Kill" Operation Has Failed · · Score: 0, Troll

    There is a solution, but since it involves nukes we'll never do it.

  5. Re:because if we don't go on Japan Plans Moon Base Built By Robots For Robots · · Score: 1

    -1 Dumb Argument.

    Until we've created another Earth-like environment that is *completely* independent of Earth for supplies, then we're just wasting time up there. We need to start sending the robots for research now, so we can send more to terraform for us. Once they (and other helpers such as synthetic or genetically engineered bacteria) have terraformed an off-planet living space for us (Mars is the likely candidate), *then* we'll get some of our fragile human bodies out into an off-site backup.

  6. A week to count to ten? on How To Get a Game-Obsessed Teenager Into Coding? · · Score: 1

    Seriously? This is a *great* time to learn to program! Turn him loose with a JavaScript library and a good JS book (they do exist!) and he'd be able to have cool animated web effects online for all of his friends to check out in a week.

    It doesn't hurt that JavaScript is an effin' gorgeous prototype-based fully object oriented language either. Seriously! All the ugliness comes from dealing with the DOM, which the libraries (my favorite is jQuery) handle nicely.

  7. Re:"Weird"? on Weird Exoplanet Orbits Could Screw Up Alien Life · · Score: 1

    Point #1: there's no such thing as "highly evolved". You and I (or the xenomorph) is no more highly evolved than an mold spore. We've all evolved in parallel to best fit into our respective environments, if we weren't then we'd be extinct.

    Point #2: the xenomorph didn't evolve. It was a genetically engineered weapon ready to be dropped out of the bomb bays of the derelict alien spaceship, but something went wrong.

    Pedantic. Yes.

  8. Re:A very apt analogy on The Fashion Industry As a Model For IP Reform · · Score: 1

    That was one of the most epic posts I've read on /. in a long time. A long time.

    Please say that you're writing somewhere else, your blog hasn't been updated since 2008!

  9. Re:Rule of the 5 Year Old and 7 Year Old on Are Googlers Too Smart For Their Own Good? · · Score: 1

    No, the user is the user. When *users* post to Twitter with a shiny GUI they don't even have to know that the Twitter API exists, what it is, what its methods are, etc.

  10. Re:i live in midtown manhattan on Gulf Oil Spill Nearing Loop Current · · Score: 1

    Wow, you believe that midtown Manhattan is ready for post-portable-energy society? That dense urban living can survive? What are you going to eat? Asphalt?

  11. Re:Gander, Goose on Facebook Calls All-Hands Meeting On Privacy · · Score: 1

    If you've posted information to Facebook, it's Facebook's information. You gave it to them.

  12. Re:Limey on Facebook Calls All-Hands Meeting On Privacy · · Score: 1

    No, I don't find that troubling at all.

    "Oh no, my purchases will be used to serve up ads targeted to me!"

    I say, great! I know I'd be a hell of a lot happier if Hulu, et al. showed me ads for upcoming videogames, cool new music albums, iPad accessories, and the latest from ThinkGeek. Then advertisement might actually mean something to me. It might actually inform me of a product that I'd like that I didn't know about. Nothing is forcing me to get out my credit card, ads are just information.

    Bombard me with unwanted solicitations

    You make it sound like combat. If you don't want, don't buy. The big deal, I fail to see it.

  13. Re:So... on Armstrong, Cernan Testify Against Obama Space Plan · · Score: 4, Insightful

    That's funny, if we send humans to Mars that could be all the time they have to spend. Robots just need sunlight, we humans need much more logistical support. Robots also just need one way tickets.

  14. Re:So... on Armstrong, Cernan Testify Against Obama Space Plan · · Score: 1

    Just consider the logistics of getting humans to Mars and back again vs. the comparative ease of sending Spirit and Opportunity.

    Now consider the expense of a manned mission to Mars, vs. more robots. For the cost of a human mission we could send thousands of disposable robots. Robots crawling all over Mars doing science and terraforming. Just imagine it! Think of the awesome amount of data we'd be streaming in.

  15. Re:So... on Armstrong, Cernan Testify Against Obama Space Plan · · Score: 1

    Thank you!

    Robot exploration, all the way. Think Spirit and Opportunity x 1000.

  16. Re:Waste not, want not.... on Rockstar Ships Max Payne 2 Cracked By Pirates · · Score: 1

    JMS admitted it more openly than that:

    Where did the Starfury model Sheridan was looking at in the war room come from?

    Actually, I think the Starfury model was an illegal one we confiscated.
    Waste not, want not...

  17. Re:Social networks on Creating a Better Facebook · · Score: 1

    Less than four syllables.

  18. Re:After a month of daily use... on iPad Is Destroying Netbook Sales · · Score: 1

    Second for iTeleport. I've used it since it was called tunnel (iirc) on the iPod Touch and it's simply flawless. RowMote Pro is also excellent for controlling multimedia apps like front row and xbmc.

  19. tai gui le! on Hot Sales In China For Wi-Fi Key-Cracking Kits · · Score: 1

    165 yuan is not cheap at all.

  20. Re:Let's see... on Zen Coding · · Score: 1

    Wow. Ok. I'm a web developer by trade, so let's break this down from lowest hanging fruit on up:

    JS: separating JS from HTML is supremely trivial. Rather than enclosing your JS in js code, call out to a source file: . If you doing funky old school coding like using onload, replace that with a good JavaScript library and events (jQuery is my preferred flavor, but they're all good.)

    PHP: think of it like this: there are essentially two key actions your PHP is responsible for: getting data and building a display of that data. Some part of your PHP code is dealing with the retrieval or generation of information based on the current state, stick that PHP in its own class or classes and call over to it when needed. Write template PHP with your HTML, e.g. just loops, variable tests, and very simple code that is only related to the current HTML view.

    I'm not sure what you meant by one-shot CSS classes or blocks, but that sounds like you are justifying the use of inline styling. Separating the presentation from the content isn't just a good idea, it can really make your life easier when you need to go back and change something. If you have a lot of unique states, think about using multiple classes to construct them. HTML elements can have more than one, which is very handy: e.g.

  21. Re:Why bother with manuals? on Ubisoft Says No More Game Manuals · · Score: 1

    Back in the 80s, this was par for the course. Especially for Atari, Infocom, and Origin games.

    Infocom was famous for the odd physical objects (called feelies) included with games:
    http://en.wikipedia.org/wiki/Feelie

    The concept caught on, and all the good gaming companies were doing it:
    http://tvtropes.org/pmwiki/pmwiki.php/Main/Feelies

    Actual comic books game with some Atari games:
    http://www.tripoint.org/sq/ew/ewcover.html

  22. Re:[long_no] on EA Launches Ultima-Based Browser Game · · Score: 2, Informative

    Don't speak for me! I have the Ultima Collection and periodically replay the gems. Exalt is also great for actually playing Ultima 7, although 5 is still my favorite.

  23. Re:DVD Entertainment System?..sans the DVD. on The iPad As In-Car Entertainment System Killer · · Score: 1

    You can put your DVDs in iTunes. It's actually kind nice to have a selection of movies/television to watch on a bus, even on the small screen of the iPod Touch. Lots of blu-ray movies even come with a digital version nowadays since you can't import blu-ray movies easily.

  24. Re:Is it me or is he sounding more desperate? on Roger Ebert On Why Video Games Can Never Be Art · · Score: 1

    Wow, you just convinced me to buy MK vs DC. Your second paragraph should've been ad copy.

  25. Re:Total awareness? on Completely Farm-Bred Unagi, a World First · · Score: 1

    (Ms. Hoover voice) I didn't know we could do that!