Re: Any tutorials for setting up Ring/Jetty as HTTPS, reverse proxy through Apache?

2015-12-03 Thread Denis Fuenzalida
For the reverse proxy part, a Ring/Jetty app is not really different than 
any other web application.

You need to configure Apache to use the SSL certificates and to forward 
requests to your application. See this tutorial: 
https://www.digitalocean.com/community/tutorials/how-to-use-apache-http-server-as-reverse-proxy-using-mod_proxy-extension

The tutorial configures Apache as a reverse proxy to forward the requests 
to port 8080. You can change the port 8080 to the port used by your 
application (eg. port 3000) and you'll be done.

Here's another tutorial (Clojure specific) by Adam Bard which configures 
NGinx as the web server, but uses the same ideas: 
http://adambard.com/blog/deploying-a-clojure-web-app-on-digitalocean/

Regards,

Denis

El jueves, 3 de diciembre de 2015, 12:25:16 (UTC-8), piast...@gmail.com 
escribió:
>
> Can anyone point me to a good tutorial about setting up a Ring/Jetty app 
> that works through a reverse proxy via Apache? 
>
>
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


Re: [ANN] Clojure 1.8.0-RC2

2015-12-03 Thread Serzh Nechyporchuk
There is an error in the link in the issue: you leave "):" in the end of 
url. 

On Monday, November 16, 2015 at 4:32:10 PM UTC+2, Alex Miller wrote:
>
> Clojure 1.8.0-RC2 is now available. *This build is a "release candidate"!* We 
> would appreciate any and all testing you can do on your own libraries or 
> internal projects to find problems. 
>
> Try it via
>
>- Download: 
>https://repo1.maven.org/maven2/org/clojure/clojure/1.8.0-RC2
>- Leiningen: [org.clojure/clojure "1.8.0-RC2"]
>
> Below are the changes since 1.8.0-RC1. See the full 1.8 change log here: 
> https://github.com/clojure/clojure/blob/master/changes.md.
>
>- CLJ-1846  Fix 
>VerifyError when primitive type hints are incorrect. These cases now throw 
>compiler errors.
>   - Example: (defn foo ^long [] 1)  (Integer/bitCount ^int (foo))
>   - In this example, foo returns a long but is type hinted 
>   (incorrectly) as an int. This case will now throw a compilation error. 
> The 
>   correct way to do this is with a cast:  (Integer/bitCount (int 
>   (foo)))
>- CLJ-1825  Fix 
>compilation errors on direct linking of anonymous recursive functions
>
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


Can direct linking allow compile-time artiy checks?

2015-12-03 Thread Marc O'Morain
Hi all,

Now that Clojure 1.8 supports direct linking, in theory compiler should be
able to throw an error when the user tries to call a function with the
wrong arity, since the callee must be known the compiler, and the callee
cannot be redefined.

This would be a really great improvement to the compiler since it would
turn potential run-time errors into compile-time errors.

Is something like this possible now?

Thanks,

Marc

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


Re: Streamlining dev environment startup

2015-12-03 Thread Sven Richter
It definitly is compatible. It just takes some manual work. Like I said, I 
started myself with the luminus template and implement components + other 
stuff into it. 
You can definitly do it and I also recommend it for the sole reason that a 
change to the routes in compojure will lead to a restart of the repl. You 
can circumvent that by reloading the code base. 
It may have changed in the last two years, but then I am not up to date.

Best Regards,
Sven

