Re: New(er) Clojure cheatsheet hot off the presses

2012-03-25 Thread DHM
> > > Remind me again: why do you want to put much of the docstring in > > there, and not just a quick precis that's enough to jog someone's > > memory and/or let them know whether they ought to click through or > > should skip that one based on what they're trying to find? > > I like that what I

Re: New(er) Clojure cheatsheet hot off the presses

2012-03-25 Thread DHM
On Mar 24, 6:32 pm, Cedric Greevey wrote: > On Fri, Mar 23, 2012 at 4:43 PM, David Martin wrote: > > I agree that title attribute is the way to go. You shouldn't use the alt > > attribute for tooltips though, as this violates accessibility standards. Alt > > should either contain a literal descr

Re: [ANN] mcache 0.2.0 released

2012-02-29 Thread DHM
On Wednesday, February 29, 2012 6:03:32 AM UTC-8, Fogus wrote: > > > 3. Added a core.cache/CacheProtocol implementation > > This is great news. Thank you for taking the time to do this. I > would love to know how core.cache helped and hindered you. > I'd say integrating with CacheProtocol hel

[ANN] mcache 0.2.0 released

2012-02-29 Thread DHM
Last week I released mcache 0.1.0, a protocol-based clojure library for memcached. This latest change contains significant changes, summarized here: 1. Renamed the functions, and got rid of the "cache-" prefix 2. Removed increment and decrement functions from the protocol, as these seemed like

Re: mcache 0.1.0 released

2012-02-22 Thread DHM
On Feb 21, 5:58 am, Jim Crossley wrote: > DHM writes: > > I want to announce the release of mcache 0.1.0: > >https://github.com/davidhmartin/mcache > > Very nice. One thing you might consider is implementing > core.cache/CacheProtocol [1] in terms of mcache. I&#x

mcache 0.1.0 released

2012-02-20 Thread DHM
Hi, I want to announce the release of mcache 0.1.0: https://github.com/davidhmartin/mcache This provides protocol-based support for memcached and memcached-like clients, with an implementation using spymemcached. I coded this up in support of a web site I'm developing. I didn't find much in the