Slashdot Mirror


User: kikito

kikito's activity in the archive.

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

Comments · 705

  1. Re:Yes, let's all focus on the iPhone apps... on US Says Plane Finder App Threatens Security · · Score: 1

    The arms race had no influence on the end of feudalism. Economy was the main force that ended it. Money is more efficient than, say, cows, as a payment method (it doesn't die on the way to the castle, and it doesn't need to be fed until consumption). Once money was 'invented', the ability to make money started a slow climb, until it was more important than blood. Cities started to suddently where more important than the castles around where they were built, since cities where the ones that produced money.

    The fact that they used powder, knifes or rocks had no influence. Guns, like everything else, can be bought with money.

  2. Re:Coming up next - mandatory blindfolds! on US Says Plane Finder App Threatens Security · · Score: 1

    Blindfolds and hoods can also be used as a weapon and thus are now FORBIDDEN.

  3. Re:Well, to be precise... on Software Theft a Problem For Actual Thieves, Too · · Score: 1

    whi?

  4. Well, to be precise... on Software Theft a Problem For Actual Thieves, Too · · Score: 2, Interesting

    The Zeus devs are not 'thieves' because they made Zeus.

    It's a different type of crime.

    It's like saying that a company that builds a popular and illegal anti-person mines has had its mine blueprints stolen.

    A more proper title would have been "DRM doesn't work, even for Cibercriminals".

  5. Re:Delicious on Bookmark Synchronizer Xmarks Hangs Up Their Hats · · Score: 1

    It has plugins for all major browsers. You don't have to go to any site.

  6. I use del.icio.us on Bookmark Synchronizer Xmarks Hangs Up Their Hats · · Score: 1

    And I also use it for other things, like sending links to friends.

  7. Re:What a shame on Microsoft Migrating Live Spaces Users To WordPress · · Score: 1

    My bet is that probably Wordpress is getting paid for doing this.

  8. Re:Microsoft on Microsoft Migrating Live Spaces Users To WordPress · · Score: 1

    On top of that, it's PHP-based, which is not exactly one of those shiny MS-controlled technologies.

  9. Re:Oh dear... on The Surprising Statistics Behind Flash and Apple · · Score: 3, Insightful

    HTML5 video playback is limited compared to what flash can do.

    Not only on the implementation; on the (yet to be implemented completely on any browser) standard. Youtube flash player allows you to go to a specific part of a video, even if you have not pre-downloaded it. HTML 5 (the standard) lacks such mechanism.

    Maybe in 5-7 years we'll have something worth it on the HTML5 field.

    The HTML5 vs Flash, at least in the video section, is to me a "existing technology that works" vs "possible technology that might work in the future. Stress on 'might'". For now, I'll stick with what works.

  10. Re:Response to rampant speculation on DX11 Coming To Linux (But Not XP) · · Score: 3, Informative

    I'd like to point out that comparing linux with Home Premium isn't fair either.

    Linux only comes in one version: Awesome.

    You should compare it with the Win7 Awesome version, whatever it's called.

  11. Re:Dupe on Google Publishes Censorship Map · · Score: 2, Funny

    Temperature's 50 degrees lower just like IQ is 50 points higher.

  12. Can I drop a db being accessed now? on PostgreSQL 9.0 Released · · Score: 0, Troll

    You know, like in MySQL?

    Thankz bye

  13. God on Super Principia Mathematica · · Score: 1

    God = Unnecessary hypothesis.

    If this book begins making it, I don't see the point on reading the rest of it.

  14. Re:IronRuby on Microsoft May Back Off of .NET Languages · · Score: 1

    Citation needed

  15. Re:Getting screwed in both directions on Microsoft May Back Off of .NET Languages · · Score: 1, Insightful

    The blame there would be on the developer(s), not on the language.

  16. Boring is good (most of the time) on Linux Foundation Makes Open Source Boring · · Score: 1

    I don't know if you have actually given a look at that "fun" code of the "golden age of free software".

    I have. I'm pretty sure that the programmer that did it had a great time and felt very smart when he wrote it.

    Undecipherable variable names. Functions with 200+ LOC and no comments. C macros gone grazy. I hope you get the idea.

    It sucked.

    I get it. Making maintainable, structured, easy to understand code is boring. Or not as fun as showing the word how mad your "regexp skillz" are. Well, it also sucks.

    I personally enjoy making code as easy to understand and "obvious" as possible. It is difficult. It makes you work more slowly. You don't get the instant gratification that you might get with this or that clever hack. But you get long-term satisfaction, when someone sends you an email saying "Hey, I needed to make a change in your code and it was so easy because it is well written. Thanks a lot"

  17. Dude... on MP Wants Official Email Address Kept Private · · Score: 0, Redundant

    Get another email adress. They are free.

  18. Re:Obama's Harriet Miers on Senate Confirms Elena Kagan's Appointment To SCOTUS · · Score: 1

    Yeah. Now the president takes decisions.

  19. I read on Senate Confirms Elena Kagan's Appointment To SCOTUS · · Score: 4, Funny

    SCROTUS.

    Sorry.

  20. Re:Take a walk, Ballmer on Firefox May Soon Overtake IE In Europe · · Score: 1

    I'm sorry but I don't have the Faith that your arguments need in order to be accepted.

    I'd be willing to study any piece of reliable, verifiable Evidence that you might have.

  21. Re:This is an appropriate use. on Officials Use Google Earth To Find Unlicensed Pools · · Score: 1

    No, finding illegal pools is. Just like touching people's butts is not their job, but finding illegal weapons on airports is.

  22. Re:Take a walk, Ballmer on Firefox May Soon Overtake IE In Europe · · Score: 1

    The fact that your company only has had .net offers only means what it says: that your company has had such offers. Deriving from there that ".Net is getting bigger every year" is not a valid assumption; I could give a counter example pretty easily: my company hasn't had a single .Net offering since it was started.

  23. Re:FORTRAN, COBOL etc. on How Can an Old-School Coder Regain His Chops? · · Score: 1

    I do like object oriented programming. I have even created my own lib so I can do object-oriented stuff on non-object oriented languages (Lua).

    That said, I will not touch C++ if I can avoid it. The linked article has just confirmed this decision.

    The thing that bugs me the most is exactly that "C++ is C" thing. It makes the language ugly and unnecessarily complex. I would have preferred library compatibility without source code compatibility (like a CLib object to which one could simply invoke functions on). This decision has deep consequences - such as conserving the insecure and ugly array model from C, as well as the horrible char* usage for strings (I know about std String and Vector - but the others are still used in C++).

    Then there are these quirks here and there. The multi-lined templated types error messages. The multiple inheritance model (I'd rather have single inheritance + mixins)

    When I'm doing Object-oriented stuff, I'm not so concerned about efficiency. I'm concerned about properly modelling abstractions. C++ is just not abstract enough for my taste, and that is partly because it inherits too many things from C.

    As it is now, I prefer using a scripting language such as Python or Ruby for Object Oriented stuff, and plain C for low-level things, since plain C is better supported than C++ for libs and the like.

  24. Re:Old person syndrome on How Can an Old-School Coder Regain His Chops? · · Score: 1

    I think he realizes that. He's asking "what language should I pick", not "how do I learn a language".

  25. Re:C-sharp on How Can an Old-School Coder Regain His Chops? · · Score: -1, Troll

    Your cries for attention are self-evident.