Slashdot Mirror


User: daeg

daeg's activity in the archive.

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

Comments · 769

  1. Re:I doubt they lost communication... on Software Bug Halts F-22 Flight · · Score: 2, Interesting

    I really doubt such an advanced (and stealth) aircraft would have any "traditional" radio capabilities that could easily be intercepted. If the encryption is written such that the position of an aircraft matters, they may have no communication channel at all.

    That said, I'm not sure how this bug would have escaped QA. I mean, it's an airplane. Hundreds of commercial jets fly over that line day in and day out, as do other American military planes. I wonder if the bug also exists at the Prime Meridian?

    I hate to imagine what the software patch process is like on a jet. I doubt you can just ssh in and run an svn up ;-)

  2. Re:don't tag this 'SHARKS' on 67-Kilowatt Laser Unveiled · · Score: 1, Offtopic

    You bring the sorrow, I'll bring the razors.

  3. Re:A big strike against Net Neutrality on Does the Internet Need a Major Capacity Upgrade? · · Score: 1

    I don't think there is a clear definition of their status. ISPs and regulators seem to pick and choose which and when to apply common carrier status.

    ISPs do not want pure common carrier status. They do like to regulate some things, such as port 25 and port 80.

    At the same time, ISPs want to remain close to common carrier status. Without being a common carrier, they become at least partially liable in cases where they are unable to fully police illegal activity. Having to regulate everything on their service would become an undue burden for most providers, as they simply lack the hardware, software, and support staff to monitor and deal with abusers.

    A scary thought is that if ISPs were required to monitor and police, they would probably be required to report offenses, too.

  4. Re:Icann I can not. on ICANN May Act Against RegisterFly · · Score: 2, Funny

    Now .mobi! Now .jobs! Now .biz and .aero!
    On .name! On .pro! On .info and .coop!

  5. Re:Power drain on The Next-Gen Consoles and Power Consumption · · Score: 1

    I'm guessing for wireless.

  6. Re:My hope.. on Ten Predictions for XML in 2007 · · Score: 1

    If they are advertising a job that indicates "Experience with XML", they are going to get shit for replies. They are going to get coders that have written a configuration file in XML by hand and think that means "Experience with XML". If the company actually wants DOM, XPath, and XSL, they need to say "Experience with XML; experience with XPath, DOM, and XSL a plus" or something of that nature.

  7. Re:Why 'Ready'? on Inside the Windows Vista Kernel, Part 2 · · Score: 2

    If Hyper was 3 years ago, does that mean HyperCard was ahead of its time?

  8. Re:Yum? on Colossal Squid Landed Intact In Antarctica · · Score: 0

    You'd have to fight over it with the Japanese. Your desire of eating it is not compatible with their desire to feel in real life what they see in pornography, what with the giant tentacles and all.

    Maybe you can eat it after they're done?

  9. Re:You know what I'm sick of? on BBC and YouTube Deal in the Works? · · Score: 2, Insightful

    Dear Skadet:

    You will like what we tell you that you will like. You will watch videos where we tell you to watch videos. You will do so and you will like it.

    Signed,

    Mass-Market Media Companies

  10. Re:OS X Intel? on Visual Basic on GNU/Linux · · Score: 1

    If both C and Fortran were compiled into an intermediary instruction set that was then run through an interpreter at runtime before reaching machine level, yes.

    Any .NET language (all 15+ of them) => compiler = same generated CLR / IL instructions (Common Language Runtime). It's a virtual machine, after all.

  11. Re:OS X Intel? on Visual Basic on GNU/Linux · · Score: 3, Interesting

    You mean VB.NET. It makes sense that VB.NET and C# are essentially the same things considering they transform into the same .NET instructions. I'd apply the logic in reverse: VB.NET is essentially the same thing as C#, just with different formatting.

  12. Re:So, PHP means ? on March To Be Month of PHP Bugs · · Score: 1

    Python. I had used Python for a while for shell/cron scripts, so it made for an easy transition. Specifically using the Django framework.

    Note that I did try Ruby for a while, and it was fun, but felt like too much magic. Python's syntax is a little more expressive and more closely matches natural English.

    The biggest attractions were automatic disk-based script compiling (there are PHP cachers and such that do this, but Python does it natively) and module separation (namespaces). One of my biggest gripes about PHP was that everything was in the same namespace, and not everything was consistent (substr vs. str_replace, note the position of "str" and the varied use of "_"). In Python, you can easily split into multiple named modules, for instance, if I have a "date" module with "class date" in it, I can import the default date-handlers as "from datetime import date as pythondate". This also means that if I never do anything with date handling, my Python code never has to load the information for it -- unlike PHP, where you have access to everything in every process whether you need it or not.

    Performance-wise, I think they are roughly the same in the hands of a capable developer. I'd wager PHP might be faster for smaller scripts, but once you get into the large application realm, the difference approaches nil.

  13. Re:So, PHP means ? on March To Be Month of PHP Bugs · · Score: 2, Funny

    Don't you mean \\\\\\\\\'magic quotes\\\\\\\\\'?

  14. Re:So, PHP means ? on March To Be Month of PHP Bugs · · Score: 5, Interesting

    The problem isn't just the coders, it's the fault of the language, too. Sure, you can write fairly secure PHP code, but the language itself does not lend itself to teaching security. It's plainly evident that most features have "ease of use" ahead of "security" -- Register Globals is a prime example. I could have told you from the start that registering variables based on the names of POST/GET values was a Bad Idea(tm). Hell, anyone could have.

    PHP is also forever afraid of breaking backwards compatibility. They probably don't want to scare PHP coders.

    They also have issues around the monolithic nature of PHP. Oh, you want image processing? Recompile PHP! Oh, you need XML processing? Recompile PHP! There is no isolation whatsoever, everything resides in the same namespace.

    I am glad that they are making progress, though. PHP 5 finally brought their OO up to speed (mostly). They finally have a secure, native database connector (PDO) that supports escaped bound parameters. PHP 6 is finally removing some deprecated features.

    That said, I still am weary when I log into a website that holds my personal information and see a ".php" URL.

    (I was a full time PHP developer for about 6 years. Was.)

  15. Re:Any recommended registrars out there? on Some Hope During Registerfly's Meltdown · · Score: 5, Interesting

    Read: http://nodaddy.com/

    In short: Some guy was hosting automated archives of mailing lists. Someone sent a list of MySpace usernames and passwords through the list, which were automatically archived. MySpace threw a hissy fit. Instead of filing any legal paperwork, or even bothering to contact the owner, they went straight to GoDaddy and said "This site is hosting illegal content. Pull it down." GoDaddy complied, no questions asked. GoDaddy didn't contact the owner, either.

    Note: the site wasn't even hosted with GoDaddy. GoDaddy was merely the registrar.

  16. Re:so... ruby? on Ruby Implementation Shootout · · Score: 2, Informative

    If you're going to mention Web Python Frameworks, don't forget Django. Honestly they are all really good choices (Pylons, TG, Django, etc). I know you mention it in your "why py?" post, well, assuming it's the same post I read a few months back. :)

  17. Re:The Memo on Translation of Macrovision Response to Jobs on DRM · · Score: 1

    Regardless of your position on DRM, you should hate Macrovision. They are as destructive to the entertainment industry as lobbyists are to the federal government.

  18. Re:More locked articles please? on War of Words Over Wikipedia Ads Continues · · Score: 1

    I'd really like to see a better "talk" page. It's far too easy to screw up the Wiki talk pages. It's intimidating to edit.

    A simple "Have a suggestion for this article? Leave it for the editors! _____________ [submit]" would be better.

  19. Re:Altering behavior... on Canadian ISPs Send Thousands of Copyright Notices · · Score: 5, Funny

    That's what belts are for.

  20. Have any of these survived? on Charter Implements SiteFinder-Like DNS · · Score: 4, Insightful

    I've read about various ISPs doing this from time to time, but have any of them actually stuck around for more than a month or so? The stories are usually followed up by a hasty retraction shortly after the launch.

    Charter customers (I pity you): make your voice heard!

    Although the recommendation to switch to OpenDNS has the same flaws from what I have read. They, too, redirect unknown domains to their "organic search" page. I'm not sure how trees and cows help your search, but I suppose supporting an open, free DNS system is better than letting Charter continue to rake in money at your expense.

  21. Re:Edit that article... on Is Wikipedia Failing? · · Score: 2, Funny

    Did you know that the population of African Elephants has tripled in the past six months?

  22. Re:Saturnian black holes? on Atom Smasher May Create "Black Saturns" · · Score: 1

    You do have to admit that was a brilliant setup with the given contents of the link.

  23. Re:Bias? on Mid-Range Accounting Solutions for Linux? · · Score: 2, Funny

    Have you ever met accountants? They're crazy, man, do you really want them making software choices?

  24. Re:Wow, I can't wait! on Intel Squeezes 1.8 TFlops Out of One Processor · · Score: 2, Funny

    Except there won't be any Vista drivers. Damn!

  25. Plausible, but no proof on Microsoft Getting Paid for Patents in Linux? · · Score: 5, Interesting

    While the idea is plausible and scary, where's the proof? If I were being threatened by Microsoft, I'd sure as hell make it public. What better way to defend yourself than getting support of the entire Linux/Free Software community?