Slashdot Mirror


User: yogikoudou

yogikoudou's activity in the archive.

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

Comments · 77

  1. Re:A similar project on Evolution of Mona Lisa Via Genetic Programming · · Score: 1

    May I ask, what image comparison algorithm did you use in your fitness function? Was it something like |pix1 - pix0| for all the pixels? That sounds like a lot of comparisons at each step (159,300). I guess you could pick n points (in a grid or at random) and compare these, while incrementing the value of n as time goes...

    Also, how long did it take to run 2.5M generations?

    Thanks.

  2. Re:Just using VIM on (Useful) Stupid Vim Tricks? · · Score: 1

    I've been in this business for too damn long.

    Damn! You have a 5-digit prime ID and you did the "get off my lawn with your fancy emacs" joke. I bow before you.

  3. Re:Goes to show ... on Multiple Security Holes In Ruby 1.8, 1.9 · · Score: 2

    I believe this is the PHP bug you mention: http://use.perl.org/~Aristotle/journal/33448 .

  4. The MS teams on Mono Coders Hack Linux Silverlight in 21 Days · · Score: 1

    must be pissed. How do they look when a bunch of coders implement in three weeks what they worked on for months? Surely the quality is not the same and the Mono guys still have a lot to do but damn, this is fast!

  5. A spam tactic? on Fill Out CAPTCHAs, Digitize Books At The Same Time · · Score: 1
    Spammers are already using CAPTCHA techniques to automate account creations on protected websites:
    1. Have a person subscribe to a porn website by typing in a CAPTCHA image that comes from a legitimate website.
    2. The user provides the correct word while subscribing
    3. Not even a "???" step
    4. Profit! The protected website is spammed.
    I'm wondering whether this system will be used for legitimate OCR purposes or for more spam...
  6. France-élections is not the manufacturer on French Voting Machines a "Catastrophe" · · Score: 3, Informative

    Nedap is. They had to change their machines in the Netherlands after the group Wij vertrouwen stemcomputers niet demonstrated flaws, especially with the LCD screen - it was possible to detect the selected vote remotely using a Tempest-like effect, if I understand correctly).

    Anyways, I voted on such a machine, and saw how old people had trouble using it. It is also the first time I had to wait to vote (15 minutes instead of less than one), because their was only one machine and many people had to be told how to use it.

    Two of the main parties called for their removal; I hope this is going to happen.

  7. Nothing for you to see here. Please move along. on Iran Caps Net Access to Keep West Out · · Score: 0, Offtopic

    How appropriate.

  8. Re:OH NOES!! on 10-Day Gentoo Installation Agony · · Score: 2, Informative

    The Gentoo Manual is very helpful, and so is the Gentoo Wiki.

    And being a Gentoo user and fanboy, I find this kind of poster funny :)

  9. Re:Ad vs Subscription, but... on The Ad-Supported Operating System · · Score: 1

    I guess you have, because Microsoft is already putting ads in its next version of Outlook Express, Windows Live Mail
    Microsoft refining Windows Live and shifting some of their focus to advertising, indeed.

  10. From a developper point of vue on Opera Seeks Developer Input For Opera 10 · · Score: 5, Insightful

    - More CSS 3 - A Javascript Debugger (including XMLHttpRequest debugging, as with the Firebug extension) - XForms - XUL ? And from a user point of vue: - Extensions

  11. Re:Why not use OCaml or Haskell? on Java Static Analysis And Custom Bug Detectors · · Score: 1
    I don't think you can say that for the most part Java has static typing.
    For example:
    public class A {
            public A(){}
            public void f() {
                    System.out.println("A::f");
            }
    }
     
    public class B extends A {
            public B(){}
            public void f() {
                    System.out.println("B::f");
            }
    }
     
    public class Test {
            public static void main(String[] args) {
                    A myA = new A();
                    B myB = new B();
                    myA.f();
                    myB.f();
                    myA = (A)myB;
                    myA.f();
            }
    }
    This gives:
    $ java Test
    A::f
    B::f
    B::f
    With static typing, that's in C++ for example when you don't use virtual, you don't get B::f() when the last myA.f() is called. That's because Java resolves the type of myA dynamically, and not statically.

    C++ static example:
    #include <iostream>
    using std::cout;
    using std::endl;
     
    class A {
    public: void f(){
                    cout << "A::f()" << endl;
            }
    };
     
    class B : public A {
    public: void f(){
                    cout << "B::f()" << endl;
            }
    };
     
    int main(int argc, char *argv[])
    {
            A *myA = new A();
            B *myB = new B();
            myA->f();
            myB->f();
     
            myA = (A*)myB;
            myA->f();
     
            return 0;
    }
    Now, this gives:
    $ ./test-c++
    A::f()
    B::f()
    A::f()
    The second A::f() means that the type of myA is resolved statically.

    If you make f() virtual, it is resolved dynamically, as in Java for the caller object (not for the parameters).
    This will give you a B::f() on the last line, try it.

    Please explain what you meant or stop posting BS when I'm just out of a course entitled "Comparing C++ and Java object models".
  12. Re:Why do you need an add-in? on Creative Commons Add-In for Office Released · · Score: 1

    > It's up to the browser/search engine/application as to what is done with it.

    There is a Firefox extension that displays the 3 symbols (By, NC, SA) in your status bar as they are found in an RDF chunk in the page you're visiting.

  13. Re:Public Download? on Firefox 2 Alpha 2 Reviewed · · Score: 3, Informative

    Yes, get it here.

  14. HTIALOA on The First Quad SLI Benchmarks · · Score: 5, Funny

    Hell That Is A Lot Of Acronyms

  15. Re:What happened to all last years projects? on Summer of Code 2006 is On · · Score: 5, Informative

    Miguel de Icaza, founder of the Mono project, made a blog post yesterday about the state of the SoC projects for Mono : http://tirania.org/blog/archive/2006/Apr-13.html
    11 projects out of 16 were continued, 6 students still being involved in Mono today.

    The Mozilla project had far less chance : None of the 10 projects are alive as of today : http://weblogs.mozillazine.org/gerv/archives/2006/ 03/summer_of_code_six_months_on.html

    I guess they'll be more carefull about the motivations of the people the choose this year...

  16. Re:Windows WinPC on Military Investigates Sale of Sensitive Data · · Score: 5, Insightful

    I was going to say the same. How is it possible that Fox News reporters could even open the data files ?
    One could expect that everything is encrypted, every single file being a part of a globla security policy, etc.
    This is the army ! Big companies protect their sensible data by ensuring each sensible file is properly encrypted, defining trust circles, and strict key management policies. How were the files stored ? .DOC or .PDF files on USB keys ? I wonder how this is even possible.

  17. Not the best in every country on Software Engineers Ranked Best Job in America · · Score: 2, Interesting

    This story said that IT managers have the U.K's third-worst job -- ranking just below phone sex operator (No. 1) and ferry cabin cleaner (No. 2).

  18. A monkey story with a researcher named Miguel on MONKEYS USE ROBOTS TO FLING POO!!! GROSS!!! :) :) · · Score: 1

    Yet Another Mono Article ?

  19. Damn, pr0n in the title... on Pr0n's Effect On Society · · Score: 1, Redundant

    and I get a "Move along, nothing to see here".

  20. Re:Playing Net Hack in the Cockpit.... on FAA Grants RSC Status to Linux-Friendly RTOS · · Score: 1

    Reminds me of Peter Griffin as a flight captain:

    - Heh, where are we right now?
    - The control room?
    - Noooo.
    - The flight deck?
    - Noooo...
    - The cockpit?
    - HAHAH YES !

  21. Re:Oh I get it on French MPs Consider P2P Downloads Again · · Score: 2, Informative

    You mean 20 euros.

  22. Re:I'm getting Vista Home Basic on Microsoft Confirms 6 Versions of Vista · · Score: 1

    You got it wrong. This version is programmed in Basic.

  23. Re:Genisis? on NASA Detects Nearby Mystery Explosion · · Score: 1

    Nooooooooooooooooooooooooooooo !!!!!!, you're not.

  24. Song titles appear when you click on the links on 1 Billion iTunes Contest · · Score: 0, Troll

    And most of them are crap.

  25. Re:We're privileged on King Tut Killed by a Knee Infection? · · Score: 2, Informative

    Indeed we are.
    More information about this:
    I saw a documentary a few weeks ago on the death of Tutankhamun, and they were coming to this conclusion as well. The first hypothesis were that he had been killed, as a piece of bone was missing at the back of his skull; blood was also present around this hole. It turned out that it might have been made during embalming.
    They were also speculating on the many fractures the mummy presented. They were annoyed by the really bad general state of the body, mainly because the first people to discover it cut it into pieces to move it easily (it was stuck by dried body and embalming fluids in the golden coffin). This didn't help them in thei search for lethal wounds, until they found this piece of bone near the knee.
    The king broke his leg near the knee, and died about a week later (they know it by looking at the amount of cartilage that started to grow on the broken bone).
    Their conclusion was that this wound wouldn't have been lethal in our days, thanks to antibiotics.
    It was a really interesting documentary, and quite a fascinating search (determining the cause of death 3300 years after it happened).