Re: Announcement: clj-paper-print Clojure library for easy printing on actual paper.

2020-06-14 Thread Rostislav Svoboda
> I just wanted to announce the release of my project: clj-paper-print Could you put a picture (i.e. a scan) of a document printed using your library in the README.md? So that people A) actually see what exactly to expect from your library and B) better remember your work. And just to have a

Announcement: clj-paper-print Clojure library for easy printing on actual paper.

2020-06-14 Thread narocath
Hi everyone, I just wanted to announce the release of my project: clj-paper-print clojars github Clj-paper-print is a thin wrapper around `java.awt.print` for printing on actual paper. At the current state only

Announcing GraphQLize - A Clojure library to build GraphQL API instantly from PostgreSQL and MySQL

2020-03-19 Thread Tamizhvendan S
Hi, I am excited and delighted to introduce, GraphQLize , an open-source Clojure (& JVM) library for developing GraphQL API instantly from your existing PostgreSQL and MySQL databases. It aims to simplify the effort required to expose GraphQL APIs over

[ANN] Voodoo a Clojure library for byte buffer manipulation

2019-09-03 Thread Sonny To
https://github.com/sonwh98/voodoo -- 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 posts from new members are moderated - please be patient with your first post. To unsubscribe

Re: [ANN] ClojureCUDA: a Clojure library for CUDA GPU computing

2017-04-25 Thread Jay Porcasi
it sounds great, thanks Jay On Tuesday, April 25, 2017 at 6:33:49 AM UTC+7, Dragan Djuric wrote: > > I'll write more in an introductory blog post in a day or two. Until that, > there is a website http://clojurecuda.uncomplicate.org, that has the > details and documentation. > > It is similar to

[ANN] ClojureCUDA: a Clojure library for CUDA GPU computing

2017-04-24 Thread Dragan Djuric
I'll write more in an introductory blog post in a day or two. Until that, there is a website http://clojurecuda.uncomplicate.org, that has the details and documentation. It is similar to ClojureCL (http://clojurecl.uncomplicate.org), but is targeted to CUDA and Nvidia GPUs specifically. The

[ANN] graphql-clj: An Clojure library provides GraphQL implementation

2016-10-15 Thread Lei
Hi All, I am pleased to announce the release of graphql-clj, a library that provides GraphQL implementation in Clojure. https://github.com/tendant/graphql-clj For those who are not familiar with GraphQL. GraphQL is a query language for APIs and a runtime for fulfilling those queries with

[ANN] graphql-clj: An Clojure library provides GraphQL implementation

2016-10-15 Thread Lei
Hi All, I am pleased to announce the release of graphql-clj, a library that provides GraphQL implementation. https://github.com/tendant/graphql-clj For those who are not familiar with GraphQL. GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing

Re: Clojure library

2016-04-05 Thread Fernando Abrao
Yes, thats I wanted. Thanks a lot Regards Em domingo, 3 de abril de 2016 07:10:01 UTC-3, Ashish Negi escreveu: > > By default build tool : lein would not do AOT i.e. create .class files. > So, your jar with `lein uberjar` would have .clj files. You can verify with > un-tar the jar. > > If you

Re: Clojure library

2016-04-03 Thread Ashish Negi
By default build tool : lein would not do AOT i.e. create .class files. So, your jar with `lein uberjar` would have .clj files. You can verify with un-tar the jar. If you have a `-main` then you can use :skip-aot for not doing aot.. see

Re: Clojure library

2016-04-01 Thread Karl Blomström
Hello Fernando, Please correct me if I've misunderstood. If you want to install one of your libraries locally and are running leiningen just execute: lein install This way you can reference it in other projects just like you would a library from clojars.org. Regards, Kalle Den 2 apr. 2016

Re: Clojure library

2016-04-01 Thread William la Forge
OK, here is an older library project that uses lein: https://github.com/laforge49/aatree So I guess that covers all the bases. Personally I find boot to be amazing. And easy to use. Bill On Friday, April 1, 2016 at 8:19:46 PM UTC-4, William la Forge wrote: > > OOps. Here's the link:

