[ANN] antizer 0.2.0

2017-06-29 Thread Michael Lim
https://github.com/priornix/antizer Antizer has just been released. It is a ClojureScript library implementing Ant Design React components for Reagent and Rum. Ant Design is an enterprise-class UI design language and React-based

[JOB] Clojure Job Posting

2013-10-22 Thread Michael Lim
Hi, We are a Singapore-based company that specializing social media analytics and insights, and we are looking to hire people for the role of system engineer, ideally someone who knows Clojure. Systems Engineer === - 2+ years software development experience - Knowledge of

Problems loading Clojure core in Nutch plugin

2012-10-01 Thread Michael Lim
Hi there, I am trying to implement a Nutch plugin in Clojure 1.3. It works correctly in Nutch standalone mode, but not in Nutch distributed (Hadoop) mode. I have made the plugin inherit from Nutch's HtmlParser class, as follows. --- (ns test_plugin.core) (gen-class :name

Re: Bug with ClojureScript keyword? function

2012-01-09 Thread Michael Lim
Apologies, there was a typo in my original email, what I meant to say was that: (js/alert (keyword? :foobar)) output result = false was compiled to = alert.call(null,cljs.core.keyword_QMARK_.call(null, 'foobar)); (js/alert (string? :foobar)) output result = true was compiled to =

Bug with ClojureScript keyword? function

2012-01-08 Thread Michael Lim
Hi, Is this a bug with ClojureScript's keyword? function? On the REPL, the return value of the function is fine. ClojureScript:cljs.user (keyword? :foobar) true ClojureScript:cljs.user (string? :foobar) false However, when the following is compiled to JavaScript, the output is not as expected: