Slashdot Mirror


User: dosius

dosius's activity in the archive.

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

Comments · 1,052

  1. Re:The devil is in the details on Judge Rules Man Cannot Be Forced To Decrypt HD · · Score: 1

    Ebichu fans?

    -uso.

  2. Re:As an Ex cable industry insider.... on Time Warner Cable Box Rental Inspired Antitrust Lawsuit · · Score: 1

    Time Warner's boxes are still Scientific Atlanta up here.

    Why, oh why, must cable use different frequency from aerial? Oh yeah, so they can rent you their box for $10 a month. Fucking highway robbery.

    -uso.

  3. Re:you are hollow, on Strange Ubuntu/Vista Compatibility Bug, Solved · · Score: 1

    And of course when Linux is finally desktop-ready they'll see it as too mainstream for them and move on to BSD, Minix or Solaris.

    As some already have.

    -uso.

  4. Re:And they say ... on Home Science Under Attack In Massachusetts · · Score: 1

    Most places here don't even sell pseudoephedrine anymore but only phenylepherine.

    -uso.

  5. Re:But...but...but... on MIT Team Working On a $12 Apple (II) Desktop · · Score: 1

    call -151, not call 151, though it was certainly possible for call 151 to work under certain conditions.

    The 65C02 machines were nice because of the assembler. The ][ had it too (*F666G) but the ][+ and first model //e lacked it. Shame. :( I learned a lot of 65C02 by poking around in mini-assembler.

    -uso.

  6. Re:Sweet on MIT Team Working On a $12 Apple (II) Desktop · · Score: 1

    Hehe, all I got in my //e is a Z80 card...and the stock 128K (it's the Platinum model)

    -uso.

  7. Re:But...but...but... on MIT Team Working On a $12 Apple (II) Desktop · · Score: 3, Interesting

    The original ][ had Steve Wozniak's BASIC which was limited but very well coded. It had a minor bug that produced the wrong error message in certain circumstances, not bad for being HAND-ASSEMBLED.

    Then they ditched it for that pile known as Applesoft, the mutant brother of the Commodore BASIC, which like the Commodore BASIC was written at M$. It was a more powerful BASIC, sure, but it was considered bloated (10K vs. 6K) and sluggish, and it had a number of bugs. Sound familiar?

    -uso.

  8. Re:Sweet on MIT Team Working On a $12 Apple (II) Desktop · · Score: 2, Interesting

    With a Ramworks, the Apple //e could handle 3 MB of RAM. In theory it could handle 16 MB, but the documentation said it was limited to 48 banks.

    -uso.

  9. Re:Good Grief on Canadian ISP Hijacking DNS Lookup Errors · · Score: 1

    They work for me... you know any better ones?

    -uso.

  10. Re:Good Grief on Canadian ISP Hijacking DNS Lookup Errors · · Score: 5, Informative

    They tried to get me to use their poisoned servers, and as soon as I found out (btw, they DO report nxdomain, along with their error handling servers), I went back to the old ones.

    The poisoned ones were 68.237.161.12 (nsnyny01.verizon.net) and 71.250.0.12 (nsnwrk01.verizon.net), and the unpoisoned ones are 151.202.0.85 and 151.203.0.85.

    -uso.

  11. Re:Vista... Microsoft's "New Coke" on Making the Switch To Windows "Workstation" 2008 · · Score: 1

    I actually preferred Coke II (its name in the early 90s).

    -uso.

  12. Re:Deep Differences on Linguistic Problems of GPL Advocacy · · Score: 1

    I have no qualms putting yellow mustard on French fries.

    -uso.

  13. Re:There is a reason -- BULLSHIT ON THAT REASON on Linguistic Problems of GPL Advocacy · · Score: 1

    THIS! I thought I was alone in thinking GNU software was a sluggish bloated mess compared to BSD. If I weren't concerned about what would happen if I ripped out the GNU underpinnings (coreutils etc.) from my Debian installation I prolly would replace more of it with BSD code.

    -uso.

  14. Re:Time to patch on 33-Year-Old Unix Bug Fixed In OpenBSD · · Score: 1

    Ugh. I still use byacc as my yacc of choice because Bison, like all GNUware, is bloated.

    -uso.

  15. Re:Probably not colors on Best Color Scheme For Coding, Easiest On the Eyes? · · Score: 2, Insightful

    People wonder why the hell I need a 23 point font for IRC when I have 20/15 vision. I just say I want to keep it that way.

    -uso.

  16. Re:Office 2007 runs on Wine 1.0 too. on Wine 1.0 — Uncorked After 15 Years · · Score: 1

    I do some extremely evil stuff with Word that, when I try to do it in OOo, makes me want to throw my machine out a window. Stuff like associating separate headers with separate sections, instead of doing it through some convoluted style sheet system and hidden text and all sorts of nonintuitive bullshit.

    Sorry, guys, OOo is good for what I need 95% of the time, but 95% isn't enough. I keep Word around for the other 5. (mind j00 I still use OOo the other 95)

    -uso.

  17. Re:Remember: Sexism's Only Alright If It Favors Wo on Do Women Write Better Code? · · Score: 1

    The buffer is 2048 bytes, and it's always good to leave slack. (I needed a buffer that was large but not too large.)

    As for the & thing - it's better safe than sorry. I use parentheses EVERYWHERE.

    e.g., (not real code) if (!((foo==20)||(bar>65))) { grill(); }

    The obscurity is the abuse of the trinary operator (I do this a lot).

    I use short, but typically explanatory variable names, though for throwaway variables I tend to use i j k etc.

    In one case I have "eolv" (end of line verbose), "suppress" (suppress certain errors), "tabv" (expands tabs, for tab verbose), "verbose" (expands control chars), "unbuf" (unbuffered i/o), "c" (char iterator), "synerr" (syntax error), "pnam" (program name - it's assigned right away to argv[0]), "travel" (int interator), "start" (first argument to process). A comment lists the switches and what they do briefly, one other comment explains a vagueness in the spec. No need much for comments, "if (verbose)" speaks for itself.

    -uso.

  18. Re:Remember: Sexism's Only Alright If It Favors Wo on Do Women Write Better Code? · · Score: 1
    If I do something weird or non-obvious I'll usually explain it (if tersely). Comments in my code? Pretty limited, really. If I feel a program is more or less self-explanatory, it might not really have any comments.
    • The uname code contains a single comment stating what switches do what and what is default, and no further comments.
    • The basename code has a single comment also, explaining that behavior isn't clearly defined and that I chose to implement it a certain way.

    The code is occasionally obscure, e.g., strftime(sfmt,2047,argc>ckprm?&(argv[ckprm][1]):"%a %b %e %H:%M:%S %Z %Y",&tm); but that happens more because I'm a terse coder than because I'm trying to be obscure.

    -uso.
  19. Re:Remember: Sexism's Only Alright If It Favors Wo on Do Women Write Better Code? · · Score: 5, Funny

    ORLY now. I'm still officially a man (much to my chagrin), and I've always used landmarks to give directions.

    -uso.

  20. Re:Geezer alert! on Review of the Model M-Inspired Unicomp Customizer Keyboard · · Score: 2, Insightful

    The actual tech of the keyboard *is* Model M. Unicomp is a spinoff of Lexmark, which got the tech when they spun off IBM.

    -uso.

  21. FP? on YouTube Fires Back At Viacom · · Score: 2, Insightful

    Now YT, bring back xenutv1 (since you cancelled it because of the original xenutv that you cancelled because of a Viacom complaint) and I might consider calling it even.

    -uso.

  22. Re:Illegal Search and Seizure on Anti-Counterfeiting Trade Agreement · · Score: 1

    Why would they bother? It's just a big ghetto, there's nothing to see here in Niagara Falls, NY.

    -uso.

  23. Re:Scummy ISPs on Charter Is Latest ISP To Plan Wiretapping Via DPI · · Score: 1

    Didn't TELUS get in trouble in Canada for blocking websites critical of them?

    -uso.

  24. Re:pda? on Dealing With Dialup · · Score: 1

    Been using PINE/ALPINE for years and I'm doing just fine.

    It's gotten a bit of an html renderer since becoming ALPINE. Still, though, it's fast enough and light enough for me. (I too believe in "e-mail is meant to be text only, bar attachments")

    -uso.

  25. Re:The real question here is... on Peter Gabriel's Web Server Stolen · · Score: 1

    But maybe they Steam rolled the place.

    *RUNS*

    -uso.