Slashdot Mirror


User: Drethon

Drethon's activity in the archive.

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

Comments · 1,939

  1. Re:I don't know much about electronics.. on Science Fair Entry Shuts Down Airport Terminal · · Score: 1

    Lacking any mod points, let me say someone give this poster an electronic cookie.

  2. Re:Simple on Are 'Real Names' Policies an Abuse of Power? · · Score: 1

    And then there are the people who start stalking you because they are insane and can't tell the difference between one name and another...

  3. USB Powered LCD Displays on Do Two-Screen Laptops Make Sense? · · Score: 1

    http://www.amazon.com/UM-710S-Powered-Swivel-Screen-Display/dp/B002RMPASG/ref=sr_1_1?ie=UTF8&qid=1311172395&sr=8-1

    Not quite what I would want but its a start in the right direction, give me a 17 inch capacitive touchscreen that can be plugged into a USB port. What IPad? (yes I know the IPad would be smaller than a laptop plus that display but its the functionality of the touchscreen I want, not the small package of an IPad).

  4. Re:Wish we could move on A Tale of Two Countries · · Score: 1

    Yep, a home is a place to keep the rain off my head and this nasty hot weather outside without having to depend on landlords to maintain anything. Plenty return on investment for me. Were you expecting cash or something?

  5. Re:Wish we could move on A Tale of Two Countries · · Score: 1

    ...those of us that got suckered in with a mortgage...

    Got suckered in with a mortgage or got suckered into buying a massive house? I bought a house about a third the value I could "afford", payed it off at the rate I could afford and now own a starter house, value being meaningless. True I went without health insurance and retirement funds for a couple years while working contract positions but when the economy crashes you do what you have to.

  6. God Speed Spaceshuttle on CmdrTaco Watches Atlantis Liftoff · · Score: 2

    You took us further than we could have imagined but not as far as some may have hoped. Here's to hoping the future will take us further.

  7. Star Wars X-Wing on Star Wars Books Released As Ebooks · · Score: 1

    Yay, I can digitize my Star Wars X-Wing collection... in a couple years when the prices are actually lower then when I first bought the books... um.

  8. Re:They don't need us. on Ask Slashdot: Mobile Data In Canada For a US Citizen? · · Score: 1

    I'd be happy to invest Canadian but the local credit unions did fine in the crash too and those are just across the street (despite being in Michigan, maybe if I could just walk across the border without papers, guess that's probably not your fault...)

  9. Re:Responsibility Where It Belongs on US Supreme Court: Video Games Qualify For First Amendment · · Score: 1

    And just as likely to lead to some kids wanting those materials more...

  10. Re:Typical on Best Buy Flexes Legal Muscles Over "Geek" · · Score: 1

    Hey, stop bringing reality into my perfectly subjective view of geeks and nerds!

  11. Re:Typical on Best Buy Flexes Legal Muscles Over "Geek" · · Score: 1

    No trouble...? Are you one of those mythical female geeks?

  12. Re:First Bug on Metasploit Launches Exploit Bounty Program · · Score: 1

    The first thing that comes up with the Windows Phone... seems appropriate to the not so subtle hint here

  13. Re:Absolutely on Italy Votes To Abandon Nuclear Power · · Score: 2

    When the checks and balances aren't bypassed anyway?

    I've heard it said, anarchy and monarchy/socialism are the perfect governments but the first requires perfect people and the second requires perfect leaders. So we have a perfect government to handle all of our imperfections (hopefully).

  14. Re:No on Have We Reached Maximum Sustainable Population Size? · · Score: 1

    Interesting points but in my area (Michigan, US) a house large enough for a family of five within ten minutes of a large number of jobs is about $100k. Food from the grocery store can get you a meal for $2-4 which is less expensive than approximately equivalent fast food.

    Not saying your points are invalid but determining the condition of the entire world doesn't work with just one or two sample points...

  15. Re:No on Have We Reached Maximum Sustainable Population Size? · · Score: 1

    Or lack thereof...

  16. Code Complete on Ask Slashdot: Good Homeschool Curriculum For CS?? · · Score: 1

    So its not a course book but Code Complete http://www.amazon.com/Code-Complete-Practical-Handbook-Construction/dp/0735619670/ref=sr_1_1?ie=UTF8&qid=1306930229&sr=8-1 is an excellent read to understand the overall programming process before getting into actual coding. Starting with language syntax and thinking you understand programming is backward to me when you first need to understand developing software and then you can use any language you want to for implementing the program you designed.

  17. Re:Depends on who is hiring on Ask Slashdot: Best Certifications To Get? · · Score: 1

    If I get the chance I'll grab some items from Code Complete http://www.amazon.com/Code-Complete-Practical-Handbook-Construction/dp/0735619670 which has some good entries for using comments not to explain each line of code but the overall operation a group of lines is written to perform.

  18. Re:Depends on who is hiring on Ask Slashdot: Best Certifications To Get? · · Score: 1

    You can get information about the system that the specific lines of code doesn't cover. Is this code meant for an embedded system with low memory but high processor usage but you need the code for a netbook with a slow processor but fairly good memory (ok, those specific devices may not be ideal for the example but...).

    Yes a good developer can figure out why something was implemented the way it was but with comments the intent can be clarified and anyone working from the code can focus on real issues rather than a portion of code that was implemented for a particular reason that was not immediately apparent.

    Also just because a good developer can understand the code doesn't mean overall comments can't speed up figuring out what the whole of the code means without immediately having to dig in and read each line to determine overall functionality.

    I need to sit down and work out a specific example of this some time so it can be clearer but its not coming to me while I'm at work...

  19. Re:Depends on who is hiring on Ask Slashdot: Best Certifications To Get? · · Score: 1

    Explanation as to why a certain sort type is preferred here, why linked lists were used instead of arrays, higher level pictures that explain how all the pieces go together (though proper uses of function calls likely make the last less necessary...).

  20. Re:Depends on who is hiring on Ask Slashdot: Best Certifications To Get? · · Score: 1

    Parent has it. You don't write comments to state what each line of code is doing, the code says that. You write comments as to the motivation of blocks of code. They give the reason why a particular implementation was chosen and enough information for the next developer to determine if the reason is still valid or the code should be refactored.

  21. Re:Depends on who is hiring on Ask Slashdot: Best Certifications To Get? · · Score: 2

    I agree with your thoughts about people learning what a programming language is but not how to use it. So many people who come out of college knowing C/Java but their eyes would glaze over if you asked them to learn Ruby or Ada. Since I've left college I've learned C,C++,C#,Java (ok those are all similar), some Basic variants, DOORS DXL, Torque scripting language, Ada, Perl and touched a few other languages and found programming is the same in all of them.

    It may never happen but I'd like to get into teaching with the focus being teaching people programming concepts instead of programming languages. Get them to understand function calls, loops, branches, inheritance, etc and know that you first outline your program with these and then you implement it in your chosen language. In most cases that implementation is 90% identical for each language...

  22. Re:Compensation right... on PlayStation Network Hack Will Cost Sony $170M · · Score: 1

    Long live... ah never mind

  23. Re:Presumption of static images on Dark Energy Confirmed By Australian WiggleZ Sky Scan · · Score: 1

    Which is great but have we ever correlated redshift to distance or speed with actual observations or just mathematical models? I'm all for mathematical models but when they don't have actual observational support I wonder a tad...

  24. Compensation right... on PlayStation Network Hack Will Cost Sony $170M · · Score: 2

    I got an e-mail about a free month and a half or something like that on all games I previously held an account on... They going to bring the MxO server back up for a month and a half?

  25. Presumption of static images on Dark Energy Confirmed By Australian WiggleZ Sky Scan · · Score: 1

    So we've basically taken a snapshot of the universe (since the time span we've been observing is a minute fraction just compared to a planet, much less the universe) and made definite measurements of movement from this still picture. I don't know, something always sounded wrong about this...