Adam Haney
Adam Haney
I recently needed to send a user a reset email programmatically without going through the form request/response cycle. I ended up hacking together a function that generates a token/url but...
I have a use case where I'm joining several models into a unified View, and I'd like for the view to include all of the fields from all of the...
Pure functions are functions that always have the same result for a given input. This implicitly means that all functions that don't make system calls are pure (as system calls...
Python is dynamically typed. Which is great, but can lead to some rather frustrating bugs. Functional languages like Haskell make their type system an aid to a developer (instead of...
Since lispy is aimed at mainly providing a functional environment it would be very interesting to me if return types could be lazy. Currently I can think of a very...
Currently we're not testing against jython, but being able to run in jython would be really cool because the jython interpreter can run much faster in some situations and would...
Currently python is plagued by the GIL, wouldn't it be nice if we broadcast s-expressions to eager mapping interpreters so that they could be evaluated outside the GIL? Proposed approach:...
For memoization/debuging etc it would be interesting to know the ammount of time spent in given functions (cpu time/wall clock time/time spent in IO wait) etc. This could be used...
It would be cool if function results were stored in a cache so that recursive computations could be implemented without recomputing values. Ideally IMHO this a cache object should be...
Currently (as of 6/28/13) the scoping class is being imported by the norvig dialect directly (which makes sense for now, norvig scheme uses norvig scope) but in the future it...