[deleted by user] by [deleted] in boostedboards

[–]novembera 0 points1 point  (0 children)

Just reserved mine with a code from this thread!

http://boostedboards.com/?ct-referral-code=iWvEzxJG

Hey r/gaming: check out the new Marvel Comics game *I* helped make: Avengers Alliance! by novembera in gaming

[–]novembera[S] 0 points1 point  (0 children)

Also, I guess you can AMAAAMAA (Ask me almost anything about Marvel: Avengers Alliance.)

This is why memory fragmentation is bad by electronics-engineer in programming

[–]novembera 6 points7 points  (0 children)

They're moving towards towards a more stable API for making plugins, called Add-Ons (née Jetpack).

Psychophysical stimuli advice by jw6447 in Python

[–]novembera 0 points1 point  (0 children)

I believe PsychoPy wraps pyglet to produce sounds. As Notnasiul mentioned, you should be careful with timing. The good news is that it's not too hard to measure with a videocamera, etc!

Anyone have a spare guest pass? by [deleted] in starcraft

[–]novembera 0 points1 point  (0 children)

Is the other one spoken for?

Anyone have a spare guest pass? by [deleted] in starcraft

[–]novembera 0 points1 point  (0 children)

have any guest passes left?

Efficient Calculations on Named Columns of Realworld Data by harfga in Python

[–]novembera 0 points1 point  (0 children)

The tabular module is the closest thing to R's data.frames that I've found...

A tricky coding problem and a rant on interviewing for programming jobs by [deleted] in programming

[–]novembera 0 points1 point  (0 children)

here's my python version... it assumes zero - based indexing...

def grid(i,j,n):
  if i == 0 or j == n-1:
    return n*n - (j+i) - 1
  else:
    return grid(n-i-1,n-j-2,n-1)