Slashdot Mirror


User: Enrico+Pulatzo

Enrico+Pulatzo's activity in the archive.

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

Comments · 474

  1. Re:That, and I want a pony too. on Free or Open Source Web Design Program? · · Score: 1

    How is the parent a Troll? The poster provided absolutely no reason for why it has to be FREE (or even what kind of free was implied, my guess is $$$ since they were looking for a tool, not a library or other) and it's an important thing to know.

  2. Re:Default PHP protections? on TinyDisk, A File System on Someone Else's Web App · · Score: 1

    That's interesting, and I can't say I've ever heard of it. How different is this from PEAR::DB?

  3. Re:Truth vs. Lies on Your Favorite Math/Logic Riddles? · · Score: 1

    When faced by that dilemma, I just go rent a copy of Labyrinth.

  4. Re:I'm a developer of color on Named Innovators/Developers of Color? · · Score: 1

    Just who did let all this riffraff into the room?

  5. Re:Anxiety caused by too much caffeine. on Anxiety Disorders Discoverable by Blood Test · · Score: 1

    No blood in the caffeine stream? I'm not sure if this was a joke or a Freudian slip. Either way, I enjoyed it.

  6. Re:Good news on Stanford's Stanley wins DARPA Grand Challenge · · Score: 2, Insightful

    Where I grew up, as long as there are deer, there will be accidents :)

  7. Re:Right to post anonymously? on Court Rules in Favor of Anonymous Blogger · · Score: 1

    Can I mod you -1 Godwin's Law?

  8. Re:I don't get it - of course you need specs on Linus Says No to 'Specs' · · Score: 1

    The issue isn't that there shouldn't ever be a written spec, as much as people's implementation of a spec IS the spec to work towards.

    In reality, an interop specification should be updated regularly to keep track of all the little things people do to break them, in a similar way that there are myriads of CSS charts online that are functionally addendums to the specification, letting designers know that IE broke a certain thing, so avoid using that part of the spec, unless you also implement this workaround...

    I hope that makes sense/clarifies the situation somewhat.

  9. Re:Well,......hrm on Web Accessibility? · · Score: 1

    You're correct about links to actual urls. What I was thinking of (and didn't differentiate) was for specific javascript functions you were wanting to run, not actual pages you could surf to.

    I did miss the alt thing. Oops.

  10. Re:Realistically speaking... on Web Accessibility? · · Score: 3, Informative

    But a screen reader isn't the same thing as an aural user agent. A screen reader is an attempt to convey visible information via sound, whereas an aural user agent reads what is available. It's kinda like the difference between closed captioning and subtitles. One just represents who said what, and the other represents that plus environmental sounds that are pertinent to the reader.

  11. Re:Well,......hrm on Web Accessibility? · · Score: 1

    Here's my top 10 big things to be aware of when it comes to accessibility:
    1.) color blindness
    2.) high contrast
    3.) provide a way to skip navigation (users of screen readers benefit big time here)
    4.) provide summary attributes for tables, as well as caption tags in those tables, provided they're data tables and not layout tables
    5.) consider link tags in your head section to provide hrefs for the home, next, and previous links
    6.) use headings properly
    7.) don't force open new windows
    8.) if you use javascript for anything, don't use it as href="javascript:blah()" use href="#" onclick="blah(); return false;" instead
    9.) if you use javascript for updating content (ala AJAX) research a way to notify the user that the page has changed (I'm not sure if anyone actually has solved this problem yet)
    10.) try loading your page in lynx and reading it aloud. see how long it takes you to get tired of doing that--that's what a screen-reader user's experience is gonna be like.

  12. Realistically speaking... on Web Accessibility? · · Score: 2, Insightful

    Realistically speaking there is a ton of work the major browser players need to do in order to advance the cause of accessibility. Mozilla and IE especially are horrid when it comes to representing metadata to disabled persons.

    Standards-wise there needs to be a screen-reader stylesheet, so those programs can be more beneficial to their users.

    The biggest problem (as of today) probably lies in the content creation tools. Yeah, I know, the best sites should be coded by hand (which I do), but the majority of websites are maintained and created by tools that don't give a rip about accessibility (in any realistic way). Dreamweaver, Frontpage, et al really need to start stepping up in terms of accessibility.

    Finally, educating those who actually do content management about the needs of the disabled is essential. Since it's a pain in the ass to make a site easily accessible by disabled persons, you need to care about the cause to put the time in to do it right.

  13. Re:HTML 4.01?! on Slashdot HTML 4.01 and CSS · · Score: 1

    "You put an XML parser on an XHTML document, and bam, it's read."
    And how many people actually do that? Huh? Firefox sure the heck doesn't. Ie doesn't. Some of the server-side stuff I do does, after running the input through HTML Tidy. Unless XHTML is delivered with the correct mime type, User Agents aren't gonna be using an xml parser at all. What it boils down to is this: MIME-type defines the document, not the doctype, not your markup, it's all MIME-type. If you serve as xml, the user agent parses as xml. If you serve as html, the user agent parses with an html parser. Case closed.

  14. Re:Can someone please explain to me... on Opera Free as in Beer · · Score: 1

    That's pretty cool! I'm curious why you didn't make the content of the embed a click to change this.className though? It'd be nice to have the ability to do either one when there's a site with flash ads and flash content versus just flash content.

    Very cool though.

  15. Re:If it were from MS Press... on Best Software Writing I · · Score: 1

    Go read "Code Complete" and tell me your attitude hasn't changed.

  16. Re:Of course it'll work on The Electrocharger...Any Day Now? · · Score: 1

    Oh thank goodness, for a while there I thought all of the posts would just be sarcasm or nay-saying...

  17. Re:Finally on Clever Artificial Hand Developed · · Score: 1

    Well, the warranty ran out a Long Time Ago so you're prolly SOL.

  18. Re:Fp on Mozilla Firefox 1.5 Beta 1 Released · · Score: 1

    So only 90% of the general populace then?

    oh.

    In that case...

  19. Win the crowd first on Advice for the K12 Tech Guy? · · Score: 4, Insightful

    If they liked the previous guy, don't try too hard to dissociate yourself from his policies. If they believed in him and considered his advice good, don't oppose his policies publicly. Work on winning people over first, then proceed to force your religious beliefs (Free Software) on them :)

    In the end, you'll be just as highly considered as your predecessor was, and more-so with the money you save the district.

  20. Re:Another question on Comparing MySQL and PostgreSQL 2 · · Score: 2, Insightful

    My biggest beef with SQL Server is that I'm used to using PostgreSQL and like things such as SELECT * FROM tablename LIMIT 5 OFFSET 20 to get a partial results list. With SQL Server I can select the TOP 5 results, but cannot offset them server side, which means I have to send more data to my client program which I don't wanna do. It's got a few little foibles other than that that bug me, but none of them come close to bothering me as much as the LIMIT/OFFSET one.

    (secretly posting this to lure someone into refuting/solving my problem)

  21. Re:Use Gmail on Password Storage for Fun and Profit? · · Score: 1

    If I was to do that, I'd be sure to access gmail through https (and even then you may want to have a message with a javascript bookmarklet to encrypt/decrypt passwords rather than leave em in email).

  22. Re:Far Side? on Modern Humans, Neanderthals Shared Earth for 1,000 Years · · Score: 1

    I just figured you were from a parallel universe...

  23. Re:$1/CPU/hour? on Sun Grid Utility Goes Live for Employees · · Score: 1

    Well, the article says $1 per CPU per Hour so that would be ($1 * time)/(# cpus) so maybe using more CPUs gets you cheaper computing :)

  24. Re:Old news is no news. :-( on Defeating Captcha · · Score: 1

    It's a shame that PWNtcha isn't released to the public--a nice free OCR fork would be great.

  25. Re:This is too little too late on Mambo Foundation Gets Copyright, After All · · Score: 0, Flamebait

    Isn't it AMAZING how no matter what evil companies do, open source always loses? Mambo is totally WORTHLESS now isn't it? Miro really screwed the entire world with this move huh?

    Sheesh man, cheer for victories, no matter how incomplete. Open source advocates should take what the can get and always push for more, not bitch about how spoiled their victory is.