Re: [ANN] Replete ClojureScript REPL iOS app available

2015-07-21 Thread Shahrdad Shadab
Awesome!, Thanks a lot Mike. On Tue, Jul 21, 2015 at 4:30 AM, Andrew Keedle akee...@gmail.com wrote: Brilliant Mike. Well done with this. Very impressive. On Monday, 20 July 2015 21:28:51 UTC, Mike Fikes wrote: Replete 1.0 is now in the App Store

Re: [ANN] CIDER 0.9

2015-06-16 Thread Shahrdad Shadab
Hi Bozhidar Thanks for the awesome work however when I upgraded to version 0.9 I get the following error when starting cider in emacs: Starting nREPL server via lein repl :headless... nREPL server started on 55266 nREPL: Establishing direct connection to localhost:55266 ... nREPL: Direct

Re: [ANN] CIDER 0.9

2015-06-16 Thread Shahrdad Shadab
Don't bother please, after I upgraded the clojure-mode issue got fixed. Again thanks for your magnificent tool. Best regards Shahrdad On Tue, Jun 16, 2015 at 12:19 PM, Shahrdad Shadab shahrd...@gmail.com wrote: Hi Bozhidar Thanks for the awesome work however when I upgraded to version 0.9 I

Re: [Job Spam] Looking for a clojure devs

2015-06-04 Thread Shahrdad Shadab
Hi Morteza I have been doing Clojure past two years. Please find my Resume attached. Best Regards Shahrdad On Thu, Jun 4, 2015 at 3:45 AM, Murtaza Husain murtaza.hus...@sevenolives.com wrote: Hi, A friend's startup is looking for couple of clojure devs. Its a startup and the stack they

doseq over atomic collection

2015-04-05 Thread Shahrdad Shadab
Hi folks It may seem silly question but why when I doseq over a vector that is wrapped in an atom and change the vector using swap! while I am inside doseq, the doseq sets to the beginning of the vector intermittently: (def a-data (atom [15 9 8 1 4 11 7 12 13 14 5 3 16 2 10 6])) (defn

Re: doseq over atomic collection

2015-04-05 Thread Shahrdad Shadab
On 5 April 2015 at 18:00, Shahrdad Shadab shahrd...@gmail.com wrote: Hi folks It may seem silly question but why when I doseq over a vector that is wrapped in an atom and change the vector using swap! while I am inside doseq, the doseq sets to the beginning of the vector intermittently: (def

Re: [ANN][book] Clojure Reactive Programming

2015-03-26 Thread Shahrdad Shadab
This is another way of saying Do not point the contrast between Clojure and other technologies just because I don't know those technologies. I believe showing the clear contrasts (and in general pain points in this field) by people like me who worked in both Clojure and non clojure technologies

Re: [ANN][book] Clojure Reactive Programming

2015-03-25 Thread Shahrdad Shadab
Trust me I have been using Scala + Akka + Play for past three years in production, and had to deal with tons of incidental complexity plus a lot of noise they introduce as my daily job (in my code as well as other developer's code). Now I am in the best position to judge and compare them with

Re: [ANN][book] Clojure Reactive Programming

2015-03-24 Thread Shahrdad Shadab
Awesome! It was about the time that someone shows the power of clojure in reactive programming (and in particular core async) to the practitioners that use Scala / AKKA for orchestration. I personally work in a company that some ignorant architect decided to Java8 + Akka + play's promise

Re: CIDER 0.8.2 released!

2014-12-22 Thread Shahrdad Shadab
Great Job Bozhidar! Thanks for the quality software. On Mon, Dec 22, 2014 at 8:38 AM, Sun Ning classicn...@gmail.com wrote: Good Job, Bozhidar! I've already updated from MELPA. Everything works like a charm. On 12/21/2014 08:39 PM, Bruce Durling wrote: Thanks! cheers, Bruce On

Re: [JOBS] Remote Clojure Developers Wanted

2014-11-17 Thread shahrdad shadab
to the Google Groups Clojure group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout. -- Best Regards Shahrdad Shadab Senior Software Developer -- You

Re: [JOBS] Remote Clojure Developers Wanted

2014-11-17 Thread shahrdad shadab
My Apologies to the group. Please disregard my last email. Thanks a lot Best Regards Shahrdad On Mon, Nov 17, 2014 at 11:17 AM, shahrdad shadab clojure.langu...@gmail.com wrote: Hi Eric I have been doing Clojure for about a year ,please find my Resume. Thanks a lot Best Regards

behaviour of map

2014-10-18 Thread shahrdad shadab
Greeting everyone, It might be stupid question but I expect (first (map (fn [_] (println executed)) [1 2 3 4])) prints only once (realizing only first element in lazy seq returned by map) but it prints four times. Can some one shed a light why? Thanks in advance Best regards Shahrdda --

Re: behaviour of map

2014-10-18 Thread shahrdad shadab
, range, etc.), while creating a seq explicitly with lazy-seq will not be chunked. - James On 18 October 2014 18:28, shahrdad shadab clojure.langu...@gmail.com wrote: Greeting everyone, It might be stupid question but I expect (first (map (fn [_] (println executed)) [1 2 3 4])) prints

agent validation fails in STM

2014-10-15 Thread shahrdad shadab
Hi folks I know when I send/send-off an action to an agent within a STM transaction no action will be dispatched if transaction fails to commit. I was expecting similar behaviour when agent fails: the transaction does not commit when the action puts the agent in an invalid / failed state. It

Re: a data conversion question

2014-06-08 Thread Shahrdad Shadab
Yet another way: (reduce #(let [[k [v1 v2]] %2] (vec (concat % [[k v1]] [[k v2]]))) [] [[:a [1 2]] [:b [3 4]]]) On Jun 8, 2014, at 3:43 PM, boz b...@cox.net wrote: Thanks for the replies!! I goofed and only gave part of my loopy solution ... here's the whole thing (defn do-one