Slashdot Mirror


User: Larsen+E+Whipsnade

Larsen+E+Whipsnade's activity in the archive.

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

Comments · 82

  1. If this was a problem for so long... on User Forks FileZilla FTP Client After Getting Hacked (filezillasecure.com) · · Score: 1

    why didn't somebody fork it long before now?

  2. Them, and their enablers. on Who Should We Blame For Friday's DDOS Attack? (fortune.com) · · Score: 1

    All the people who made it possible for them to do it Meaning the vendors, and the low information consumers.

    Spread the blame around. There's plenty.

  3. The kernel has gotten too unwieldy. on Linus Torvalds Says 'Buggy Crap' Made It Into Linux 4.8 (theregister.co.uk) · · Score: 1

    This is compelling evidence. It's gotten unmaintainable.

    Time to take stuff out. But it won't happen, will it? Nobody wants to lose his favorite feature.

    Refactor? Risky. Especially this late in the game.

    Now, if they were to add some sort of safe/smart pointers to gcc and throw up warnings on all pointer arithmetic, we might slowly refactor many data corruption issues and memory leaks away.

  4. Which is why I go on about migration. on Are Flawed Languages Creating Bad Software? (techcrunch.com) · · Score: 1

    We need a feasible plan and tools to convert all that PHP code to something better. Python, maybe.

  5. When laptop computers fell under $300 in price I started thinking of them as FRUs.

  6. Why I grew to hate Java. on Are Flawed Languages Creating Bad Software? (techcrunch.com) · · Score: 1

    The standard class library, mainly. They kind of screwed that up, despite several tries. In particular, over-use of exception handling. It's not inherently a bad idea, but they went over the top with it.

    I really wanted to love Java. The core language is just fine, I think. Huge improvement there over C and C++. Everything else about it irritates me.

  7. On second thought... on Are Flawed Languages Creating Bad Software? (techcrunch.com) · · Score: 1

    you could bake the bounds into some pointers at malloc/calloc time. Far from perfect, but an improvement over the status quo.

    Anyone remember 286 protected mode?

  8. Hardware array bounds checking? on Are Flawed Languages Creating Bad Software? (techcrunch.com) · · Score: 1

    How would a standard C compiler make use of that when compiling pointer arithmetic? The array bounds are unknown, except just maybe to the programmer.

    Get the language semantics right first. That needs doing right now. Then we can optimize the hardware to the semantics at our leisure. Correctness first, speed optimization later.

  9. Attack the problem at the efficaceous level. on Are Flawed Languages Creating Bad Software? (techcrunch.com) · · Score: 1

    Management sucks. Can we do anything about that? Programmers also suck, because sucky managers hire sucky programmers. Can we do anything about that?

    If not, then settle for doing what we can, where we can, to manage and ameliorate the problem we can't fix. It's a Band-Aid, but it's what we have, and better than nothing.

    We can't fix human nature. Stupidity is a given. But we can compensate for it.

  10. Think of it as a safety catch. on Are Flawed Languages Creating Bad Software? (techcrunch.com) · · Score: 1

    The idea isn't to enable the untalented or unskilled to produce good software. The idea is to put a floor on how bad the bad software can get. Bosses will always hire idiots. Worst case with safe pointers: the idiots fail to produce something that works, so the bosses relent and bring in good programmers. Worst case without: the idiots produce something that seems to work, but then a stray pointer leads to disaster. Which worst case do you prefer?

    Also, pointer safe languages take the stress off of good programmers so we can concentrate on the level at which our insight is needed most.

  11. We can write most software this way. on Are Flawed Languages Creating Bad Software? (techcrunch.com) · · Score: 1

    The best we say can say about unsafe pointer use is that there are special cases where it's worthwhile. It absolutely should not be the default.

    C makes it easier to be unsafe than safe. Safe takes extra effort, shooting your users in the foot is enabled. It should be the other way around. Make programmers jump through some hoops to do it the dangerous way, instead of the safe way.

    C++ is better, but not all the way there. And there's too much legacy code in C. We need a migration path.

  12. There's a perfofrmance hit, regardless. on Are Flawed Languages Creating Bad Software? (techcrunch.com) · · Score: 1

    Reformed C or entirely new language, it costs what it costs regardless.

    It's really about priorities. Here in the 21st century, we need safe programs more than we need CPU-efficient programs. I'm not saying performance doesn't matter. I'm saying other things matter more. I don't care how fast your race car runs if it's going to hit a wall.

  13. Programmers. Singular, not plural. on Are Flawed Languages Creating Bad Software? (techcrunch.com) · · Score: 1

    And that's the problem. We have to deal with legacy code, written by others.

  14. Don't forget all that legacy code. on Are Flawed Languages Creating Bad Software? (techcrunch.com) · · Score: 1

    The reason unsafe, unmaintainable cruft sticks around is that all these people coming up with new languages don't think to provide a migration path. What's needed:

    1. An interface to existing C code, so we don't have to convert all at once. Okay, that one they usually provide. But...
    2. Ditto for C++ code.
    3. Ditto for Perl 5 code.
    4. Tools to assist in translating from old languages to new. Fully automated translation may be over-optimistic, but we can get halfway there.

    Or...
    1. An improved edition of C/C++ that provides safe pointer features, alternatives to preprocessor, and...
    2. DEPRECATES pointer arithmetic and other language malfeatures with obtrusive compile warnings and such.

    Then we can get rid of all those compile warnings at our leisure.

    If standards bodies don't come through fast enough, let GNU take the initiative.

  15. They could easily prove it... on Cloudflare: We Can't Shut Down Pirate Sites (torrentfreak.com) · · Score: 1

    shut off service to the pirate sites (under court order, for legal cover) for a week and see what happens.

  16. Re:Why I haven't ditched Perl: CPAN. on Which Programming Language Is Most Popular - The Final Answer? (zdnet.com) · · Score: 1

    Maybe PyPi will do the job. We'll see.

  17. Why I haven't ditched Perl: CPAN. on Which Programming Language Is Most Popular - The Final Answer? (zdnet.com) · · Score: 1

    Give me something comparable for Python and I'll be done with Perl for good.

    Anaconda doesn't quite give me the same communitarian, open sourcey feeling.

  18. I won't defend the ruling, but... on Linking Without Permission Violates Copyright, Rules EU Court (reuters.com) · · Score: 1

    an observation:

    Cross-site embedded images are a problematic capability. If there were some sort of meta tag by which a server could inform a browser that its images are not to be cross-linked, then we could have the best of both worlds.

  19. "you will use tool X on this project" on QtCon Opens In Berlin (qtcon.org) · · Score: 1

    ...that kind of thinking has never been a friend of open source, or of developers who want to do things right.

    Now that I'm my own boss, I'd really like to know. What's the best open source GUI toolkit for cross-platform development? Please don't tell me great Qt is, and don't tell me how much Qt sucks. I need to know how the various options compare to each other.

    Oh, and... how exactly do I submit to Ask Slashdot? Thanks.

  20. "currently not possible in the internet, but..." on Whither Tor? Building the Next Generation of Anonymity Tools (arstechnica.com) · · Score: 1

    Deal breaker right there.

    The whole point of freedom is to reduce dependency on other people. We do for ourselves,

  21. Freedom. Is there an app for that? on Apps Are Devouring the Open Web (businessinsider.com) · · Score: 1

    If not, the kluge that the Web has become will do for now. It may diminish, but it need not die. Even gopher has not entirely vanished.

    I'm very much for freedom, but I understand that implies permitting others to throw their own freedom away if they so choose. Let them handle the consequences. Just as long as freedom remains an option, meta-freedom is a reality - and that's fine for me.

    I value others' privacy enough not to demand access to their walled gardens. I value the network effect enough not to want to be in a walled garden myself. Just leave me that option.

  22. Also, lots of sites block Tor outright. Not even the courtesy of a CAPTCHA. That's a troubling trend.

    Maybe if we force upstream-downrange ratios into a narrow range then we can avoid exit nodes looking distinct from ordinary client hosts. That will make it harder to upload large files, but I can live with that.

  23. Re:Maybe the need isn't as great? on Whither Tor? Building the Next Generation of Anonymity Tools (arstechnica.com) · · Score: 1

    Other people's complacency should not be my responsibility.

    Let them be spied on if they're fine with that. But if it affects me, then a line has been crossed.

  24. This is a concern for me. It seems like exit nodes get blacklisted because they look like exit nodes. If we sculpted their traffic to look more vanilla we could get past this, and maybe reduce Tor's usability for spammers at the same time.

    The danger is it could also reduce usability for legit users as well, but CAPTCHA is already doing that anyway.

  25. Re:I've moved on from reference books. on No, the Internet Has Not Killed the Printed Book - Most People Still Prefer Them (nytimes.com) · · Score: 1

    Well, I was feeling bad because I'd prototyped in Perl/Tk. But text mode?

    This does look very much along the lines of what I'm doing. Why isn't there a generic name for this sort of thing, so we can find them?