Re: feedback about solutions

2015-09-02 Thread r/ Wobben
Another question from a beginner. How do I add klein here : (defproject i-am-a-horse-in-the-land-of-booleans "1.0.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.5.1"] [iloveponies.tests/i-am-a-horse-in-the-land-of-booleans "0.1.0-SNAPSHOT"]] :profiles {:dev {:plugins [[

Re: feedback about solutions

2015-09-01 Thread r/ Wobben
Thanks, For anyone who is interested. Here are the exercises and theory: http://iloveponies.github.io/120-hour-epic-sax-marathon/I-am-a-horse-in-the-land-of-booleans.html and here are the exercises layout ; https://github.com/iloveponies/i-am-a-horse-in-the-land-of-booleans/blob/master/src/i_a

Re: feedback about solutions

2015-09-01 Thread Jony Hudson
You might find kibit interesting too: https://github.com/jonase/kibit In its own words "kibit is a static code analyzer for Clojure, ClojureScript, cljx and other Clojure variants. It uses core.logic to search for patter

Re: feedback about solutions

2015-09-01 Thread Amith George
Forgot to add, there is a community written clojure style guide [1] that you may skim through. I had read it a long time ago. My impression was that a lot of the guidelines aligned with my own preferences. [1] - https://github.com/bbatsov/clojure-style-guide -- You received this message becau

Re: feedback about solutions

2015-09-01 Thread Amith George
Hi, I am not an expert :) I haven't heard of this repo or even understand what the exercises are. Nonetheless, based on what you wrote, some simple changes (to possibly make it more idiomatic?), (< x 0) use (neg? x) (if (= (mod n divisor)0) > true > false)) use (= (mod n d

feedback about solutions

2015-08-31 Thread r/ Wobben
Hello, I did solve the boolean chapter of the ilovehorses git repo. My solutions can be found here: https://github.com/rwobben/i-am-a-horse-in-the-land-of-booleans/blob/master/src/i_am_a_horse_in_the_land_of_booleans.clj Any experts who can give me feedback about the solutions so I can learn f