Slashdot Mirror


User: thesnide

thesnide's activity in the archive.

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

Comments · 20

  1. Re:Make it a statistic and they'll care on Are Ad Servers Bogging Down the Web? · · Score: 4, Informative

    Second biggest offender is usually Google Analytics.

    That's why it's usually interesting to host the JavaScript file, that seldom changes on your webserver, and only have the img that conveys the data retrieved from the foreign host.

    JavaScript loading is usually blocking the rendering whereas img loading usually not.

  2. Re:Reducing delays? on Intelsat Launches Hardware For Internet Routing From Space · · Score: 1

    Actually if they are able to route it directly between satellites instead of having to do sat-earth round trips, it reduces the delay from 4, 6 or 8 trips to just 2 plus a little between sats.

  3. Re:Should have named it GL... on Google Under Fire For Calling Their Language "Go" · · Score: 1

    Or, Google Programming Language. All of your code should be GPL.

    Very nice one... I didn't even see it coming

  4. Should have named it GL... on Google Under Fire For Calling Their Language "Go" · · Score: 1

    ... As Google Language. And then opensource their development stack, codenamed openGL.

  5. Re:640 on Space Shuttle To Be Replaced By SpaceX For ISS Resupply · · Score: 1

    640 kilos actually... but you can always attach some external "weight boosters".
    And then wait the 64-nozzle era of space flight...

  6. Re:Affero GPL on GPLv2 Libraries — Is There a Point? · · Score: 1

    Actually It seems even permitted by the GPL to a certain extend. In the GPL Certification Program [http://www.fsf.org/licensing/compliancelab.html] this case is explicitely mentionned (5.a), and you only need to explicit the calling workflow (the protocol IMHO) between the non-GPL and GPL parts.

  7. Re:Affero GPL on GPLv2 Libraries — Is There a Point? · · Score: 1

    Hmmm... I think you're right, it is quite explicit "remotely through a computer network".

    Nothing is mentioned about IPC on the same machine.

    So I don't know if it can apply.

  8. Affero GPL on GPLv2 Libraries — Is There a Point? · · Score: 1

    Isn't that why the Affero GPL (http://en.wikipedia.org/wiki/Affero_General_Public_License) was created ?

  9. Re:They're not even keeping the money... on Pirate Bay Announces Sale to Swedish Company For $7.8 Million · · Score: 1

    An interesting fact is that terrorists are also like that : they adapt faster to security measures than governments. As Bruce Schneier said[1], it's all about defending against what the terrorists did last time. You shall never underestimate creativity for evasive maneuvers.

    [1] http://www.schneier.com/blog/archives/2009/06/fixing_airport.html

  10. Re:If it can't be fixed with duct-tape on Discovery Launch a No-Go, Again · · Score: 1

    And if it breaks, we will finally see this black line on the equator that is on globes...

  11. Re:Windows does a lot of writes when booting on Why Do Computers Take So Long to Boot Up? · · Score: 2, Informative

    Usually a read triggers a write since there is the Last Acces Time attribute to update. Under windows it is driven by the NtfsDisableLastAccessUpdate registry parameter, under UNIX it's the noatime mount parameter.

    That's perhaps one cause of your filesystem usage increase.

  12. Re:Unfortunately I'm a Java developer... on Celebrate the XML Decade · · Score: 1
    The only real advantage XML has is that it is (sort of) human readable


    I'm all in favor of YAML, that's really human readable,
  13. Re:Hype on Intel Takes Quad Core To the Desktop · · Score: 1

    Just like Gillette's CEO : Fuck Everything, We're Doing Five Blades

  14. Re:Link lists? on Advanced Data Structures? · · Score: 1
    It's actually quite useful to have a proper exception handling scenario, in order to release things nicely. In a language like C you don't have a destructors, so you have to implement yourself.

    Using GOTO can be useful to "linearise" the execution flow such as in :

    int foo()
    {
    // Acquire resource A
        A* a = allocate_a();
        if (a == NULL) {
            goto ERROR_A;
        }
     
    // Acquire resource B
        B* b = allocate_b();
        if (b == NULL) {
            goto ERROR_B;
        }
     
    // Do something
        int retval = first_processing(a, b);
        if (retval == -1) {
            goto ERROR_PROCESSING;
        }
    ...
     
    // Everything runned smoothly
        return retval;
     
    // Error handling
    ERROR_PROCESS:
      release_b(b);
    ERROR_B:
      release_a(a);
    ERROR_A:
      return -1;
    }
  15. The French attitude explained on French Government Recommends Standardizing on ODF · · Score: 1
    And the US has a confused view of the French
    I couldn't agree more. It's a whole different society with different manners and cultures than the US. The one thing is that it's called a western country, so since foreigners expect less differences than in Japan or in India they are usually in a unexpected culture shock. A nice book to read to understand more France and french people is Sixty Million Frenchmen Can't Be Wrong
  16. The meaning of life on Teleportation Gets a Boost · · Score: 1

    But a question remains: If we manage somehow to teleport all the atoms/quarks/whatever of something, will it still be alive ?

  17. Nowadays, it's not so important anymore on Windows Servers Beat Linux Servers · · Score: 1

    Any IT departement really interested in HA has redundant servers anyway.

    IMHO having downtime on a server is not so much important as before. Just as it isn't so important to hunt every little bit of optimisation nowadays.

    Specially for you --- all Java/C# lovers :-)

  18. Is it *really* a good idea ? on Tips for Motivating IT Workers? · · Score: 1
  19. Whoever wins we loose... on Debian Project Rejects Sender-ID · · Score: 1

    Anyway, as
    another thread on slashdot points it, spammers may be the first to adopt it.

  20. Re:Why block MSN? on Blocking MSN Messenger? · · Score: 3, Informative

    Actually, in some 'sensitive' companies (for example: stock exchange brokers) all communications involving a third party are officially tapped.
    It's done in order to prevent some obvious abuses.