1. Faculty programming contest?

    Does anyone know if there are any faculty programming contests out there?

    It'd be fun, and I can't imagine that the competition would be as tough as the student programming contests probably are ;).

    --titus


    Legacy Comments

    Posted by jt on 2007-06-22 at 19:56.

    Um... faculty members... programming? You lost …
    read more

    There are comments.

  2. Seen on the agile-testing list

    Recently seen on a list (with a nasty archival system that I don't want to link to):

    "Don't write a test plan. Instead, test."
    
                 -- Bret Pettichord
    

    Need I say more?

    Probably.

    One of the most important tenets of agility (<-- little 'a' ;), in my opinion, is to not overthink. Unless you're …

    read more

    There are comments.

  3. Array permutation in Python

    Just saw this, in-place permutation (of a Java array, in this case).

    In Python, if you ignore the battery that's included (random.shuffle) you have this:

    import random
    l = range(0, 20) # array to permute
    
    for j in range(1, len(l)):
       k = random.randint(0, j)
       l[j], l …
    read more

    There are comments.

« Page 28 / 38 »

social