Slashdot Mirror


User: lomov

lomov's activity in the archive.

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

Comments · 10

  1. Re:not again... on Did Microsoft Invent The iPod? · · Score: 1

    You must be new here....

  2. Re:Yes, wrong to love Microsoft on Is It Wrong to Love Microsoft? · · Score: 1

    Mod parent up! This is '/. wisdom' oxymoron coming to love for once...

  3. But Watch Out... on Water Now More Awesome Than Previously Thought · · Score: 1

    ... for Commu^H^H^H^H^H Terrorists who will SAP and IMPURIFY all of our precious BODILY FLUIDS!!

  4. Re:I own my own weblog content. on Who Owns Weblog Content? · · Score: 1
    Well let's try:

    Your argument is interesting in light of recent firings by employers because employees were pregnant women - even if they were pregnant only at home.

    IANAL, but legal consequences of that will be, umm, mind-blowing...

  5. Re:What issue? on Safeway Club Card Leads to Bogus Arson Arrest · · Score: 1

    No, not at all. You miss the point completely.
    The keyword is revertible justice. Any penalty but death (or other physical injury) can be reverted with appropriate amount of money, apologies or whatever.
    While you are alive, you can always start afresh. When you are dead - that's it.

  6. Re:What issue? on Safeway Club Card Leads to Bogus Arson Arrest · · Score: 1

    This is why death penalty should be abolished.

  7. Re:Merging C# and SQL? on Microsoft Research's C-Omega · · Score: 1
    There are truly innovative features in C-omega (at least for "mainstream" languages, which it apperas to try to become).

    The first is treatment of concurrency based on join-calculus.

    The second is type system for XML. There is a lot of research in CS for strongly-typed XML processing (check XDuce for one).

    TFA actually does a good job of presenting most important concepts of those for people not quite familiar with undelying theory.

  8. Re:Merging C# and SQL? on Microsoft Research's C-Omega · · Score: 1

    My point was not that SQL is not needed. My point was that you need things besides SQL to write applications.

  9. Re:Merging C# and SQL? on Microsoft Research's C-Omega · · Score: 1

    People have been coding in embedded SQL or, to the contrary, various kinds of P-SQL all the time. What is wrong with that? Relational algebra, predicate calculus and what-not is all very well, but you have to actually write some code which, like, interacts with user, network, and some such. Last time I checked SQL cannot do that.

  10. Re:Silly article (Silly Post (Silly Reply)) on Are Extensible Programming Languages Coming? · · Score: 1
    I wouldn't jump to conclusions so fast. Why don't we consider a small example. In C++,
    extern X x();
    can be either a declaraction of a variable x of type X or a declaration of a funtion with no parameters and return type X. You do not know unless you know what X is (whether it has a parameterless constructor). And learning what X is requires quite some analysis - major PITA for any tool that tries to analyse C++ (compiler, IDE, dependecy analyzer - whatever).
    In imaginary XML syntax for C++ such ambiguites will go for good.