Re: Strange exception intializing clojure.core using Spring-Hadoop

2013-05-18 Thread Kyrill Alyoshin
This is indeed due to an interesting peculiarity of Clojure's runtime implementation. For whatever reason, RT class will fail to initialize if it was loaded by a classloader different from the context class loader of the executing thread. It may sound somewhat strange in terms of how this can a

Re: Getting highlighted clojure code into a presentation

2013-05-18 Thread Jason Gilman
One option that I've used is to put the code into a gist on github named with a clj extension. Github will format it based on the extension. When you copy and paste it from the gist into keynote, etc. the formatting will be intact. Example here: https://gist.github.com/jasongilman/3684830 This

new grojure version

2013-05-18 Thread Gavin Grover
grojure 0.7.1 is out at https://github.com/gavingroovygrover/grojure Grojure is a Javalike syntactic shell for Clojure using Kern, Amando Blancas' port of Haskell's Parsec, a monadic parser combinator library. Because Grojure's grammar will expand and change, it's probably of most use to Clojur

Re: Getting highlighted clojure code into a presentation

2013-05-18 Thread John Gabriele
On Friday, May 17, 2013 11:42:55 PM UTC-4, Korny wrote: > > Yes, I know I can just take a screenshot, but that gives you a bitmap that > doesn't scale nicely or give you any ability to do last minute editing. > But the above gets tedious very fast - I wonder if there's a better option > I've m

Re: seancorfield /clj-soap

2013-05-18 Thread Keith Irwin
On May 18, 2013, at 5:32 PM, Marc Boschma wrote: > Well understood Sean! > > If I work out away to up lift the code I'll contribute that back. > > I was just checking to see if anyone else had tried. > > If, like you, I need to find another way is Axis 1.x an easier platform than > 2.x ?The

Re: seancorfield /clj-soap

2013-05-18 Thread Marc Boschma
Well understood Sean! If I work out away to up lift the code I'll contribute that back. I was just checking to see if anyone else had tried. If, like you, I need to find another way is Axis 1.x an easier platform than 2.x ?The Java SOAP landscape seems overly complex. Marc I really wish the

Re: Screencast: Clojure development with Sublime Text 2

2013-05-18 Thread Jonathan Fischer Friberg
Nice introduction! Problems/suggestions for lispindent can be reported here: https://github.com/odyssomay/sublime-lispindent/issues don't be shy! In any case, I went ahead and implemented checking for the syntax of the file. So non-saved files with clojure syntax is now indented correctly. This

Screencast: Clojure development with Sublime Text 2

2013-05-18 Thread James MacAulay
This is a little show-and-tell I recorded today: http://www.youtube.com/watch?v=wBl0rYXQdGg Hopefully it's useful for some of you. Feedback welcome! Cheers, James -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email

Re: Getting highlighted clojure code into a presentation

2013-05-18 Thread Stefan Kamphausen
Besides the obvious org-mode which exports with colors to HTML when you use "#+BEGIN_SRC clojure ... #+END_SRC" I also had some fun presenting with marginalia or impress.js, both using Alex Gorbatchev's Syntax Highlighter. (FWIW) -- -- You received this message because you are subscribed to t

Re: asm-based clojure yet?

2013-05-18 Thread Gary Trakhman
It's hard to really appreciate java and clojure until you actually write some C/C++ or ASM.. I have some minor experience with that stuff, and it still haunts me from time to time. Sometimes we make tradeoffs without knowing we did. By choosing a language, or having the choice made for us, we acc

Re: asm-based clojure yet?

2013-05-18 Thread atkaaz
your comment caused me to be reading this http://prog21.dadgum.com/134.html (at least) On Sat, May 18, 2013 at 6:17 PM, Gary Trakhman wrote: > Immutability, persistence, closures without a serious garbage collector > sounds hard. > > > On Sat, May 18, 2013 at 1:09 AM, atkaaz wrote: > >> Thank

Re: asm-based clojure yet?

2013-05-18 Thread Gary Trakhman
Immutability, persistence, closures without a serious garbage collector sounds hard. On Sat, May 18, 2013 at 1:09 AM, atkaaz wrote: > Thanks very much everyone! I'm looking into all of those, but currently > planning to read Julian's pdf. I didn't want to say anything until I had > something de

