Clojure wrapper for https://blockchain.info/api

2017-11-08 Thread eliassonaand via Clojure
blockchain.info provides an API for building bitcoin apps. This is a clojure wrapper for it. https://github.com/eliassona/bchain -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that

Bitcoind API for Clojure/Java (experimental).

2017-10-26 Thread eliassonaand via Clojure
I'm interested in Bitcoin and cryptocurrencies. So I installed bitcoind on my laptop and started playing with the CLI. I also tried some Java and Clojure libs that builds on top of the CLI. After a while I decided to write my own library for it. Specifically I wanted to see if it was pos

Re: Partial question

2016-02-25 Thread eliassonaand via Clojure
Hi, is this want you want? https://github.com/eliassona/apartial Regards Anders Den tisdag 23 februari 2016 kl. 19:14:33 UTC+1 skrev Fernando Abrao: > > Hello all, > > I´m trying to do something like: > > (defn log [type message & {:keys [id idVe] :or {id "LOCAL" idVe "END"}}] > (println (s

Lisp interpreter

2015-02-08 Thread eliassonaand via Clojure
I've implemented a Lisp interpreter as a way of understanding the eval/apply procedure in Lisp. Here is the link to the code: https://github.com/eliassona/mylisp. For me it was a great learning exercise into the foundation of computer science according to SICP. It was very interesting to see h