Re: Neanderhal 0.8.0 released - includes Windows build

2016-10-09 Thread Dragan Djuric
Thank you for reporting broken links. They are fixed now. Anyway, it was broken only on the news release page, everything worked ok from anywhere else on the web site. Regarding the tutorials and docs, just follow the main page or the links in the menu. On Monday, October 10, 2016 at 1:55:32 AM

[?] cljs-devtools vs. dirac DevTools

2016-10-09 Thread Philos Kim
Could anyone explain the difference between cljs-devtools and dirac DevTools? And which one to use when? https://github.com/binaryage/cljs-devtools https://github.com/binaryage/dirac Many thanks in advance. -- You received this message because you are subscribed to the Google Groups "Clojure

Re: Neanderhal 0.8.0 released - includes Windows build

2016-10-09 Thread Sungjin Chun
Hi, First, thank you for your great library. Second, the tutorial link http://neanderthal.uncomplicate.org/articles/news/articles/getting_started.html in the release page is missing. Third, I'd tried to test some simple linear algebra code of my own such as inverting matrix, however, I cannot

Re: [ANN] Nightlight, an embedded editor for Clojure

2016-10-09 Thread Zach Oakes
I'll look into it. It looks like it's probably a dependency conflict. I'm using clojail to prevent the instaREPL from taking too long to run. It's using pretty old dependencies so I'll probably just fork and update it so this issue goes away. On Sunday, October 9, 2016 at 2:21:54 PM UTC-4, Hari

Re: [ANN] Nightlight, an embedded editor for Clojure

2016-10-09 Thread Hari Krishnan
> > Thanks for creating an editor like this. I may have a good use case.. >> > I followed the updated instructions, and I am getting this error. I am on [org.clojure/clojure "1.8.0"] [2016-10-09 11:16:00,994][DEBUG][org.jboss.logging] Logging Provider: org.jboss.logging.Log4jLoggerProvider

[ANN] Advenjure 0.3.0 - Interactive fiction in the terminal and the browser

2016-10-09 Thread Facundo Olano
Hi! I just released version 0.3.0 of the Advenjure engine for interactive fiction games. The new version compiles both to Clojure and ClojureScript, so the game can run in the terminal and the browser. GitHub: https://github.com/facundoolano/advenjure Clojars: https://clojars.org/advenjure Leining

Neanderhal 0.8.0 released - includes Windows build

2016-10-09 Thread Dragan Djuric
Windows users should not feel left out from high-performance computing experience in Clojure. Neanderthal now comes ready for Linux, OS X, AND Windows, on all CPUs and AMD, Nvidia, and Intel GPUs! Greatest thanks go to Dejan Dosic (https://github.com/ddosic), who wrestled Windows peculiarities

Re: [ANN] Nightlight, an embedded editor for Clojure

2016-10-09 Thread Zach Oakes
And thanks to Shantanu Kumar there is already a Leiningen plugin! I updated the website to reflect that. That should make it much nicer to use in lein projects. On Saturday, October 8, 2016 at 10:03:58 PM UTC-4, Zach Oakes wrote: > > Just when you thought I was done with my weird obsession w

Clojure advent calendar: call for contributions

2016-10-09 Thread James Laver
Hi all, In the model of http://perladvent.org/2015/ and many other "let's look at a programming shiny every day" projects, I thought I'd try to do a clojure advent this year. The overall theme for this year is planned to be a showcase libraries available on clojars, so every day we'll do someth

Re: newbee mystery

2016-10-09 Thread Colin Yates
I wouldn't say it is different, only that the REPL is doing an extra step (printing) which forces the evaluation of that lazy sequence. As James mentions, your code can force the evaluation of a lazy sequence using doseq or dorun. Lazy sequences are great when you get used to them but they can tri