[ANN] chic-text 0.2.0 - Helpful functions for formatting console output

2015-03-07 Thread Ryan McGowan
chic-text http://www.ryanmcg.com/chic-text/ is a library of functions that formats strings for console output. It allows content to be specified in columns (sequence of strings) or functions of a collection (one function per column, one item in the collection per row). It even defines a

Re: [ANN] Dunaj project, an alternative core API for Clojure

2015-03-07 Thread Jozef Wagner
Thank you. Based on your suggestion I've added disqus commenting there. On Saturday, March 7, 2015 at 8:38:14 AM UTC+1, Bozhidar Batsov wrote: You might want to add some commenting capabilities to those articles. They'll be more valuable in the context of discussions IMO. On 6 March 2015

Re: State of Simulation Testing Survey - 2015

2015-03-07 Thread Ryan Neufeld
Hey again, I just wanted to let everyone know that I've published the results of the 2015 Simulation Testing survey. You can find them here: http://www.rkn.io/2015/03/07/state-of-sim-testing-results/ -Ryan On Tuesday, February 3, 2015 at 8:40:14 PM UTC-6, Ryan Neufeld wrote: Hey folks!

Has anyone seen this error with weasel/piggieback?

2015-03-07 Thread Jonathon McKitrick
Can't change/establish root binding of: *cljs-repl-options* with set when evaluating (piggieback/cljs-repl :repl-env (weasel/repl-env :ip 0.0.0.0 :port 9001)) -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to

Re: [ANN] Dunaj project, an alternative core API for Clojure

2015-03-07 Thread Jozef Wagner
While the first experiment took long to implement, it was fairly easy to understand and I think we can move on to the second one. Second Dunaj experiment adds support for optional type signatures that can be used to annotate functions, protocol methods, type fields and local bindings. These

Re: [ANN] Chestnut 0.7.0

2015-03-07 Thread Rostislav Svoboda
I tested the v 0.7.0 of chestnut and I encountered the following error. The v 0.6.0 works fine. $ lein new chestnut test-app Retrieving chestnut/lein-template/0.7.0/lein-template-0.7.0.pom from clojars Retrieving chestnut/lein-template/0.7.0/lein-template-0.7.0.jar from clojars Exception in

Re: [ANN] Chestnut 0.7.0

2015-03-07 Thread webber
I tested the v 0.7.0 of chestnut and I encountered the following error. The v 0.6.0 works fine. $ lein new chestnut test-app Retrieving chestnut/lein-template/0.7.0/lein-template-0.7.0.pom from clojars Retrieving chestnut/lein-template/0.7.0/lein-template-0.7.0.jar from clojars Exception in

Re: [OT?] Best DB/architecture for n-gram corpus?

2015-03-07 Thread Ray Miller
On 7 March 2015 at 00:25, Sam Raker sam.ra...@gmail.com wrote: I'm trying to create an n-gram[1] corpus out of song lyrics. I'm breaking individual songs into lines, which are then split into words, so you end up with something like {0 {0 go 1 tell 2 aunt 3 rhodie} 1 {0 the 1 old 2 grey 3

Re: [OT?] Best DB/architecture for n-gram corpus?

2015-03-07 Thread Matching Socks
A lot of guys would use Lucene. Lucene calls n-grams of words shingles. [1] As for architecture, here is a suggestion to use Lucene to find keys to records in your real database. [2] [1] https://lucidworks.com/blog/whats-a-shingle-in-lucene-parlance/ [2]

Re: Better/more idiomatic way to read EDNs than using java.io.PushbackReader

2015-03-07 Thread Matching Socks
Vote for clojure.java.io/pushback-reader http://dev.clojure.org/jira/browse/CLJ-1611 ? That enhancement suggestion contains links to some previous discussions on the subject. On Friday, March 6, 2015 at 10:18:03 PM UTC-5, Sam Raker wrote: I'm experimenting a little with EDN files. I've

Re: Diagnosing a cljsbuild error

2015-03-07 Thread Akiva Schoen
Could it be because of the :runner keyword you have in the vector? On Sat, Mar 7, 2015 at 2:20 PM Jonathon McKitrick jmckitr...@gmail.com wrote: Any thoughts as to why `lein cljsbuild test` would generate an error like this? Invalid :test-command, contains non-string value: [phantomjs

Re: Has anyone seen this error with weasel/piggieback?

2015-03-07 Thread Akiva Schoen
I have but ended up giving up on it and moving to using figwheel's REPL. You might want to reply to the topic I started over on clojure-tools: https://groups.google.com/forum/#!topic/clojure-tools/8C93CstHqpU. :A. On Sat, Mar 7, 2015 at 12:17 PM Jonathon McKitrick jmckitr...@gmail.com wrote:

[ANN] clecs 2.0.0

2015-03-07 Thread Atamert Ölçgen
clecs is an entity component system library. Repo is here: https://github.com/muhuk/clecs API documentation is here: http://clecs.muhuk.com/2.0.x/api/ Changelog is here: http://clecs.muhuk.com/2.0.x/user_guide/#_changelog This version comes with some major changes which will hopefully make

Diagnosing a figwheel error

2015-03-07 Thread Jonathon McKitrick
I decided to ditch piggieback/weasel and try figwheel, and though it starts without errors, I get 'Page not found' when visiting localhost:3449. What's the best way to track down the cause? -- You received this message because you are subscribed to the Google Groups Clojure group. To post to

Diagnosing a cljsbuild error

2015-03-07 Thread Jonathon McKitrick
Any thoughts as to why `lein cljsbuild test` would generate an error like this? Invalid :test-command, contains non-string value: [phantomjs :runner resources/es5-shim.js resources/public/js/test.js] -- You received this message because you are subscribed to the Google Groups Clojure group.

Re: Diagnosing a cljsbuild error

2015-03-07 Thread Akiva Schoen
Might want to diff the two project.clj files and see what you come up with. On Sat, Mar 7, 2015 at 3:22 PM Jonathon McKitrick jmckitr...@gmail.com wrote: I'm sure that's related, but the tests don't run without it. I went back to a working project.clj and started over, and it works now, but

Re: Diagnosing a cljsbuild error

2015-03-07 Thread Jonathon McKitrick
I'm sure that's related, but the tests don't run without it. I went back to a working project.clj and started over, and it works now, but I'm trying to understand the cause of the error to begin with. On Saturday, March 7, 2015 at 4:13:56 PM UTC-5, Akiva Schoen wrote: Could it be because of

Re: Diagnosing a figwheel error

2015-03-07 Thread Akiva Schoen
Unless I'm misunderstanding, this sounds like a routing issue. If you're going directly through Figwheel without a Ring server, you'll need something like Secretary to do the routing. Otherwise, you can configure Figwheel to interact with the Ring server's port and simply not use 3449 at all. This

Re: Diagnosing a figwheel error

2015-03-07 Thread Ivan L
Sounds like you are fighting with project.clj. You'd be better off going with a template like chestnut as a learning tool. On Saturday, March 7, 2015 at 5:47:19 PM UTC-5, Jonathon McKitrick wrote: I decided to ditch piggieback/weasel and try figwheel, and though it starts without errors, I