Posted on March 19th, 2010 by Yousef Ourabi
Jeremy Zawodny has forked Redis on GitHub and pushed an interesting patch that adds support for the “include” directive presumably to make splitting up large configuration files simpler.
Check the redis fork here: Redis include directive fork
Filed under: Programming | View Comments
Posted on March 17th, 2010 by Yousef Ourabi
So I watched a slideshow where an author (name intentionally omitted) had a snippet that iterated over a list. That’s all well and good, but one thing that bugged me was that it checked for the length of the array first, and then iterated.
list_len = len(mylist)
if list_len > 0:
for item in list_len:
…
This just feels wrong [...]
Filed under: Programming | View Comments
Posted on March 10th, 2010 by Yousef Ourabi
I read this article on Cloud Hosting today and some things I read really bothered me. I haven’t actually browsed technorati in a long time (maybe 2006?) and things seem to have changed dramatically. Technorati is now hosting content (blog postings). Maybe I was aware of this at point but forgot about it… but I [...]
Filed under: Cloud Computing, Uncategorized | View Comments