New Clojure Job Board

2017-11-02 Thread Ertuğrul Çetin
Hi Everyone, I've created a new Clojure Job Board on Clojurecademy. I hope it's going to be useful for both companies and Clojure developers! Thanks! -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post

Clojurecademy is Open Source now

2017-10-17 Thread Ertuğrul Çetin
Hi Everyone, I'm very happy to announce that I've open sourced Clojurecademy , I hope it's going to be useful for the community. GitHub Link: https://github.com/clojurecademy/clojurecademy -- You received this message because you are subscribed to the Google Groups

New Course on Clojurecademy: Exercism.io

2017-10-16 Thread Ertuğrul Çetin
Hey Everyone, I released new course: *Exercism.io *on Clojurecademy, Clojure exercises from Exercism.io. I hope you are going to enjoy when solving those exercises! Link: https://clojurecademy.com/courses/17592186091313/learn/overview -- You received this message because you are subscribed to

New Course on Clojurecademy: Code Katas

2017-10-09 Thread Ertuğrul Çetin
Hey Everyone, I've released a new course called *Code Katas* on Clojurecademy, which is a curated list of Clojure Code Katas: https://clojurecademy.com/courses/17592186068882/learn/overview -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to

Re: Clojurecademy: Learning Clojure Made Easy

2017-10-04 Thread Ertuğrul Çetin
Here is the DSL documentation link if anyone interested in creating Clojure based courses: https://clojurecademy.github.io/dsl-documentation On Monday, October 2, 2017 at 6:47:55 PM UTC+2, Ertuğrul Çetin wrote: > > Hi everyone, > > I've created site called Clojurecademy

Re: Clojurecademy: Learning Clojure Made Easy

2017-10-03 Thread Ertuğrul Çetin
d something like > this for Cljs UI work. I know we have klipse and some related things, but > something that packaged that together with some real course structure would > be really phenomenal. Any ideas on that? > > With gratitude > > Chris > > > On Monday, October

Re: Clojurecademy: Learning Clojure Made Easy

2017-10-03 Thread Ertuğrul Çetin
I removed Terms of Service from the site, also all Clojurecademy projects have MIT license(https://github.com/clojurecademy) and Clojurecademy Web App is going to be an open source project in near future. I hope everything is fine now, if not please let me know I'll do adjusments Thank you...

Re: Clojurecademy: Learning Clojure Made Easy

2017-10-03 Thread Ertuğrul Çetin
My goal is not earning money, this platform will remain free actually and be an open source project when I'm done with unit testing and documentation, my goal is making Clojure adoption as much easy as possible. I'll update Terms and consider your suggestion. On Tuesday, October 3, 2017 at 1:31

Re: Clojurecademy: Learning Clojure Made Easy

2017-10-03 Thread Ertuğrul Çetin
It's auto generated Terms of service, I should admit that I did not read all Terms. Which part(s) is preventing you from contributing? I can remove/change it, community's contribution is very important to platform. On Tuesday, October 3, 2017 at 5:03:12 AM UTC+2, Sam Griffith wrote: > > Terms of

Re: Clojurecademy: Learning Clojure Made Easy

2017-10-02 Thread Ertuğrul Çetin
n up? > Thanks. > > > 2017-10-02 18:47 GMT+02:00 Ertuğrul Çetin >: > > > Hi everyone, > > > > I've created site called Clojurecademy which seems like Codecademy for > > Clojure with powerful DSL to create courses. Feel free to provide

Clojurecademy: Learning Clojure Made Easy

2017-10-02 Thread Ertuğrul Çetin
Hi everyone, I've created site called Clojurecademy which seems like Codecademy for Clojure with powerful DSL to create courses. Feel free to provide feedback so we can improve Clojure adoption together! Link: https://clojurecademy.com -- You received this message because you are subscribed t

Re: Meta-data should be added to deprecated functions?

2016-08-09 Thread Ertuğrul Çetin
ore.async in > https://github.com/clojure/core.async/commit/103359a11598b556ac21053977e7deda43cea535 > > On Tuesday, August 9, 2016 at 3:55:04 PM UTC-5, Ertuğrul Çetin wrote: >> >> That will be very useful. Can't wait :) >> >> On Tuesday, August 9, 2016 at 11:49:36 PM UTC

Re: Meta-data should be added to deprecated functions?

2016-08-09 Thread Ertuğrul Çetin
y to Clojure core to give you more > feedback about deprecated functions and that's something I've been trying > to push through to completion for Clojure 1.9. See: > http://dev.clojure.org/jira/browse/CLJ-706 > > On Tuesday, August 9, 2016 at 3:05:24 PM UTC-5, Ertuğrul Ç

Meta-data should be added to deprecated functions?

2016-08-09 Thread Ertuğrul Çetin
I found the *map>* function from *core.async* and it was deprecated(doc says), but there is no meta-data. If we have meta-data for *deprecated* functions our tools(IDEs) would work better, like scratch out the function(Most IDEs do that). Ex: This (defn map> "." {:added "1.0" :d

Re: if-let/when-let

2016-07-26 Thread Ertuğrul Çetin
Here is the if-let*: (defmacro if-let* ([bindings then] `(if-let* ~bindings ~then nil)) ([bindings then else] (if (seq bindings) `(if-let [~(first bindings) ~(second bindings)] (if-let* ~(drop 2 bindings) ~then ~else) ~(if-not (second bindings) else)) then))) And when-let*: (defmacro when-let* (

Re: where to find clojure gigs?

2016-07-16 Thread Ertuğrul Çetin
Yes it is. Here is the GitHub repo: https://github.com/ertugrulcetin/ClojureNews/ On Saturday, July 16, 2016 at 4:45:57 AM UTC+3, ojito wrote: > > > https://clojure.news/#/job > > slick design! is this a clone of HN? what's the repo url? > > On Wednesday, July 13, 2016 at 2:15:36 PM UTC-7, ojito

Re: where to find clojure gigs?

2016-07-15 Thread Ertuğrul Çetin
Also you can try this: https://clojure.news/#/job On Thursday, July 14, 2016 at 12:15:36 AM UTC+3, ojito wrote: > > I'm looking for short term clojure gigs to work on? Does anyone know where > to find such gigs or know anyone who needs some clojure work done? > -- You received this message beca

Clojure News is out

2016-07-15 Thread Ertuğrul Çetin
Hi Everyone, I'm very excited to announce that Clojure News(Beta) https://clojure.news is out which is Hacker News Clone built for Clojurists. My goal is gathering Clojurists under one roof and helping Clojure Community to improve. It has cool and community driven features. P.S: It is open so