Re: How to tell buffy which file to read?

2015-10-22 Thread Alex P
Hi Amith, Alex from clojurewerkz/buffy here. There are actually 2 options: first one is to slice the buffer and then feed it to buffy, which means that you have to implement streaming yourself. The other option is something I really wanted to implement for quite some time already is

Re: practice for learning clojure

2014-07-11 Thread Alex P
You can check out Defworkshop repository: https://github.com/defworkshop/defworkshop and start by simply implementing everything from simple functions further down the line. We also have complimentary slides here: https://speakerdeck.com/defworkshop Hope that helps On Tuesday, May 27, 2014

Re: [ANN] Grimoire: up to date Clojure web docs

2014-07-09 Thread Alex P
There's also a version of what you wrote (at least something very similar), where one can specify libraries he wants docs for and have it all running either locally or on some webserver: https://github.com/ifesdjeen/gizmo-cloc Adds code snippets with highlights and lucene-backed search. On

[ANN] Buffy, The Byte Buffer Slayer 1.0.0-beta1

2013-12-17 Thread Alex P
Buffy [1][2] is a Clojure library to work with Binary Data, write complete binary protocol implementations in clojure, store your complex data structures in an off-heap chache, read binary files and do everything you would usually do `ByteBuffer`. After the initial project announcement, we've

[ANN] Munich Lambda Meetups

2013-12-12 Thread Alex P
Hi everyone, We (Munich Lambda[1]) are organising Meetups, dedicated to Functional Programming, and Clojure specifically. Even though we already know many people who're doing Clojure here in Munich and area, we believe that there're more enthusiasts that we haven't yet met, who may be

Re: [ANN] Buffy The ByteBuffer Slayer, Clojure library to working with binary data

2013-12-02 Thread Alex P
from gloss [1]. Any advantages? Disadvantages? Thanks Thomas [1] https://github.com/ztellman/glosshttps://www.google.com/url?q=https%3A%2F%2Fgithub.com%2Fztellman%2Fglosssa=Dsntz=1usg=AFQjCNEEBWzFouSZ3s8uPpizBue7fuhzQA On Friday, November 29, 2013 10:15:45 PM UTC, Alex P wrote: Buffy [1

[ANN] Buffy The ByteBuffer Slayer, Clojure library to working with binary data

2013-11-29 Thread Alex P
is a ClojureWerkz project, same as Monger, Elastisch, Cassaforte, Neocons, Meltdown and many others. [1] https://github.com/clojurewerkz/buffy [2] http://clojurewerkz.org -- Alex P http://clojurewerkz.org http://twitter.com/ifesdjeen -- -- You received this message because you

Re: Selecting subsets of maps

2013-08-30 Thread Alex P
@ Baishampayan @ Christophe Accidentally crossed over this post, turned out I've had exactly same need (about a year after you though), and decided to write a little library, Balagan: https://github.com/clojurewerkz/balagan Basically, you can run predicate-based queries on your data and apply

Re: Any suggestions for configuration solution in Clojure or Java world?

2013-07-09 Thread Alex P
I'm using rather trivial solution: store config in Clojure file (as a hash), here's what my config bootstrap looks like: https://github.com/ifesdjeen/utils/blob/master/src/com/ifesdjeen/utils/config.clj lg,  Alex http//twitter.com/ifesdjeen http://clojurewerkz.org/ On June 18, 2013 at 4:51:22

Re: Congomongo or monger ???

2012-04-05 Thread Alex P
I am definitely biased, but I would still suggest using Monger. Monger has a clear API where things are well separated across namespaces. Docs are still work in progress but there are plenty examples and a big test suite that covers many use cases. We used it in two projects, and it has proven