Slashdot Mirror


User: Cyberax

Cyberax's activity in the archive.

Stories
0
Comments
5,567
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 5,567

  1. Re:Anti Virus firms will kick his butt on Accused Zotob Worm Author Says Money Was Motive · · Score: 1

    Oh yes, sometimes it's so funny to see a Russian word in a semi-incorrect form somewhere in an English text.

    For example, plural from "skazka" (fairy tale) is "skazki". But a sentence like "he told us five skazki" sounds very strange, because word "skazki" should be in genetive case ("skazok").

    The same also applies to Greek and Latin, since these languages also have grammar cases.

  2. Re:Nuclear batteries on Intel Reveals Next-Gen CPUs · · Score: 1

    Yes, usually it's true. However, there are pure beta-emitters: tritium, calcium isotopes and some others.

    Energy of beta-decay is not not high enough to produce gamma-rays, but some X-ray radiation may be produced.

  3. Re:My ones on 10 Computer Mishaps · · Score: 2, Interesting

    "ifdown eth0" while working through SSH is my best one.

  4. Re:Other than on Original Einstein Manuscript Discovered · · Score: 1

    Well, 9/11 terrorists were associated with Afghanistan's government (Osama bin Laden and other talibs) and certainly had a chain of command. So I still can't see why destruction of WTC is not a valid military action.

    However, it all becomes clear if we just assume that deliberately killing civilians (like in Hiroshima, Gulf War economic bombings and 9/11) is NOT a valid military act.

  5. Re:Other than on Original Einstein Manuscript Discovered · · Score: 1

    As far as I remember, Osama bin Laden proclaimed Jihad long before 9/11. So technically they were at the state of war with USA, and they even had the courtesy to warn you about it.

    For instance, your press persistantly writes about Chechen "rebels" and "combatants" (almost never calling them "terrorists"), even during http://en.wikipedia.org/wiki/Moscow_theater_hostag e_crisis , http://en.wikipedia.org/wiki/Beslan_school_hostage _crisis and http://en.wikipedia.org/wiki/Budyonnovsk_hospital_ hostage_crisis

    So why do you call 9/11 a _terrorist_ attack?

  6. Re:Other than on Original Einstein Manuscript Discovered · · Score: 1

    But was a single plant _worker_ executed for this crime?

  7. Re:Other than on Original Einstein Manuscript Discovered · · Score: 2, Insightful

    Yes, and people in WTC were working towards strengthening USA economic, so they were a valid military target. Right?

    After all, you bombed oil plants in Iraq during the Gulf War. How WTC is different?

  8. Re:I'm leaning towards the Ruskies on this one... on Climatologists Wager on Global Warming · · Score: 1

    Well, how many people live in Sachara desert or on Antarctida continent?

    And for less extremal conditions: how many people live in northern Siberia or in Alaska?

  9. Re:Any name suggestions? on Mambo CMS Dev Team Splits · · Score: 1

    Well, "mamushka" is an affectionate diminutive from "mother" in Russian.

    Sounds like a good name.

  10. Re:Where meat is everywhere, it is nowhere? on Space Meat Coming to your Kitchen · · Score: 1

    Soay itself if completely tasteless, so what you taste is synthetised aromatizers.

  11. Re:Society of people scared of acne... on Space Meat Coming to your Kitchen · · Score: 1

    Bullshit (literally). Meat may be easily contaminated by contents of bowels, and there are pretty active and resistant bacteria in bowels.

    Besides, there's a lot of bacteria even inside the uncontaminated meat, but hydrochloric acid in your stomach usually protects you from them.

    And what about some tapeworms (http://en.wikipedia.org/wiki/Taenia_solium) that leave eggs in muscle tissue?

  12. Re:TF Text from TFA on Siberian Permafrost Melting · · Score: 3, Informative

    Methane moleculas are excited by UV-radiation, and excited molecula of methane can react with two O2 moleculas producing CO2 and H20.

  13. Re:Importance of rememberance on 60 Years Since Hiroshima · · Score: 1

    WTC buildings were the "economic targets" (remember Gulf War?), so their destruction was a legetimate war act. 3000 dead people are just a small collateral damage.

  14. Re:Just outlaw tourism on RFID Tags To Track Foreigners, Identify Dead · · Score: 2, Insightful

    Just a hint: that's what USSR did in the fifties...

  15. Re:Early Thoughts on Windows Vista & IE7 Beta 1 Released · · Score: 1

    Oh yes. MSDN subscriber download seems to be ./ed...

  16. Re:Effective? on Self-Cleaning Buildings to Fight Smog · · Score: 1

    Yet, catalysts are usualy poisoned (it's a chemical term, BTW) by impure reagents, that's why you can't use cheap petrol with catalytic converters in your car. And I don't think you'd find pure reagents in polluted air of a city.

    Besides, catalysts can also accelerate synthesis of OHTER pollutants. For example, some titanium compounds (titanium acetate, AFAIR) are catalysts in syntesis of dioxins (http://en.wikipedia.org/wiki/Dioxin).

  17. Re:Hubble Telescope on World's Largest Telescope Begins Production · · Score: 1

    Yes, investments in astronomy are usually well worth it. For example, CCD sensors (http://en.wikipedia.org/wiki/Charge-coupled_devic e) were first developed and perfected as a replacement for photographic plates used in telescopes.

  18. Re:You can tell they're replying to Slashdot. on Update on the Optimus Keyboard · · Score: 1

    Obviously, Lebedev was busy drinking vodka with his bear on Red Square (two blocks away from his studio) to write more FAQ entries :)

  19. Re:a 'few' rough edges on Stroustrup on the Future of C++ · · Score: 1

    I know, I write lots of Java code myself (server-side applications, mostly). Java and C# work fine for these types of software.

    But fortunately, not all software is server-side :) There's a great demand for small memory footprint fast client applications.

  20. Re:a 'few' rough edges on Stroustrup on the Future of C++ · · Score: 0

    C++ has indeed a steep learning curve, but C++ still has lots of advantages: low memory overhead (even modern Java/C# collectors have LOTS of overhead) and fast execution speed.

    It's still impossible to create a snappy application with complex GUI in Java/C# - even the leaders in UI-performance like Eclipse and IDEA are slower than mostly-native VisualStudio (I don't argue about their feature sets right now).

    In fact, most of Java/C# people underestimate power of C++. For example, it was long time taken for granted that _runtime_ reflection is neccessary to implement easy-to-use serialization library and RMI (Remote Method Invocation) facility.

    But look at this: http://boost.org/libs/serialization/doc/index.html and http://www.codeproject.com/threads/RMI_For_Cpp.asp ! It appears it's possible to implement serialization and RMI in pure C++ without lots of hassle and with full _typesafeness_!

    C# people boast that their language has built-in delegates support. And here is implementation of multicast delegates in C++: http://boost.org/doc/html/signals.html

    C++ has even some functional programming support: http://boost.org/doc/html/lambda.html and http://boost.org/libs/spirit/doc/phoenix.html

    Even such features as pure C++ BNF grammar or FSM automaton are possible.

    And so on...

    IMNSHO, C++ is now the most powerfull language in the world (only Lisp has a comparable number of supported features).

  21. Re:zero on Alex, The Brainy Parrot Who Knows About Zero · · Score: 3, Funny

    This parrot can be a good C programmer! Maybe even better than those chimps.

  22. Re:Won't take off in the US... on Fuel-cell Vehicles for Americans · · Score: 1

    Well, I live in Russia near the Ural mountains. So "bad weather" means -30C (-22F) with snowstorm :)

    BTW, I live 2 kilometers from my work so it's a nice 30 minute walk in summer. And not-so-nice walk in winter.

  23. Re:It's fairly interesting to me... on Fuel-cell Vehicles for Americans · · Score: 1

    No, but trains have to slow down before turning or when going downward, and moving train has A LOT of kinetic energy.

  24. Re:Won't take off in the US... on Fuel-cell Vehicles for Americans · · Score: 1

    > and probably be much more pleasant
    Only if the weather is good...

  25. Re:It's fairly interesting to me... on Fuel-cell Vehicles for Americans · · Score: 1

    Long-distance trailers should have been replaced by a network of railroads long ago, because trailers is one of the most inefficient methods fot long-distance transport.

    Diesel locomotives (except shunting ones) are mostly replaced by electric locomotives in Europe (and even in Russia). BTW, electric locomotives use regenerative brakes since day one.