Slashdot Mirror


User: mrbnsn

mrbnsn's activity in the archive.

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

Comments · 88

  1. Re:I don't think so on China Snubs Verisign In Domain Tussle · · Score: 1
    What CNNIC is doing is creating their own system of root servers and TLD's that are pure Chinese.

    Thus ".cn" becomes the two hanzi characters, "Zhong Guo", ".net" becomes the two hanzi characters, "Wang Luo", ".com" becomes the two hanzi characters, "Gong Si", etc.

    Anyone who wants to use these hanzi TLD's will have to set their DNS servers to CNNIC-approved root servers. Anyone who wants a pure-Chinese URL that is accessible to Mainland users will have to do business with CNNIC.

    This is not a unilateral move by CNNIC, however. They have done this in cooperation with the NICs in Hong Kong, Taiwan and Singapore.

  2. Re:Wow...20 million on China's Internet Boom · · Score: 1

    Actually, "so hu" == "search fox" in Chinese.

  3. Re:This is excessive. on China Sentences Bank Cracker/Thief to Death · · Score: 1

    The hack was a hardware hack. They broke into
    the bank after hours, and installed a homemade
    dongle on the interface port of one of the teller
    terminals.

    Afterward, they were able to operate the bank
    terminal remotely, creating accounts and transfering
    funds.

  4. Open mouth, remove foot on Linux to be Official OS of People's Republic of China · · Score: 1

    www.turbolinux.com.cn

  5. Re:Are any Linux developers from/in China? on Linux to be Official OS of People's Republic of China · · Score: 1

    Double *cough*.

    www.turbolinux.com.cn

    (Slashdot: where everyone is an expert, but some people are more expert than others.)

  6. Yeah, great on IBM launches Linux Zone on DeveloperWorks · · Score: 1

    So when are we going to get the specs for the mwave DSP in the Thinkpads?

  7. Three more years of this nonsense on GD Graphics Library withdrawn · · Score: 2
    The Welch LZW patent expires in 2002.

    Until then, there's always civil disobedience.

  8. The issue in a nutshell on Interview with Good Software Group Founder · · Score: 1

    "I personally believe that the GPL is a Good
    Thing, since it forces what I consider to be
    moral behavior on anyone who wants to use code
    that I've written."

    And therein lies the difference between supporters
    of Free Software licences and supporters of free
    software licences: some people think it's
    appropriate to try to force their morals on
    others, and some don't.

    Why not create the Christian Software License?
    All Christians get unlimited "use, modify, and
    redistribute" rights (I'm sure many people must be
    deeply disturbed by the possibility that their
    software might be used for un-Christian purposes).
    And, if you don't like it, well, you can just
    write your own software and put it under your own
    license (like, maybe the Pagan Software License).

  9. Biggest obstacle to Linux adoption in China on Revolutionary Chinese take on Linux · · Score: 2

    The biggest obstacle to Linux in China is the
    fact that, for many, if not most people, Microsoft
    software costs the same as Linux: nothing.

    Piracy is everywhere.

    On the bright side, though, the pirate CD vendors
    have started selling bootleg copies of the latest
    Red Hat releases, and Linux is gaining ground in
    the growing ISP industry.

  10. Not even close on Feature:GPL vs BSD · · Score: 2

    "but they don't want to give people the right to
    make the code proprietary."

    This is the problem BSD'ers have with the GPL: the overwrought drama over the possibility that someone, somewhere might hide some code.

    Most BSD'ers support free code, and they have full confidence in the relative merits of free code. What they don't have is the compulsion to coerce others into involuntary compliance with this view.

    If people take free code and turn it proprietary, then they automatically suffer all the increased costs and headaches associated with developing, debugging, and maintaining a closed source tree. That's their karma. BSD'ers are willing to let it go at that, and not make a religious crusade out of the issue.

    If a certain small niche gets served by a proprietary solution, that's fine too. But overall, the fact is that the cards are stacked against largescale exploitation of BSD code. People will figure that out eventually, and in the meantime, there's no point in alienating present and future allies in a fit of ideological intransigence.

  11. Re:Why would this make me give up Python? on REBOL the "Messaging Language" · · Score: 2

    >I find it suitably ironic that the de-formatting that happened to that example would cause it not
    >to run. I'll take a language that isn't whitespace-sensitive, thanks.

    There's always a wise guy. Here:

    for person in persons: \
    map(set, facts, person);\
    print text % globals()

    Happy now?

  12. Why would this make me give up Python? on REBOL the "Messaging Language" · · Score: 2

    # A simple database
    persons = (
    ("Moe Howard", "CEO", "Three Stooges Ltd.", "moe@threestooges.com"),
    ("Larry Fine", "Manager", "Dept. of Knuckleheads", "larry@kheads.gov"),
    ("Curly Howard", "Mascot", "Wise Guys Club", "curly@wiseguys.org")
    )

    # The fields of the database as words:
    facts = ("name", "title", "company", "email")

    # The format used to print the info:
    text = "%(name)s of %(company)s is at %(email)s"

    # Emulate Rebol "set" feature
    def set(attr, val): globals()[attr] = val

    # The loop that prints the database:
    for person in persons:
    map(set, facts, person)
    print text % globals()



    P.S. Hey, Rob, how about allowing (pre) or (code) tags, eh?

  13. What ever happened to Article 10? on Feature:On the Subject of RMS · · Score: 1

    Richard Stallman then:

    "10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission."

    Richard Stallman now:

    "The most serious practical problem in the NPL is that it is incompatible with the GNU GPL. It is impossible to combine NPL-covered code and GNU GPL-covered code together in one program, not even by linking separate object files or libraries; no matter how this is done, it has to violate one license or the other."