Slashdot Mirror


User: jfbilodeau

jfbilodeau's activity in the archive.

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

Comments · 254

  1. What about RadStudio? on Has the Native Vs. HTML5 Mobile Debate Changed? · · Score: 1

    Early versions of Firemonkey sucked, but it's worths taking a peek. Native performance FTW.

    http://www.embarcadero.com/products/rad-studio

    J-F

  2. Re:Does Javascript still have garbage collection? on Has the Native Vs. HTML5 Mobile Debate Changed? · · Score: 0

    So does Dalvik, .NET and Swift. What's your point?

  3. Re:How vaccines cause autism on Study Confirms No Link Between MMR Vaccine and Autism · · Score: 0

    Wish I could mod this up.

  4. Re:GAO = U.S. Government Accountability Office on GAO Denied Access To Webb Telescope Workers By Northrop Grumman · · Score: 1

    Thank you AC for remembering there are non-Americans on Slashdot.

  5. Re:Check their work or check the summary? on No, It's Not Always Quicker To Do Things In Memory · · Score: 1

    OMG C is SOOOooOO slow compared to my l33t Java code! In the spirit of the fine paper related to this article, here's a 100% fair, unbiased comparison of both languages.
    [code lang="c"]
    #include <string.h>
    #include <stdlib.h>
    #include <stdio.h>
    #include <time.h>

    int main(int argc, char** argv) {
        const char* appendString = "1";

        char* concatString = (char*)malloc(1);
        concatString[0] = 0;

        int numIter = 100000;

        clock_t startTime, endTime;

        startTime = clock();

        for (int i = 0; i < numIter; i++) {
            char* tempString = (char*)malloc(strlen(concatString) + strlen(appendString) + 1);
            strcpy(tempString, concatString);
            strcat(tempString, appendString);
            free(concatString);
            concatString = tempString;
        }

        endTime = clock();

        double totalTime = (double)(endTime - startTime) / CLOCKS_PER_SEC;
        printf("Operation took %f seconds", totalTime);
        return EXIT_SUCCESS;
    }
    [/code]

    [code lang="java"]
    public class Crap {
        public static void main(String[] args) {
            String appendString = "1";
            String concatString = "";

            int numIter = 100000;

            long startTime, endTime;

            startTime = System.currentTimeMillis();

            StringBuilder builder = new StringBuilder();

            for (int i = 0; i < numIter; i++) {
                builder.append(appendString);
            }

            concatString = builder.toString();
            endTime = System.currentTimeMillis();
            double totalTime = (double)(endTime - startTime) / 1000;

            System.out.printf("Operation took %f seconds\n", totalTime);

        }
    }
    [/code]

    [code lang="term"]
    $ cc -O3 crap.c -o crap
    $ ./crap
    Operation took 0.749926 seconds
    $ javac Crap.java
    $ java Crap
    Operation took 0,009000 seconds
    [/code]

    Look how FATSTER JAVA is compared to C!!!!1!! You should be ashamed of using such a sloow programming language like C!

  6. What are they looking for.... on Finland To Fly "Open Skies" Surveillance Flight Over Russia · · Score: 1

    Sorry for being blind, but TFA doesn't say what they are 'observing'...

  7. I feel dumb... on Gigaom Closes Shop · · Score: 1

    I've never heard of the site...and I don't feel like RTFAing. What the heck was Gigaom and why should I care?

  8. Re:FREE free or "free with strings attached"? on Source 2 Will Also Be Free · · Score: 1

    That's because Steam is not available on mobile platforms.

  9. Re:Microsoft and mobile space .. on Microsoft Convinced That Windows 10 Will Be Its Smartphone Breakthrough · · Score: 1

    They already do that with Android...

    MS makes more money on Android than WM.

  10. Re:Like everything else M$... on What Would Minecraft 2 Look Like Under Microsoft? · · Score: 1

    Minecraft isn't all that good of a game

    You seem to be confusing "I don't like that game" with "it's not a good game". I suspect that more copies of Minecraft were sold than Neverhood, Age of Empires series , Starlancer/Freelancer series, Midtown Madness series, Mechwarrior 4 and Flight Simulator combined.

  11. Re:Like everything else M$... on What Would Minecraft 2 Look Like Under Microsoft? · · Score: 1

    Citation please? Java has been multithreaded (and thus multicore) sinces 1.0.

  12. Re:Like everything else M$... on What Would Minecraft 2 Look Like Under Microsoft? · · Score: 1

    Your post is so full of crap that I don't even know where to start...

    Have you every written a single line of code?

  13. Re:where? on The State of Linux Gaming In the SteamOS Era · · Score: 1

    Civ V, X-COM, Borderland, Left 4 Dead, Half Life, DOTA 2, CS-GO, EU are just _some_ of my favourite that run on SteamOS. Did you want the full list? It's over 300 games...

  14. Re:Isn't constant GUI changing bad design? on Users Decry New Icon Look In Windows 10 · · Score: 2

    Have you noticed that Microsoft loves to tell developers how their Windows application need to look, but break their own rules with Office, VS and other products of theirs. Constant change and inconsistency is the modus operandi of the day.

  15. Re:What about the title bar? on Users Decry New Icon Look In Windows 10 · · Score: 1

    Addendum to my previous gripe: Looks like Microsoft wants to transform the title bar into another toolbar. Let's put buttons everywhere! Who needs consistency?

  16. What about the title bar? on Users Decry New Icon Look In Windows 10 · · Score: 1

    For me, the ugliest element is the title bar. The dark blue and black elements are very difficult to see (no contrast). Furthermore, the title bar buttons look like they are mis-aligned.

  17. Did you check up... on 18 Months On, Grand Theft Auto V's Mount Chiliad Mystery Remains Unsolved · · Score: 3, Funny

    You should look up, up, down, down, left, right, left and right or somewhere around there? That where I use to find my easter eggs.

  18. Re:Computer game wastes time. News at 11. on 18 Months On, Grand Theft Auto V's Mount Chiliad Mystery Remains Unsolved · · Score: 4, Insightful

    Ya, just like reading Slashdot.

    Or even worst, replying to comments!!!

  19. "There were a lot of rumored features of the Xbox" on Will Every Xbox Be a Dev Kit? · · Score: 2

    "There were a lot of rumored features of the Xbox One"

    They were not rumors, but facts. Microsoft backpedaled on most of them. Short memory span or shill?

  20. Re:Microsoft always tries to buy market share. on Report: Samsung Replacing Its Apps With Microsoft's For Galaxy S6 · · Score: 1

    Actually, it was indeed called Phoenix, then Firebird and finally Firefox.

    Citation: http://en.wikipedia.org/wiki/H...

    (User of Firefox since the Phoenix days)

  21. Who is paying who? on Report: Samsung Replacing Its Apps With Microsoft's For Galaxy S6 · · Score: 1

    I'm wondering who is 'winning' from this deal?

  22. Re:VS2010 patch locks up OS? on Microsoft Fixes Critical Remotely Exploitable Windows Root-Level Design Bug · · Score: 3, Funny

    "killall --user myself --signal SIGKILL"

    Sounds like the type of code a VB developer would write on Linux. :P

  23. VS2010 patch locks up OS? on Microsoft Fixes Critical Remotely Exploitable Windows Root-Level Design Bug · · Score: 4, Insightful

    Why would a patch for an IDE lock up an OS?

    Is Microsoft able in any way to create products that are not intractably entrenched in their OS?

  24. Re:Your Article Is All Fluff, Reader Finds on Your Java Code Is Mostly Fluff, New Research Finds · · Score: 1

    Are you sure you're not thinking of Pascal?

  25. Re:Just one step closer to becoming Windows on Is Modern Linux Becoming Too Complex? · · Score: 5, Funny

    I LOVE the Windows' event log. Messages are short and precise. Messages such as: The operation failed: HRESULT 0xFF0SUX2BU