Slashdot Mirror


User: Craig+Davison

Craig+Davison's activity in the archive.

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

Comments · 676

  1. Re:Of course! on Japan's TV Broadcasts To Be All-Digital By 2011 · · Score: 1

    You've never heard of GNU Radio, have you?

  2. Re:State Control of Art = Good on Artistic Freedom Vouchers Proposed · · Score: 1

    We're doing just fine with our healthcare system, thanks. Do they send out anti-public healthcare propaganda in the US, or something?
    - a Canadian.

  3. You mean on Quantum Cryptography Systems Commercially Launched · · Score: 1

    "The Code Book" is the light version. Heavier volumes include "Applied Cryptography".

    I'm not trying to be elitist here. "The Code Book" really is an easy read. It was designed to be.

  4. Re:what a sad comment on Christmas Bonuses? · · Score: 2, Funny

    ...says the man posting to slashdot from work.

  5. Re:What I would _not_ like to see in 2.7 on What Will Be in Linux 2.7? · · Score: 1

    smbfs is a kernel module.

  6. Re:No more Cracks Then on Bureau of Engraving and Printing Issues New US$20 · · Score: 1

    But can you glance at the edges of the bills in your wallet and tell how much you have?

  7. Re:Win NT on The Guy Responsible For Ctrl-Alt-Del · · Score: 1

    It sends the same interrupt as any other keypress/key combination, so technically all keypresses are handled by the kernel.

    As for "won't pass on to userspace", that depends on the OS, and "special hardware interrupt", you're full of shit.

  8. OpenSSH 3.7.1 released... on New ssh Exploit in the Wild · · Score: 1
    From an openssh-unix-announce posting:

    Security Changes:
    =================

    All versions of OpenSSH's sshd prior to 3.7.1 contain buffer
    management errors. It is uncertain whether these errors are
    potentially exploitable, however, we prefer to see bugs
    fixed proactively.

    OpenSSH 3.7 fixed one of these bugs.

    OpenSSH 3.7.1 fixes more similar bugs.

    Time to patch & upgrade for the second time today?

  9. Re:never mind windows on Solar Window Panes · · Score: 1
    If you didn't want sunlight there, then why is there a window there in the first place?

    Because you want ambient light, just not direct sunlight?

  10. Re:Republicrats on Project Censored 2003 Underreported Stories · · Score: 1
    If you define "out there" to be America, then that statement isn't even self consistent - an overwhelming fraction of Americans vote for one party or the other. Counting Europe as "out there," I'd put the democrats roughly center, republicans obviously right.

    I was thinking more of the range of viewpoints among everyone, not some weighted system - a single person who's ultra-ultra right would shift everyone else to the left, redefining the centre. I was thinking in academic terms... But I can see your point.

    Just curious, would you put all Canada's parties to the left because they support public healthcare and the Kyoto accord (except for the Reform Party which favours a two-tiered health system and no Kyoto)? I'm asking because the balance these parties are trying to attain between market freedom and social services seems more "central" than the American Democrats. Of course, you've probably guessed by now that I'm not an American and I get my American politics through the news, so I could have the wrong impression of the Democrats.

  11. Re:Republicrats on Project Censored 2003 Underreported Stories · · Score: 1
    Hey, me too (in most ways), but that's where center is.

    The proper way to define 'center' would probably be to look at all the viewpoints out there and find a middle ground. Relative to the far-right and far-left wackos, you'll find that both American parties are to the right.

    Of course, the 1-dimensional axis is hardly adequate for this. The political compass looks at a 2-dimensional classification with economic left/right and authoritarian/libertarian axes.

  12. Re:Ah, the memories... on Wind River To Stop Selling BSD/OS · · Score: 1

    "We were cracked"? Haha. The English-speaking world has already declared your dated 'historically accurate' usage incorrect.
    Sorry. Find some other way to be elite.

  13. Re:CIA sponsored coup d'etat on Cybersyn And Early Uniminds · · Score: 1

    Nobody said that. What kind of argument are you trying to make?

  14. Re:Public vs. Private on The Innovators' Ball · · Score: 1

    And having a good business model (not pandering to requests for an "internet strategy) is the best way to make a ROI for your investors.

  15. Re:why not direct democracy on Public Net-work · · Score: 1
    What if a majority of people dislike you, and make it a crime to be you?

    That kind of thing would never be put to a vote.

  16. Re:The grid is over centralised on Power Grid Insecurities Examined · · Score: 1

    If your decentralized solar panel is just efficient enough that you can cover your costs, you've won.
    I could understand your argument if people were pushing for small diesel generators or something else constantly polluting (as opposed to one time polluters like solar panels).

  17. Re:Why do you sound so much like a RIAA stooge? on Cyber Sleuths vs. Secret Networks · · Score: 1

    Because 128 kbps MP3s sound a lot better than tapes. You can also seek through them at random, play them at the click of a button.
    Plus, you have access to millions of them for zero effort and you never have to "swap" with anyone or even chat with, let along know, anyone you're downloading from.
    I'm all for downloading MP3s, but please don't make the good side look like idiots by comparing them to taped recordings.

  18. Re:So, what's the news? on Microsoft's Forgotten Mistakes · · Score: 1

    Visual C++ (as well as everything earlier including Microsoft C and their old DOS compiler Quick C) were once Lattice C.
    Historical note, Lattice used to be one of the "big name" DOS compilers (the others were Borland and Watcom)

  19. [OT]Re:WRONG! POSIX does some really dumb things!! on LSB & Posix Conflicts · · Score: 1

    I guess I was rightfully smacked down for that. Thanks for the clarification, all.

  20. Re:WRONG! POSIX does some really dumb things!! on LSB & Posix Conflicts · · Score: 1
    Oops

    char buffer[100 + 1] = "";

    So basically you allocated this nice 101 char buffer on the stack and then overwrote your pointer with a pointer to the constant "".

    char x[5]; /* x, of type char[], points to 5 chars on the stack */
    x = "hello"; /* oops. now x points to "hello" which is in a string table somewhere */

    The rest of your example seems OK.

  21. [OT] Re:Excellent! on Online Voting In 2004 To Require Windows · · Score: 3, Insightful
    The quotes are allowed for all data types.

    I'm normally no MS-apologist (actually Sybase apologist in this case; SQL Server is a fork of Sybase 4.2) but this makes sense to me:

    1. Conversions are done automatically between compatible data types. However, if you try to INSERT 'blah' where the column is an int for example, you will get an error.
    2. It makes things easier on the client software because the quoting rules are the same for all data types. If you're building a list of values for an INSERT or a stored proc call, you can just quote every value.
    3. Besides, a database isn't enforcing 'proper datatypes' by requiring quoting for half the data types (char, varchar, text, etc) and not for the rest (bit, int, float, etc). This isn't C -- there's no string/int storage difference; the whole query is a string.
  22. Re:Reassignment of terms. on Ink More Expensive Than Champagne · · Score: 1

    It's really not that dumb. Maybe I want a clean, cold beverage that doesn't contain nasty sugar or carbonation. And I can reuse the bottles and fill up at home if I know I'm going to want a drink in advance.
    I think pop drinkers are dumb because they're paying the same price as bottled water, but their beverage has crap mixed in with it.

  23. Re:Cars... on Cheaper, Cleaner Hydrogen Without Platinum · · Score: 1

    Wrong. I'm sorry, there's no way 60 SUVs pollute more than a single bus. Of course, I could be wrong. Please post supporting references.

  24. Re:now that you mention it on WiFi Exposes Sensitive Student Data · · Score: 1

    And it makes sense too. Obviously they had no use for that land.
    Besides, all land was "stolen" from someone at some point. Since there's a limited amount of land out there, the defend it-or lose it idea makes sense.

  25. Re:Zip encryption's pretty useless, anyhow. on .ZIP Standard to Fragment? · · Score: 1

    AES is a block cipher, not an encrypted file format.
    In cases like this, the security problems usually lie in the implementation, not the algorithm.