Slashdot Mirror


User: ryanscottjones

ryanscottjones's activity in the archive.

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

Comments · 22

  1. Peter Griffin on Does Obama Have a Problem At NASA? · · Score: 0

    is a cartoon character.

  2. Re:Bioware on Breaking Into Games Writing? · · Score: 0

    Standing by what I said, handing over one's intellectual property and hoping to win a contest isn't exactly a sound career move, IMHO.

  3. Re:Bioware on Breaking Into Games Writing? · · Score: 0

    "Bioware has repeatedly had contests"

    Not exactly a career...

  4. Headline halts decline... on Drug Halts Decline In Alzheimer's Patients · · Score: 0

    ... in ambiguous headlines.

  5. Re:Pshaw on Your Computer and Cell Phone Are Lying To You · · Score: 0

    Actually, my Jeep and many modern SUVs are unibody.

  6. Speaking of boring rants... on Craigslist Forced To Reveal a Seller's Identity · · Score: 0

    When it comes to Craigslist then it's a case of buyer, and seller, beware. The site originally started out as a good idea but rapidly became spammed up with dodgy sellers, fake ads and boring rants. While there are still a few nuggets of gold in among the trash (best of rants and raves is always worth a look) it's increasingly becoming irrelevant. I'm not surprised they didn't bother to show, since they take such a lax attitude that getting into a battle to protect user anonymity would just be too much effort.

  7. Forced? on Craigslist Forced To Reveal a Seller's Identity · · Score: 0

    "Craigslist simply did not show up in court and lost by default" Hardly call that being forced.

  8. or an iPod on First Images of Russian-European Manned Spacecraft · · Score: 0

    Looks like a goddamn iCapsule. Damn you, Jobs!

    "Open the iPod bay doors, Jobs!"

  9. "can only point straight up" on Liquid Mirror Telescopes Set For Magnetic Upgrade · · Score: 0

    must be level?

  10. Really? on Viacom Looks For Google Staff Uploads in YouTube Logs · · Score: 0

    i don't think the internet ads model generates a lot of revenue.

    I think you'd have a hard time coming up with data to back up that claim. http://www.google.com/search?q=internet+ad+revenues

  11. Re:Moore's Law on Scaling Large Projects With Erlang · · Score: 0

    Exactly. That was pretty much my tongue-in-cheek point. The greater our processing power, the less we need things like Erlang. Follow that out and you have your Computronium. Don't really see how this is "offtopic," but I'm over it.

  12. Re:Moore's Law on Scaling Large Projects With Erlang · · Score: 1

    It does?

    Sigh... no, it doesn't.

  13. Moore's Law on Scaling Large Projects With Erlang · · Score: 0, Offtopic

    Eh... Moore's Law says that we'll all be on the same processor in a couple years anyway.

  14. Re:Fire! on BMW Introduces GINA Concept Car, Covered In Fabric · · Score: 1
  15. Fire! on BMW Introduces GINA Concept Car, Covered In Fabric · · Score: 1

    Hmmmm... what does this remind me of? Oh yeah... http://upload.wikimedia.org/wikipedia/commons/8/84/Hindenburg_burning.jpg Of course the Germans have learned from their mistake and as a result you won't be able to buy any in New Jersey.

  16. Kinda... on HoloVizio 3D, Holodeck 1.0 to Some, Makes Its Debut · · Score: 1

    ... had to be there.

  17. Re:Then you had better lower those prices! on Sony Thinks Blu-ray Will Sell Like DVDs by Year End · · Score: 1

    Right - but back then a gallon of gas was $1.

  18. Re:Tough project on Best Practices For Process Documentation? · · Score: 1

    #1 threat to America: Bears. #1 threat to corporate America: Buses. #1 threat to the universe: The Chicago Bears' bus. I could probably do something with Jerome Bettis, but you get the idea.

  19. E.T. iPhone Home on Math on iPhones Just Doesn't Add Up? · · Score: 1

    Ockham's razor is telling me they're in a New Mexican landfill next to those Atari 2600 ET cartridges. Two glowing finger scrolling? http://en.wikipedia.org/wiki/E.T._the_Extra-Terrestrial_(Atari_2600)

  20. Re:Next release PHP will support ideas from 70s! on PHP In Action: Objects, Design, Agility · · Score: 1

    In another 5 years we'll be able to run neural nets on PHP! What's stopping you from doing that now?
  21. Re:Something to note about other people's opinions on Are You Proud of Your Code? · · Score: 1

    An abbreviated variable name is OK if its context is well-established.

    Oh, we definitely agree on that. And I'm not suggesting that these are things you do. I'm just saying that in my experience it actually has been a real problem with people who don't know when it is appropriate to abbreviate and when it is not. Some people only abbreviate, and if they are no longer in your organization and there is a bug in their code, that can really ruin your day.

    Keep in mind, I believe we're talking boring old application code here, not algorithms. I would expect algorithms to use many indexes (your i's and j's and k's), vs. boring old application code which is just performing some step by step routines. Two completely different planes of existence... no one should expect a good algorithm to be readable. In fact, in my experience, the better the algorithm, the less readable it is. :)

  22. Re:Something to note about other people's opinions on Are You Proud of Your Code? · · Score: 1

    I've met people who won't even look at code unless every single line is commented telling them precisely what it does, so "int i = a + 2;" has to have a comment above it saying "// create a signed 32-bit integer variable, i, and assign it two more than the value of a". This, in fact, is one of my biggest pet peeves. Give that variable a name. Everyone knows it's a 32-bit integer, but they don't know what the hell it is doing in your code. i could be a counter, a page number, an offset... as someone looking at someone else's code, "i" tells me nothing. "a" tells me nothing. And chances are pretty good that six months from now, even the person who wrote it originally won't know what that "i" is for, either without going back through the code and trying to figure it out. Give that variable a name... most of the time that's all you gotta do to make your code 'comment itself.'