Re: Clojure library

2016-04-01 Thread William la Forge
Here is a sample library which works the way you are asking. It uses boot, but then you didn't specify what build tool you wanted to use. :-) On Friday, April 1, 2016 at 9:33:45 AM UTC-4, Fernando Abrao wrote: > > Hello all, > > What is the best way to create a lib for internal propose, that

Re: Clojure library

2016-04-01 Thread William la Forge
OOps. Here's the link: https://github.com/aatree/aautil/ On Friday, April 1, 2016 at 8:19:01 PM UTC-4, William la Forge wrote: > > Here is a sample library which works the way you are asking. It uses boot, > but then you didn't specify what build tool you wanted to use. :-) > > On Friday, April

Clojure library

2016-04-01 Thread Fernando Abrao
Hello all, What is the best way to create a lib for internal propose, that generate a jar file with .clj sources instead of .class, like it is in the libs from clojars? My idea is to create a lib (jar) common for all projects. Another idea is welcome. Regards, Fernando -- You received this

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-21 Thread Timothy Baldridge
I've done a fair amount of work with core.async in gui libraries, and I strongly recommend against it. Core.async by it's very nature consists of performing IO operations on channels, this sort of thing shouldn't be done inside a user interface. Your code will quickly become very complex with

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-21 Thread Jason Zwolak
I sat down to use fx-fn today and discovered another library fx-clj. fx-clj hasn't had any activity for over a year, but it does use core.async, which seems to be the right direction if you want clean UI code: http://www.infoq.com/presentations/core-async-clojure Any plans to incorporate

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-19 Thread Timothy Baldridge
>> If the app-state has changed then it starts re-rendering the UI. That's pretty much exactly what fn-fx does in the latest version, with two caveats: 1) there's no timer, just a watch on an atom. 2) If you properly diff components you don't need to re-create them every time, just change the

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-19 Thread Jason Zwolak
Paul, yeap, Seesaw is definitely something worth considering. Dave Ray hasn't abandoned the project, but I sent a personal email to him asking about the state of the project and it does seem the Seesaw is in more of a maintenance phase than a continue to move forward and improve phase. Dave Ray,

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-19 Thread Jason Zwolak
You can diff JavaFX components like that? -- Jason Zwolak On Thu, Mar 17, 2016 at 12:51 PM, Timothy Baldridge wrote: > >> If the app-state has changed then it starts re-rendering the UI. > > That's pretty much exactly what fn-fx does in the latest version, with two >

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-19 Thread Mathias De Wachter
Hi Timothy, I'm really glad to see some new commits on fn(fx)! I don't know about others, but you'll definitely have at least one very enthusiastic user if I can get to a point where I can use it easily for simple things, and adapt/contribute for more complex things. Do you think the project is

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-19 Thread Timothy Baldridge
It uses the same sort of logic that React does. Fn-fx creates a virtual dom, and then diffs the previous virtual dom against the updated one. From there you get a list of necessary updates. JavaFX has a rather uniform property interface so applying these updates is quite simple. On Thu, Mar 17,

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-19 Thread Colin Fleming
That sounds great Timothy, thanks! On 18 March 2016 at 06:32, Timothy Baldridge wrote: > It uses the same sort of logic that React does. Fn-fx creates a virtual > dom, and then diffs the previous virtual dom against the updated one. From > there you get a list of necessary

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-19 Thread Kimmo Koskinen
This could be React on desktop, +1 for that :) -- 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 posts from new members are moderated - please be patient with your first post. To

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-19 Thread Dave Ray
Inline below.. Dave On Thu, Mar 17, 2016 at 9:37 AM, Jason Zwolak wrote: > Paul, yeap, Seesaw is definitely something worth considering. Dave Ray > hasn't abandoned the project, but I sent a personal email to him asking > about the state of the project and it does seem the

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-19 Thread Mark Engelberg
I'm also interested in JavaFX from Clojure. -- 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 posts from new members are moderated - please be patient with your first post. To

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-19 Thread Timothy Baldridge
I've been working on a "React for JavaFX" library for some time. Sadly I have no use for the library, so I haven't talked about it much yet. But the newest iteration has a interface I'm pretty happy with: https://github.com/halgari/fn-fx/blob/master/test/fn_fx/fx_dom_test.clj#L97-L145 If there

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-18 Thread Timothy Baldridge
I dusted off the fn-fx code today and fixed a bunch of bugs, and implemented a few examples: https://github.com/halgari/fn-fx One of the most complex examples so far is here: https://github.com/halgari/fn-fx/blob/master/examples/getting_started/02_form.clj As you can see the library is capable

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-18 Thread Paul L. Snyder
Yow, old indeed! In 2011, Dave Ray released Seesaw, which is a very nice wrapper for Swing. I've used it for a bunch of projects, and it works great. Of course, it does look like Swing, but it's plenty usable. (It's also still being maintained, so if you're looking for a toolkit that you can use

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-18 Thread chgraham
+1 JavaFX -- 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 posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2016-03-15 Thread Dragan Djuric
A few minor changes so Neanderthal can work better. New version of ClojureCL 0.5.0 has been released to Clojars Clojars. http://clojurecl.uncomplicate.org On Tuesday, March 15, 2016 at 1:32:34 AM UTC+1, Dragan Djuric wrote: > > New version of ClojureCL 0.4.0 has been released to Clojars

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2016-03-14 Thread Dragan Djuric
New version of ClojureCL 0.4.0 has been released to Clojars Clojars. http://clojurecl.uncomplicate.org On Wednesday, October 21, 2015 at 7:18:27 PM UTC+2, Dragan Djuric wrote: > > New version of ClojureCL 0.3.0 is out in Clojars. > http://clojurecl.uncomplicate.org > > On Wednesday, June 17,

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-12 Thread Jason Zwolak
+1 JavaFX. I know this is an old thread... but in case anyone comes across it (like I did just now) and wants to see where things are, they should know that JavaFX has come a long way and seems to be Oracle's replacement for Swing. Now JavaFX is no longer only in JavaFXscript... in fact, I

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-10-21 Thread Dragan Djuric
New version of ClojureCL 0.3.0 is out in Clojars. http://clojurecl.uncomplicate.org On Wednesday, June 17, 2015 at 4:59:02 PM UTC+2, Dragan Djuric wrote: > > Certainly, but that is not a priority, since I do not use (nor need) > OpenGL myself. I would be very interested to include contributions

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-17 Thread Bobby Bobble
superb! are there any plans to include opengl context sharing for visualisation ? -- 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 posts from new members are moderated - please be

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-17 Thread Dragan Djuric
Certainly, but that is not a priority, since I do not use (nor need) OpenGL myself. I would be very interested to include contributions as soon as I get them, and the foundations are already there (in JOCL), so it is not that hard at might look at first glance - I just do not have time to be

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-16 Thread Dragan Djuric
... Thanks, K. On 14 June 2015 at 17:04, Dragan Djuric drag...@gmail.com wrote: I am pleased to announce a first public release of new OpenCL 2.0 Clojure library - ClojureCL Very detailed documentation at http://clojurecl.uncomplicate.org and API at http

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-15 Thread Karsten Schmidt
. On 14 June 2015 at 17:04, Dragan Djuric drag...@gmail.com wrote: I am pleased to announce a first public release of new OpenCL 2.0 Clojure library - ClojureCL Very detailed documentation at http://clojurecl.uncomplicate.org and API at http://clojurecl.uncomplicate.org/codox/ Lots

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-14 Thread Dragan Djuric
Jogamp is stale, and does not provide low-level support. -- 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 posts from new members are moderated - please be patient with your first

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-14 Thread Dragan Djuric
deps to not be able to support OSX out of the box... Thanks, K. On 14 June 2015 at 17:04, Dragan Djuric drag...@gmail.com javascript: wrote: I am pleased to announce a first public release of new OpenCL 2.0 Clojure library - ClojureCL Very detailed documentation at http

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-14 Thread Dragan Djuric
OSX note: there are two JOCLs: * Jogamp (which does not support OpenCl 2..0, but only 1.1) uses (slow) JNA that does not need separate compilation. * ClojureCL uses a new version of jocl.org, which is a hand written JNI and needs to be compiled for each platform. The version supporting OpenCL

[ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-14 Thread Dragan Djuric
I am pleased to announce a first public release of new* OpenCL 2.0 *Clojure library - ClojureCL Very detailed *documentation* at http://clojurecl.uncomplicate.org and API at http://clojurecl.uncomplicate.org/codox/ Lots of learning examples http://github.com/uncomplicate/clojurecl/tree/master

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-14 Thread Karsten Schmidt
to announce a first public release of new OpenCL 2.0 Clojure library - ClojureCL Very detailed documentation at http://clojurecl.uncomplicate.org and API at http://clojurecl.uncomplicate.org/codox/ Lots of learning examples - follows the example code of OpenCL in Action book, and is compatible

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-14 Thread Karsten Schmidt
of the box... Thanks, K. On 14 June 2015 at 17:04, Dragan Djuric draga...@gmail.com wrote: I am pleased to announce a first public release of new OpenCL 2.0 Clojure library - ClojureCL Very detailed documentation at http://clojurecl.uncomplicate.org and API at http

Re: how do you re-load a clojure library?

2015-03-30 Thread Juvenn Woo
Hey Andy, As a devops, I do appreciate that, thank you for sharing! — Sent from Mailbox On Sun, Mar 29, 2015 at 10:17 PM, Andy- andre.r...@gmail.com wrote: Off topic for this list but I'm sure helpful to some: On Windows: You can see open file handles with MS's Process Explorer. On Linux:

Re: how do you re-load a clojure library?

2015-03-29 Thread Juvenn Woo
Hi Dan, All jars files are kept at `~/.m2/repositories` on *nix, as far as I know. So you can just find and delete them over there. The next time you run a lein task, it will re-download it. Best, -- Juvenn Woo Sent with Sparrow (http://www.sparrowmailapp.com/?sig) On Sunday, 29 March,

Re: how do you re-load a clojure library?

2015-03-29 Thread Dan Campbell
There it is, in Windows, at c:\Users\DC\.m2\repository, will try that, thanks Juvenn. On Sunday, March 29, 2015 at 8:08:22 AM UTC-4, juvenn wrote: Hi Dan, All jars files are kept at `~/.m2/repositories` on *nix, as far as I know. So you can just find and delete them over there. The

Re: how do you re-load a clojure library?

2015-03-29 Thread Andy-
Off topic for this list but I'm sure helpful to some: On Windows: You can see open file handles with MS's Process Explorer. On Linux: There is `lsof`, or if you like interactive: The popular `htop` utility allows you to press `l` to see all open ports, files and cwd of a process. This quickly

how do you re-load a clojure library?

2015-03-29 Thread Dan Campbell
If you wanted to sort of 'clean out' a clojar or any contrib, korma or core.async or whatever, how would you do that? In other words, if you wanted a specific library to be re-downloaded and deployed (i.e., refreshed) on your desktop, what command would you run? Or what folders would you

[ANN] fx-clj - Clojure library for JavaFX that supports reactive programming

2015-01-14 Thread Aaron Craelius
Finally, an official release of fx-clj, my Clojure library for JavaFX: https://github.com/aaronc/fx-clj. I've been using it for quite a number of months now and most of the core functionality is pretty stable. This library works with my freactive.core ( https://github.com/aaronc/freactive.core

Is there a Clojure library for generating checksum patterns

2014-12-29 Thread larry google groups
I've some questions about generating checksum patterns with Clojure. 1.) The simple case. Suppose I arbitrarily decide that in my project the correct answer will be 2, and I want this to be generated by 4 numbers. Is there a Clojure library that would give me: 2 8 4 7 1 1 2 2 4 1 3 4

Non-blocking file I/O Clojure library?

2014-05-18 Thread Mike Fikes
Does anyone know of any libraries for Clojure that wrap up non-blocking file I/O? I'm interested in one suitable for use with core.async on Java 7+. Below is a naïve stab at a function that reads file and returns it on a channel. It blocks somewhat (in the open and length calls), but overall,

Re: [ANN] Zengarden. A Clojure library for generating CSS

2014-04-11 Thread Dave Sann
ok, I understand now. thx D On Friday, 11 April 2014 12:16:02 UTC+10, frye wrote: I actually did take Joel up on his offer. But my feature requests are on the back burner for the moment. I happen to be building a product, that needs what Zengarden provides. Mainly authoring gnarly things

[ANN] Zengarden. A Clojure library for generating CSS

2014-04-10 Thread Timothy Washington
Zengarden is a riff on Joel Holdbrooks' excellent gardenhttps://github.com/noprompt/gardenlibrary. Zengarden is a simple tool for generating CSS in Clojure. The goal is to cover most of CSS3https://developer.mozilla.org/en-US/docs/Web/CSS/CSS3. The spirit of the library is to have declarative

Re: [ANN] Zengarden. A Clojure library for generating CSS

2014-04-10 Thread Dave Sann
what is different from what Joel already did? I think Joel was asking for input to help develop garden further it would be great to see efforts go into one thing - unless you have really divergent ideas Dave On Friday, 11 April 2014 01:07:47 UTC+10, frye wrote: Zengarden is a riff on

Re: [ANN] Zengarden. A Clojure library for generating CSS

2014-04-10 Thread Timothy Washington
I actually did take Joel up on his offer. But my feature requests are on the back burner for the moment. I happen to be building a product, that needs what Zengarden provides. Mainly authoring gnarly things like @import, @media queries, pseudo classes, etc, *declaratively, from edn*. That was the

What's the best clojure library to access HBase?

2014-03-06 Thread tao
the same as the title. -- tao Sent with Sparrow (http://www.sparrowmailapp.com/?sig) -- 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 posts from new members are moderated -

Re: What's the best clojure library to access HBase?

2014-03-06 Thread Josh Kamau
The last time i searched... i couldnt find any that is still being maintained. I ended up using the java api and its very simple. Josh On Thu, Mar 6, 2014 at 1:13 PM, tao tao.zhou2...@gmail.com wrote: the same as the title. -- tao Sent with Sparrow http://www.sparrowmailapp.com/?sig

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

2013-12-10 Thread Oleksandr Petrov
? 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] is a Clojure library to work

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

2013-12-07 Thread Oleksandr Petrov
...@gmail.com wrote: Buffy [1] 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`. Is there any plan to support bit

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

2013-12-07 Thread Oleksandr Petrov
[1] https://github.com/ztellman/gloss On Friday, November 29, 2013 10:15:45 PM UTC, Alex P wrote: Buffy [1] 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

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

2013-12-06 Thread Oleksandr Petrov
, I can only provide a hint on how to implement it. Will provide docs for that together with the rest of patches in work. On Wed, Dec 4, 2013 at 3:58 PM, Rob Day robert@merton.oxon.org wrote: On 29 November 2013 22:15, Alex P oleksandr.pet...@gmail.com wrote: Buffy [1] is a Clojure library

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

2013-12-06 Thread Oleksandr Petrov
] 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`. Is there any plan to support bit-fields? My main interest

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

2013-12-04 Thread Ulises
it differs from gloss [1]. Any advantages? Disadvantages? Thanks Thomas [1] https://github.com/ztellman/gloss On Friday, November 29, 2013 10:15:45 PM UTC, Alex P wrote: Buffy [1] is a Clojure library to work with Binary Data, write complete binary protocol implementations in clojure

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

2013-12-04 Thread Thomas
Thank you Alex, I have been paying around with Gloss for a while now and realised it is not quite suitable for the protocol I am trying to en/decode. I'll give Buffy a try and see whether it is a better fit for my problem domain. Thanks again, Thomas On Monday, December 2, 2013 9:09:48 PM

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

2013-12-04 Thread Rob Day
On 29 November 2013 22:15, Alex P oleksandr.pet...@gmail.com wrote: Buffy [1] 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

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

2013-12-03 Thread Cesar Canassa
PM UTC, Alex P wrote: Buffy [1] 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`. Main features motivation

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

2013-12-02 Thread Alex P
] 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`. Main features motivation to write it * partial

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

2013-11-30 Thread Thomas
Looks really really great and could you please explain how it differs from gloss [1]. Any advantages? Disadvantages? Thanks Thomas [1] https://github.com/ztellman/gloss On Friday, November 29, 2013 10:15:45 PM UTC, Alex P wrote: Buffy [1] is a Clojure library to work with Binary Data, write

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

2013-11-29 Thread Alex P
Buffy [1] 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`. Main features motivation to write it * partial

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

2013-11-29 Thread Andrey Antukh
Good work! Thanks! 2013/11/29 Alex P oleksandr.pet...@gmail.com Buffy [1] 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

[ANN] datasource 0.1 - Small clojure library for access to environment dependent configuration.

2013-11-14 Thread Andrey Antukh
Hi! A few days ago, I released some small library for setup environment dependent configuration. And I share it here in case it may be useful to someone. https://github.com/niwibe/datasource Feedback always welcomed. Andrey -- Andrey Antukh - Андрей Антух - n...@niwi.be

Re: [ANN] datasource 0.1 - Small clojure library for access to environment dependent configuration.

2013-11-14 Thread John D. Hume
One piece of feedback: the name datasource is confusing, given javax.sql.DataSource, as seen, for example, at http://clojure-doc.org/articles/ecosystem/java_jdbc/home.html# setting-up-a-data-source On Thu, Nov 14, 2013 at 10:09 AM, Andrey Antukh n...@niwi.be wrote:

Re: [ANN] datasource 0.1 - Small clojure library for access to environment dependent configuration.

2013-11-14 Thread Andrey Antukh
Hi John. I know, but I chose this name because other frameworks (like Grails, Spring, etc...) have this name for it purpose. But... I open to change the name to one other. Any suggestions? Thanks Andrey 2013/11/14 John D. Hume duelin.mark...@gmail.com One piece of feedback: the name

Re: [ANN] datasource 0.1 - Small clojure library for access to environment dependent configuration.

2013-11-14 Thread Andrey Antukh
Now renamed to env-config for avoid confusion. Thanks for suggestion! New link: https://github.com/niwibe/env-config 2013/11/14 Andrey Antukh n...@niwi.be Hi John. I know, but I chose this name because other frameworks (like Grails, Spring, etc...) have this name for it purpose. But... I

Ogre, a Clojure library for querying graphs

2013-03-16 Thread Zack Maril
Gremlin is a java library that lets you query graphs (real mathematical graph theory graphs): https://github.com/tinkerpop/gremlin/wiki Ogre is a library that wraps Gremlin up all pretty like: https://github.com/zmaril/ogre OgreDocs is a website that documents just how pretty Ogre is:

Re: ANN Titanium, a Clojure library on top of Titan

2013-02-12 Thread AtKaaZ
is there a way to use nested transactions, yet? I am looking at [1] and [2] [1] https://github.com/thinkaurelius/titan/wiki/Multi-Threaded-Transactions [2] https://github.com/tinkerpop/blueprints/wiki/Graph-Transactions On Mon, Feb 11, 2013 at 6:37 PM, Michael Klishin

Re: ANN Titanium, a Clojure library on top of Titan

2013-02-12 Thread Jeroen van Dijk
Looks interesting. I'm just wondering if you had a look at hermes [1], and if so, how is it different? [1] https://github.com/gameclosure/hermes On Tue, Feb 12, 2013 at 6:39 PM, AtKaaZ atk...@gmail.com wrote: is there a way to use nested transactions, yet? I am looking at [1] and [2] [1]

Re: ANN Titanium, a Clojure library on top of Titan

2013-02-12 Thread AtKaaZ
I did not look at hermes, wasn't aware of it, but I'll look, thanks. On Tue, Feb 12, 2013 at 8:56 PM, Jeroen van Dijk jeroentjevand...@gmail.com wrote: Looks interesting. I'm just wondering if you had a look at hermes [1], and if so, how is it different? [1]

Re: ANN Titanium, a Clojure library on top of Titan

2013-02-12 Thread Zack Maril
Primary author of Hermes here. We've put a fair amount of work into getting transactions right from the very beginning. Try reading: https://github.com/gameclosure/hermes/wiki/Transaction-Management And: https://github.com/gameclosure/hermes/wiki/Opening-graphs I'm working on a project now

Re: ANN Titanium, a Clojure library on top of Titan

2013-02-12 Thread AtKaaZ
Thanks Zack. I wouldn't have looked at hermes if ccw would actually not show-stop my attempts to load titanium into eclipse, so I've filed some ccw issue here: https://code.google.com/p/counterclockwise/issues/detail?id=531sort=-id Even so, as far as I could tell, they didn't (yet!) implement

Re: ANN Titanium, a Clojure library on top of Titan

2013-02-12 Thread Michael Klishin
2013/2/12 AtKaaZ atk...@gmail.com is there a way to use nested transactions, yet? I am looking at [1] and [2] Some initial tx support is in master, more coming soon. -- MK http://github.com/michaelklishin http://twitter.com/michaelklishin -- -- You received this message because you are

Re: ANN Titanium, a Clojure library on top of Titan

2013-02-12 Thread Michael Klishin
2013/2/12 Jeroen van Dijk jeroentjevand...@gmail.com Looks interesting. I'm just wondering if you had a look at hermes [1], and if so, how is it different? We started thinking about developing Titanium and what it may look like before Hermes was released (or before I heard about it). I did

ANN Titanium, a Clojure library on top of Titan

2013-02-11 Thread Michael Klishin
Titanium [1] is a Clojure graph library that is built on top of Titan [2]. It combines a Clojure-friendly API and graph processing DSL with the power of Titan. Full announcement and more details: http://blog.clojurewerkz.org/blog/2013/02/11/introducing-titanium/ 1.

Re: ANN Titanium, a Clojure library on top of Titan

2013-02-11 Thread AtKaaZ
this is awesome! there is some format issue on this page: http://titanium.clojurewerkz.org/articles/getting_started.html search for this twice to see both: clojurewerkz.titanium.elements/merge! On Mon, Feb 11, 2013 at 6:37 PM, Michael Klishin michael.s.klis...@gmail.com wrote: Titanium [1]

Re: ANN Titanium, a Clojure library on top of Titan

2013-02-11 Thread AtKaaZ
a small typo here: http://titanium.clojurewerkz.org/articles/getting_started.html at Removing Edges (tg/remove-edge e)) should be: (tg/remove-edge g e)) should I be reporting any of these somewhere else? On Mon, Feb 11, 2013 at 6:37 PM, Michael Klishin michael.s.klis...@gmail.com

Re: ANN Titanium, a Clojure library on top of Titan

2013-02-11 Thread James Thornton
This looks cool Michael, and it looks like it has made it to the front page of HN (http://news.ycombinator.com). I have been working with Titan in Clojure so I'll definitely check it out. - James On Monday, February 11, 2013 11:37:14 AM UTC-6, Michael Klishin wrote: Titanium [1] is a

Re: ANN Titanium, a Clojure library on top of Titan

2013-02-11 Thread Michael Klishin
2013/2/11 AtKaaZ atk...@gmail.com should I be reporting any of these somewhere else? Feel free to submit pull requests to https://github.com/clojurewerkz/titanium.docs ;) -- MK http://github.com/michaelklishin http://twitter.com/michaelklishin -- -- You received this message because you

Re: ANN Titanium, a Clojure library on top of Titan

2013-02-11 Thread Devin Walters
Another day, another great clojurewerkz library. Well done, gents. *golf clap* '(Devin Walters) On Feb 11, 2013, at 11:37 AM, Michael Klishin michael.s.klis...@gmail.com wrote: Titanium [1] is a Clojure graph library that is built on top of Titan [2]. It combines a Clojure-friendly API and

[ANN] sampling - A Clojure library for random sampling

2013-01-22 Thread Adam Ashenfelter
BigML https://bigml.com/ is happy to open source our Clojure random sampling library https://github.com/bigmlcom/sampling. The library offers: - Three varieties of sampling depending on your memory requirements (simple sampling, reservoir sampling, stream sampling) - Sample with

clojure library code fails to load resource file when called from java

2012-09-07 Thread fenton
https://github.com/ftravers/PublicDocumentation/blob/master/clojure/resource-file.md Reading a resource file File/directory layout: $ tree . |-- pom.xml |-- project.clj |-- README.md`-- src |-- test_project | `-- Core.clj `-- test.txt Setting up this to be a library for use in

Re: clojure library code fails to load resource file when called from java

2012-09-07 Thread Dave Ray
slurp is happy to slurp from a URL, no need for the (.getFile) call on the resource. In other words, the file returned for a resource that's been compiled into a jar isn't very useful. Stick with the URL returned bye clojure.java.io/resource. Dave On Fri, Sep 7, 2012 at 10:58 AM, fenton

Re: clojure library code fails to load resource file when called from java

2012-09-07 Thread fenton
Thanks so much Dave that was it! :) On Friday, September 7, 2012 11:08:50 AM UTC-7, daveray wrote: slurp is happy to slurp from a URL, no need for the (.getFile) call on the resource. In other words, the file returned for a resource that's been compiled into a jar isn't very useful. Stick

ANN: mcmc: a Clojure Library for MCMC Computations

2012-07-14 Thread Will M. Farr
Hello all, I just posted a library for MCMC (Markov Chain Monte Carlo) computations in Clojure on GitHub: https://github.com/farr/mcmc-clojure It is *very much* in a 0.0.1 state, but I have found it useful for a few astrostatistics projects I've done---in other words, there isn't a lot there,

Re: How to configure a Clojure library at runtime?

2012-05-14 Thread Roberto Mannai
a global var would preclude you from being able to use multiple, independent graph instances in your program, whereas you can in the Python version ( http://stackoverflow.com/questions/10540999/how-to-configure-a-clojure-library-at-runtime ). -- You received this message because you

Re: How to configure a Clojure library at runtime?

2012-05-12 Thread James Thornton
-to-configure-a-clojure-library-at-runtime ). And so I came up with this: (defn graph [ config] (let [config (get-config (first config))] (fn [func args] (apply func config args (defn create-vertex [config data] (let [path (build-path vertex-path) params (remove-null

Re: How to configure a Clojure library at runtime?

2012-05-12 Thread Baishampayan Ghose
...but Andrew Cooke pointed out that using a global var would preclude you from being able to use multiple, independent graph instances in your program, whereas you can in the Python version (http://stackoverflow.com/questions/10540999/how-to-configure-a-clojure-library-at-runtime). And so I

Re: How to configure a Clojure library at runtime?

2012-05-12 Thread James Thornton
On Saturday, May 12, 2012 8:12:53 AM UTC-5, Baishampayan Ghose wrote: You got the basic idea right, that of creating a lexical closure over the config map. But I personally don't like the approach of returning a function that takes a function and applies it over the other args. I

Re: How to configure a Clojure library at runtime?

2012-05-11 Thread Baishampayan Ghose
Hi, What about something like this - * Create a protocol called IGraphDBClient or something similar and create a spec. * Provide different client implementations in their own namespaces using deftype, eg. bulbs.db.neo4j/client, bulbs.db.orientdb/client, etc. * Put your core functions in a core

Re: How to configure a Clojure library at runtime?

2012-05-11 Thread James Thornton
On Friday, May 11, 2012 4:03:52 AM UTC-5, Baishampayan Ghose wrote: * Create a protocol called IGraphDBClient or something similar and create a spec. * Provide different client implementations in their own namespaces using deftype, eg. bulbs.db.neo4j/client, bulbs.db.orientdb/client,

  1   2   3   >