1
vote
What is your preferred pastime programming project?
I work on various website projects, usually backend stuff and some kinds of front-end widgets. I lose focus quite fast and nearly all of my stuff never goes out of development.
The projects …
1
vote
What’s your favorite implementation of producing the fibonacci sequence?
Python with memoization:
class memoize:
# class as decorator
def __init__(self, function):
self.function = function
self.memoized = {}
def __call__(self, *args):
…
24
votes
What are five things you hate about your favorite language?
I'll do PHP as I like it at times and python will be done way too much.
No namespace; everything is in a
kind of very big namespace which is
hell in bigger environments
…
7
votes
Nuggets of wisdom?
Can't remember where I heard it, must have been during some tech talk I've watched sometime before.
Regardless of how smart, creative, and innovative your organization is, th …
