Slashdot Mirror


User: kjcole

kjcole's activity in the archive.

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

Comments · 34

  1. Regarding the InterPlaNetary Internet (IPN) on US Air Force Building Space Router · · Score: 1
    Straight from one of the source's mouth, here are a couple of Vint Cerf's resources for the curious:
  2. Stupid 6th grader. Us 7th graders know better. on Cassini Shows Close Up of Iapetus · · Score: -1, Troll

    Dude, that's not Kyle's mom's boob. It's Cartman's ass, dude.

  3. GNUWIN II: Open Your Windows on Free Windows Software Without Spyware/Adware · · Score: 1

    This sounds like it would go hand in hand with the GNUWin II Project, which puts out an ISO image full of free software for Windoze.

  4. Clearly this computer is a Satanist on Automatic Christmas Music · · Score: 1

    But where is "I'm Dreaming of a Black Mass Christmas"?

  5. This is only a drill. Had it been a real emergency on Using RFID Tags to Make Teeth · · Score: 1

    It seems that this could become a rather thorny crown...

    We could have a new branch of the armed services: Army, Navy, Dentistry... fighting the War on Cavities, and the Gum War -- a.k.a. Dessert Storm.

    And think about those "crazy" guys on the street ranting about the CIA transmitters in their teeth...

  6. Re:System 1022 and System 1032 on An Alternative to SQL? · · Score: 1

    And it had "joins" too, using a command named MAP. Again, from memory, assuming two tables had key fields with the same names:

    MAP table1 TO table2 VIA colname1, colname2

    (It was relatively simple if the colmn names weren't the same also.)

  7. System 1022 and System 1032 on An Alternative to SQL? · · Score: 1

    On the DECsystem-10 and then later on the VAX, we used a relational database with a query/procedural language that non-technical people could actually use. And the techincal folks liked it as well. No need for a GUI for those who could understand basic English. To find records, the command was ... FIND (which did not mean "find and print"). To print records, the command was, come on now... Yes, PRINT! ;-) And none of the redundancy of SQL. There was an attitude that if you were working with a table or group of tables, that you'd probably continue working with them for several commands or queries. This persistence eliminates the need to constantly add "FROM bla-bla-bla" (and often "WHERE bla-bla-bla") to every command.

    Short comparison (if I recall correctly):

    SQL

    SELECT colname2, colname5, colname32
    FROM tablename
    WHERE colnameX = valueY;
    UPDATE tablename
    SET colname2 = valueY
    WHERE colname2 = valueY;
    SELECT colname42, colname20, colname9
    FROM tablename
    WHERE colname2 = valueY;

    S1032

    OPEN tablename
    FIND colnameX EQ valueY
    PRINT colname2, colname5, colname32
    CHANGE colname2 = valueY
    PRINT colname42, colname20, colname9
  8. Re:Not the first time this has happened on Deaf Children Invent Language · · Score: 1

    Families where deafness is common but who are in some way out of the mainstream, often develop "home signs" as a means of communicating. While often not very sophisticated, to say they knew "NO LANGUAGE at ALL" may be a bit of a stretch, unless they were the only survivors of some nuclear disaster...

  9. Re:Yawn... on Deaf Children Invent Language · · Score: 2, Informative

    There is no "official" sign language. There is American Sign Language, Australian Sign Language, British Sign Language, and any number of other sign languages. Much of American Sign Language actually came from France.

    (Interesting side note for some: The manual alphabet used by Yanks differs from that used by the Brits and Aussies.)