Slashdot Mirror


User: edschurr

edschurr's activity in the archive.

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

Comments · 222

  1. Re:its fair turn around on Glenn Beck Loses Dispute Over Parody Domain · · Score: 1

    Specifically it's the Oct 29, 2009 show, clip 1. At about 3:30 into the clip they start the segment "FOR FOX SAKE!". At about 7:00 in they give an example of the commentator->reporter relation. I checked this at thecomedynetwork.ca, but I don't know where non-Canadians are supposed to watch it.

  2. Re:problems with complexity on Toyotas Suddenly Accelerate; Owners Up In Arms · · Score: 1

    There is a video with physicist/programmer Brian Beckman talking about how it's harder to model a car than a plane in a video game. I'm not sure that's relevant here but you're comparing two different classes of vehicles. (It's an interesting video anyway.)

  3. Re:Fragmentation. on ICANN Approves Non-Latin ccTLDs · · Score: 1

    How the hell are non-Chinese, for example, every going to figure out how to type a Chinese address?

    Visit a dictionary site, lookup the words they need via Pinyin or English, and copy-paste into the URL field. Or, use a Chinese Javascript IME website. Or, write it down somewhere and type it directly via Punycode (probably possible). Or, find the site via Google based on a term they can remember (that's the only time I use "I'm Feeling Lucky", e.g. I search "ascii table" rather than remember if it's asciitable.com, asciitable.org, ascii-table.com, etc.).

    People will figure out strategies to make use of these URLs.

    The simplest one: write it down. It's not like the spelling of Hudong or Zhongguo is obvious when you have only heard it.

  4. Re:Could open source really do the job? on Open Source Could Have Saved Ontario Hundreds of Millions · · Score: 1

    Who would have taken the politicians and IT management out for steak dinners... pretty power point presentations

    There are lots of companies who sell open-source "solutions", like Red Hat, Canonical, and Novell. Why wouldn't they wine and dine?

  5. Re:And why should they care? on MIT Axes the 500-Word Application Essay · · Score: 1

    So what good exactly is the "descriptive and alliterative treatment" vs. technical documentation? To me, the former is something I have to translate into the latter before I can read it. I can appreciate that someone might enjoy creative word choice, but is it anything more than a puzzle?

  6. Re:ahhh - book scanning on Software To Flatten a Photographed Book? · · Score: 1

    A 6mm 12"x9.5" piece of regular (not anti-glare) glass costs less than $10 to get cut. However, I haven't figured out a good way yet to use the glass without damaging the book's spine (while also operating the entire contraption quickly). That's why I want to use "heavy" image manipulation myself.

  7. Re:Starcraft II LAN Petition on Ask Blizzard About Starcraft2, Diablo III, WoW, or Battle.net · · Score: 1

    [P]irate battle.net servers will be created no matter what precautions you take. This is a point that has been proven time and time again by other companies seeking to use DRM.

    And this is a fallacy made time and time again regarding DRM—that DRM needs to prevent absolutely all piracy ever to be useful for a company.

  8. Re:Not clearly fair use on Flickr Yanks Image of Obama As Joker · · Score: 1

    As has been noted by other posters, non-commercial political speech is essentially the most protected form of speech that there is.

    Many/most of the posters don't seem to understand though that the point of parody being protected is not so a person can rip off any copyrighted work as long as they're making fun of something, but rather so a person can make fun of the copyrighted work itself. What you quote though—"the original work need not be the sole subject of the parody" and "reasonably could be perceived as commenting on the original or criticizing it, to some degree"—somewhat clarifies things for me.

  9. Re:So.... on Flickr Yanks Image of Obama As Joker · · Score: 2, Insightful

    Neither Hitler nor Satan are copyrighted.

  10. Re:They wouldn't have arrested her on Woman With Police-Monitoring Blog Arrested · · Score: 1

    Or by following plain clothes cops going to meet undercover agents and informants.

  11. Re:Not a Bug on Voting Machine Attacks Proven To Be Practical · · Score: 1

    Regarding the seals: can you mess with them using solvents and glues? Can you figure out the number, leave, create a matching seal and send somebody else in to break it? Can you paste a fake seal over the original to last long enough to add counterfeit votes before detection?

    Reading the time limit: can you send in a team of fraudsters who, all together, get enough time to tamper with the machine? Can you distract the poll workers to buy time you or a buddy time?

    I won't claim these aren't solvable, but I am interested in answers. (Didn't rtfa, urk.)

  12. Re:New algorithm = more relevant results on Google Previews New Search Infrastructure · · Score: 1

    I also find the way Google drops terms annoying. The problem is that you can't simply add + (plusses) to all your search terms, because then Google won't search for near hits, like words with plurals and misspellings. You may not like that feature anyway, but personally I'm OK with that sort of doctoring of my search results.

  13. Re:Ball Point Pens Destroyed Cursive on 26 Years Old and Can't Write In Cursive · · Score: 1

    Actually that's the brand I have settled on too.

  14. Re:Ball Point Pens Destroyed Cursive on 26 Years Old and Can't Write In Cursive · · Score: 1

    People should get a roller-ball or gel ink pen. They're much, much nicer (smoother to write with) than ballpoint pens, and nearly as good as fountain pens. They're less messy than fountain pens in my experience. There is variation between brands with respect to ink drying time, water-fastness, and ease of writing. I've got some that dry in 2 seconds, others that dry in 20, etc. So buyers be warned: a single pen won't prove anything about the whole class.

  15. Re:Why didn't this happen sooner? on Lawyer Jailed For Contempt Is Freed After 14 Years · · Score: 1

    I think they're BBTags. They're used in certain forums and they're similar to HTML but they're not HTML. The poster might just be familiar with them from spending time on another forum.

  16. Re:Statutory Damages on Jammie Thomas Moves To Strike RIAA $1.92M Verdict · · Score: 1

    With some time and some exponential growth those damages can be reached easily.

  17. Re:OT: Why can't I see subject lines? on CoS Bigwig Likens Wikipedia Ban to Nazis' Yellow Star Decree · · Score: 1

    Whoops, there's an error. The Slashdot filter removed an asterisk (used to match subdomains) from the @include in the ecode tag. To correct it this time I saved my post as "code". Hope this works:

    // ==UserScript==
    // @name           Fix invisible Slashdot titles
    // @namespace      hjd73hd73hd
    // @include        http://*slashdot.org/story/*
    // ==/UserScript==

    var s = document.createElement("style");
    s.setAttribute("type", "text/css");
    s.innerHTML='\
        .title, .title * {\
            background-color: #005151 !important;\
            //background-image: none !important;\
        }\
    '; // End of source
    document.getElementsByTagName("head")[0].appendChild(s);

  18. Re:OT: Why can't I see subject lines? on CoS Bigwig Likens Wikipedia Ban to Nazis' Yellow Star Decree · · Score: 2, Informative
    You could try this Greasemonkey script.

    // ==UserScript==
    // @name Fix invisible Slashdot titles
    // @namespace hjd73hd73hd
    // @include http://slashdot.org/story/*
    // ==/UserScript==

    var s = document.createElement("style");
    s.setAttribute("type", "text/css");
    s.innerHTML='\
    .title, .title * {\
    background-color: #005151 !important;\
    //background-image: none !important;\
    }\
    '; // End of source
    document.getElementsByTagName("head")[0].appendChild(s);

  19. Re:Off site backup! on How To Store Internal Hard Drives? · · Score: 1

    I have a hdd for software-managed backups in my computer, so I want my next backup to be off-site to guard against fire/burglary/earthquake. The most convenient place is actually my car. But the downsides/risks include vehicle acceleration, temperature changes, and humidity. Are these manageable, anyone?

  20. Re:And here I thought I was imaging it on Fraudsters Abusing Canada's Do-Not-Call List · · Score: 1

    Yeah well, my telemarketing calls went from 6+ a week to zero. I used the DNC list and Micheal Geist's iOptOut.

  21. Re:Historical record gone. on Tabula Rasa To Shut Down · · Score: 1

    There are lots of World of Warcraft videos, and my guess is it would be much more useful & interesting to watch those and see how people played than to know only what people played (by analogy, like knowing the rules of chess vs. the history of chess: the former tells you less about people).

  22. Re:Here's what you'll get with Bill Joy on Should the United States' New CTO Really Be a CIO? · · Score: 1

    The President's office already has a Science Advisor to handle that stuff. I think the CIO would get to handle infrastructure and supporting technologies, but not scientific or engineering applications including medicine and chemistry.

  23. Re:review copy on Fallout 3 Gets Leaked, Goes Gold · · Score: 1

    If he downloads more than he uploads, then is the swarm better off for him being there? My guess is no, as long as he's uploading at a lower rate than the average leecher who is getting the same download rate.

  24. Re:DRM could very well push PC gaming over the edg on Will DRM Exterminate Spore? · · Score: 1

    Geez, consoles have loads of DRM and they require that the disc be in the machine to play. The best of both worlds would be for your computer to have a Trusted Computing module then, eh?

  25. Re:I understand running away from prison... but on Spam King and Family Dead In Murder-Suicide · · Score: 1

    they had the patients so drugged up that they were completely checked out. As they say the lights were on but nobody was home. It was surreal, i can't even express how weird it was to see people that were like zombies they wandered aimlessly around

    How do you know they weren't just ill? See catatonic schizophrenia specifically.