Re: seancorfield /clj-soap

2013-05-18 Thread Sean Corfield
Since my name was invoked via mention of this repo, I figured it was a good chance to post from the readme: "Note however that I am not actively maintaining this library and would welcome someone taking it over. I updated Tetsuya's code to use a more modern Clojure environment purely to test it fo

ANN Langohr 1.0.0-beta14 is released

2013-05-18 Thread Michael Klishin
Langohr [1] is a Clojure client for RabbitMQ that embraces the AMQP 0.9.1 model. Release notes for beta14: http://blog.clojurewerkz.org/blog/2013/05/18/langohr-1-dot-0-0-beta14-is-released/ 1. http://clojurerabbitmq.info -- MK http://github.com/michaelklishin http://twitter.com/michaelklishin

Re: unlicensed clojure code/jar/uberjar ?

2013-05-18 Thread atkaaz
I see what you mean about public domain here for example: http://www.mingw.org/license *MinGW Runtime:* All releases of the MinGW base runtime package, prior to release 4.0, have been placed in the public domain, and are not governed by copyright. This basically means that you can do what you like

Re: unlicensed clojure code/jar/uberjar ?

2013-05-18 Thread Michael Klishin
2013/5/18 atkaaz > Could you elaborate on this: > >> It is extremely unlikely that folks in large companies will be able to >> use code released >> under such an exotic license. >> > Their legal department won't let them because they are not familiar with Unlicense and have no interest or time to

Re: unlicensed clojure code/jar/uberjar ?

2013-05-18 Thread atkaaz
On Sat, May 18, 2013 at 4:48 PM, Michael Klishin < michael.s.klis...@gmail.com> wrote: > 2013/5/18 atkaaz > >> Hi. Can I release my clojure code under unlicensed? >> http://unlicense.org/ >> > > You can but it's not a very good idea. Not all countries have the notion > of public domain. > Could

Re: unlicensed clojure code/jar/uberjar ?

2013-05-18 Thread Michael Klishin
2013/5/18 atkaaz > Hi. Can I release my clojure code under unlicensed? > http://unlicense.org/ > You can but it's not a very good idea. Not all countries have the notion of public domain. It is extremely unlikely that folks in large companies will be able to use code released under such an exoti

unlicensed clojure code/jar/uberjar ?

2013-05-18 Thread atkaaz
Hi. Can I release my clojure code under unlicensed? http://unlicense.org/ Maybe the code and the jar can be, right? But how about the uberjar which includes clojure itself which is under EPL?(for example I cannot dist the uberjar under GPL) Is my code being unlicensed like that work ok with clojur

Re: getclojure.org

2013-05-18 Thread Jason Toy
Great job! On May 17, 6:32 am, Manuel Paccagnella wrote: > Nice! Thank you Devin. > > Il giorno venerdì 17 maggio 2013 03:12:11 UTC+2, Devin Walters (devn) ha > scritto: > > > > > > > > > > >  Hey All, > > > I put this (http://getclojure.org) together and wanted to share it with > > all of you. I

Re: Getting highlighted clojure code into a presentation

2013-05-18 Thread Karsten Schmidt
Btw. Has anyone managed to run htmlize or htmlfontify with rainbow delimiters enabled? Both throw errors like this for me (but I really would like to export w/ rainbow brackets): Wrong type argument: symbolp, "rainbow-delimiters-depth-1-face" Thanks, K. -- -- You received this message because

Re: Getting highlighted clojure code into a presentation

2013-05-18 Thread Korny Sietsma
If I didn't want colours, I could just cut and paste the text :) But on a big screen, to a not-necessarily-clojure-literate audience, colours help comprehension. As for presenting in emacs or another plain-text format - I'd agree for mostly-technical presentations with lots of text. This was les

Re: Getting highlighted clojure code into a presentation

2013-05-18 Thread Stuart Sierra
I wrote my own tool (in ClojureScript) to present Emacs org-mode's HTML export as slides. It's pretty clunky too, but works for code-heavy presentations. https://github.com/relevance/org-html-slideshow -S On Saturday, May 18, 2013 1:42:55 PM UTC+10, Korny wrote: > > Hi folks - I had to prepar