Am Mittwoch, 2. Dezember 2015 22:05:58 UTC+1 schrieb Webdev Tory Anderson:
>
> Maybe I spoke too soon when mentioning incompatibility between Luminus and 
> Reloaded. I look forward to taking a closer look at your work!
>
> On Wednesday, December 2, 2015 at 1:49:20 AM UTC-7, Sven Richter wrote:
>>
>> Hi,
>>
>> I based a template on luminus myself and added some stuff. It also 
>> contains predefined components so you don't have to add it yourself.
>> You can look how its done here: 
>> https://github.com/sveri/closp/tree/master/resources/leiningen/new/closp/clj/components
>>
>> Best Regards,
>> Sven
>>
>> Am Dienstag, 1. Dezember 2015 17:43:41 UTC+1 schrieb Colin Yates:
>>>
>>> The general idea is to use the ‘reloaded’ pattern, so rather than `lein 
>>> run` you would have a function which starts and stop the system. You still 
>>> need to run figwheel and mongo (yay for document databases) as separate 
>>> processes, although I tend to do those in straight terminals rather than 
>>> emacs shells as they live longer than my emacs does.
>>>
>>> You can find more about the reloaded pattern and a prescripted approach 
>>> to structuring your app here: https://github.com/stuartsierra/component.
>>>
>>> I think it is fairly common to have:
>>>  - your major building blocks as components
>>>  - a specific dev namespace which is only on the :dev profile
>>>  - fns in that namespace to start/stop components or the entire system
>>>
>>> There are some libraries which build on the component library: 
>>> https://github.com/danielsz/system for example.
>>>
>>> HTH.
>>>
>>> On 1 Dec 2015, at 16:26, Webdev Tory Anderson  
>>> wrote:
>>>
>>> I recently read something hinting at ways of streamlining the startup 
>>> process for the dev environment, so I'm hoping you good folks can give me 
>>> some tips. I'm developing a web app in Linux, Clojurescript/Clojure 
>>> (incidentally using the Luminus architecture). I use emacs (that part's 
>>> non-negotiable; sorry). The cumbersome startup process I usually have goes 
>>> like this:
>>>
>>> M-x shell
 mongod # start the mongo daemon

 M-x shell
 lein run # start the app and server

 M-x shell
 lein figwheel #start CLJS development

 (open a .clj file)
 C-c M-c  # (cider-connect)
 # insert localhost, port num, which proj. to connect to


>>> This is usually bearable since I only have to do it once or twice a 
>>> week, but it's definitely the sort of redundancy that would be nice to 
>>> eliminate. The "lein run" is good to have foregrounded because I can see 
>>> timbre statements and cleanly reboot when necessary. Figwheel, at the 
>>> moment, has to be foregrounded because that's where the figwheel prompt 
>>> ends up (I'd love to have that in Cider somehow, though). 
>>>
>>> Any recommendations on how to chop some of these steps off?
>>>
>>>
>>>
>>> -- 
>>> You received this message because you are subscribed to the Google
>>> Groups "Clojure" group.
>>> To post to this group, send email to clo...@googlegroups.com
>>> Note that posts from new members are moderated - please be patient with 
>>> your first post.
>>> To unsubscribe from this group, send email to
>>> clojure+u...@googlegroups.com
>>> For more options, visit this group at
>>> http://groups.google.com/group/clojure?hl=en
>>> --- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "Clojure" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to clojure+u...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>>
>>>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


Re: [ANN] play-clj, a game library

2015-12-03 Thread Karim SENHAJI
You can watch: https://youtu.be/9ilUe7Re-RA
It is a live coding demo of a game with play-clj where the author briefly
explains and uses screens and entities.

Le jeu. 3 déc. 2015 05:46, amirteymuri  a écrit :

> I am new to the playclj, and am confused about [screen entities] as
> arguments for all of the functions. I went through the tutorial
> , but am still
> not getting it i think, what these for all of the functions shared
> arguments are and what are they containing? I know screen is a map (a
> record more precisely) containing various functions for the main faunction
> and entitites is a vector containing aspects about the objects in the game.
> What kind of values are the entities and screen holding, are they dependent
> on the functions we define? I would be very thankful if someone could give
> me some declarations and examples.
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed 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.
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


Re: [ANN] Clojure 1.8.0-RC3

2015-12-03 Thread Serzh Nechyporchuk
In our app we have 30% speed improvements. Although direct-linking helps us
with code obfuscation.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


Re: [ANN] Clojure 1.8.0-RC2

2015-12-03 Thread Serzh Nechyporchuk
Thanks Alex, I will watch on this issue.

середа, 2 грудня 2015 р. 17:47:57 UTC+2 користувач Alex Miller написав:
>
> Hi Serzh, 
>
> Rich plans to work on this in 1.9 (ticket for tracking here: 
> http://dev.clojure.org/jira/browse/CLJ-1861). 
>
> Thanks,
> Alex
>
>
> On Tuesday, December 1, 2015 at 1:46:22 AM UTC-6, Serzh Nechyporchuk wrote:
>>
>> Hello, Alex. Thank you for your work.
>>
>> Direct linking is a feature that we wait for a long. We need to obfuscate 
>> our code, so direct linking is really helps us.
>> But I wonder, why there is keyword and symbols interning left in the 
>> static initalizer in the class:
>>
>> L1 {
>>  ldc "clojure.core" (java.lang.String)
>>  ldc "float?" (java.lang.String)
>>  invokestatic clojure/lang/RT 
>> var((Ljava/lang/String;Ljava/lang/String;)Lclojure/lang/Var;);
>>  checkcast clojure/lang/Var
>>  putstatic 
>> malt/utils$string_to_double.const__0:clojure.lang.Var
>>  ...
>> }
>>
>> But neither *invoke* nor *invokeStatic *doesn't use them.
>> We want to get rid of this interns because they undermine code 
>> obfuscation.
>>
>> Thank you
>>
>>
>> Clojure 1.8.0-RC2 is now available. *This build is a "release 
>>> candidate"!* We would appreciate any and all testing you can do on your 
>>> own libraries or internal projects to find problems. 
>>>
>>> Try it via
>>>
>>>- Download: 
>>>https://repo1.maven.org/maven2/org/clojure/clojure/1.8.0-RC2
>>>- Leiningen: [org.clojure/clojure "1.8.0-RC2"]
>>>
>>> Below are the changes since 1.8.0-RC1. See the full 1.8 change log here: 
>>> https://github.com/clojure/clojure/blob/master/changes.md.
>>>
>>>- CLJ-1846  Fix 
>>>VerifyError when primitive type hints are incorrect. These cases now 
>>> throw 
>>>compiler errors.
>>>   - Example: (defn foo ^long [] 1)  (Integer/bitCount ^int (foo))
>>>   - In this example, foo returns a long but is type hinted 
>>>   (incorrectly) as an int. This case will now throw a compilation 
>>> error. The 
>>>   correct way to do this is with a cast:  (Integer/bitCount (int 
>>>   (foo)))
>>>- CLJ-1825  Fix 
>>>compilation errors on direct linking of anonymous recursive functions
>>>
>>>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


Re: [ANN] Quil 2.3.0 Release

2015-12-03 Thread Boris Kourtoukov
On Tuesday, December 1, 2015 at 3:06:06 AM UTC-5, Nikita Beloglazov wrote:
> Happy to announce Quil 2.3.0 release.
> Quil is a Clojure/ClojureScript library for creating interactive drawings and 
> animations.
> The release available on clojars: https://clojars.org/quil. List of 
> changes:Migrated to Processing 3.0. See relevant Processing page.Switch to 
> Clojure 1.6. Makes it incompatible with Clojure 1.5.1.Optimizations in helper 
> seqs functions. See #160.Fix #161: don't draw text when no-fill is set.Fix 
> #115: bind *out* to REPL to make errors more visible when using emacs.Removed 
> few hints (due to Processing 3.0): :enable-retina-pixels, 
> :disable-retina-pixels, :enable-native-fonts, :disable-native-fonts.
> Documentation on http://quil.info has been updated as well.
> Upgrade to Processing 3.0 didn't introduce major API changes. The most 
> noticeable change is that now smooth and no-smooth functions must be called 
> inside new handler :settings (a cousin of :setup). See settings() 
> documentation for Processing.
> Happy hacking!
> Nikita

Thanks for this update Nikita! Processing 3.0 has had some great bug fixes and 
performance improvements. Can't wait to take advantage of them in Quil. :)

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


Any tutorials for setting up Ring/Jetty as HTTPS, reverse proxy through Apache?

2015-12-03 Thread piastkrakow
Can anyone point me to a good tutorial about setting up a Ring/Jetty app 
that works through a reverse proxy via Apache? 


-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


Re: ANN: ClojureScript 1.7.170, Enhanced Build Pipeline

2015-12-03 Thread Nikita Prokopov
On Monday, November 23, 2015 at 4:12:54 PM UTC+6, Nikita Prokopov wrote:
> Any advice what to do with deps.cljs?
> 
> Exception in thread "main" java.lang.AssertionError: No ns form found in 
> /Users/prokopov/Dropbox/ws/cognician/c3/src/deps.cljs, 
> compiling:(/private/var/folders/0h/9vv4g3d955l6ctwwl4k9xjy4gn/T/form-init7898631568113094426.clj:1:125)
> 
> $ cat src/deps.cljs
> {
>   :externs ["cognician/chat/externs.js"]
> }
> $
> 
> I’m using CLJS 1.7.170 and lein-cljsbuild 1.1.1

Looks like cljsbuild issue: https://github.com/emezeske/lein-cljsbuild/pull/428

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


ClojureScript vs Clojure: which differences matter in your experience?

2015-12-03 Thread fahptv
I've read 
https://github.com/clojure/clojurescript/wiki/Differences-from-Clojure and 
I'm wondering what differences you've found that truly matter to you? Are 
there cases where you regret you have to use ClojureScript and can't use 
Clojure itself?

All I have (given my limited experience) are guesses like I'm guessing the 
difference in type declaration vs type hinting won't matter to me. I'd much 
rather know what expereinced folks are finding.

Context: I'm thinking of tackling server side problems using 
ClojureScript.  It's a constrained environment that doesn't belong to me 
... where perhaps I can sell the idea of adding a 14 Mb node.js+v8 bundle 
to support ClojureScript but maybe I can't sell the addition of a much 
larger JVM to support Clojure. The program will be doing socket i/o, file 
i/o (file timestamps, inode/stat for checking the true identity of a file, 
tar, head, tail, line count, gzip). Nothing web related. 




-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


Re: ClojureScript vs Clojure: which differences matter in your experience?

2015-12-03 Thread Sebastian Bensusan
Hi,

I love ClojureScript and routinely recommend it to people in the 
supermarket. With that said, in the context of a backend service these are 
some of the things that I would miss from Clojure:

1. Rock solid dependencies for doing all the operations you describe. I've 
found the JVM ecosystem more reliable.
2. Maven/lein as the package manager vs npm (which is practically 
unavoidable for a complex app).
3. Clojure has support for a number of concurrency constructs. 
ClojureScript is built on a single threaded host, and thus can either use 
callbacks (like Node does) or CSP which is in my opinion much better, but 
it is not always a good fit either.

As you may have noticed by now, the differences are about Java vs Node, 
which make sense since ClojureScript deviates from Clojure mostly in those 
aspects.

Hope this helps

Sebastian

On Thursday, December 3, 2015 at 10:29:08 PM UTC+1, fah...@gmail.com wrote:
>
> I've read 
> https://github.com/clojure/clojurescript/wiki/Differences-from-Clojure 
> and I'm wondering what differences you've found that truly matter to you? 
> Are there cases where you regret you have to use ClojureScript and can't 
> use Clojure itself?
>
> All I have (given my limited experience) are guesses like I'm guessing the 
> difference in type declaration vs type hinting won't matter to me. I'd much 
> rather know what expereinced folks are finding.
>
> Context: I'm thinking of tackling server side problems using 
> ClojureScript.  It's a constrained environment that doesn't belong to me 
> ... where perhaps I can sell the idea of adding a 14 Mb node.js+v8 bundle 
> to support ClojureScript but maybe I can't sell the addition of a much 
> larger JVM to support Clojure. The program will be doing socket i/o, file 
> i/o (file timestamps, inode/stat for checking the true identity of a file, 
> tar, head, tail, line count, gzip). Nothing web related. 
>
>
>
>
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


Re: CIDER 0.10 is out!

2015-12-03 Thread Colin Yates
Absolutely - thanks to all involved!

> On 4 Dec 2015, at 00:10, Edward Knyshov  wrote:
> 
> Congratulations! You made a great work.
> 
> -- 
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your 
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> --- 
> You received this message because you are subscribed 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.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


Re: CIDER 0.10 is out!

2015-12-03 Thread Mimmo Cosenza
thanks. You rock
mimmo

> On 04 Dec 2015, at 01:10, Edward Knyshov  wrote:
> 
> Congratulations! You made a great work.
> 
> -- 
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your 
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> --- 
> You received this message because you are subscribed 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.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


CIDER 0.10 is out!

2015-12-03 Thread Edward Knyshov
Congratulations! You made a great work.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.


CIDER 0.10 is out!

2015-12-03 Thread Bozhidar Batsov
Hey everyone,

CIDER 0.10 (a.k.a. CIDERX) is finally out!

We've got a ton of new features and I hope you're going to love it!

The changelog is here
https://github.com/clojure-emacs/cider/releases/tag/v0.10.0

You can also check out this presentation
https://speakerdeck.com/bbatsov/cider-the-story-so-far-and-the-road-ahead

Enjoy!

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed 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.