Re: [ANN] om-bootstrap 0.2.5 - Bootstrap 3 components in Om

2014-08-28 Thread henry w
ok thanks. makes sense to me.


-- 
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] om-bootstrap 0.2.5 - Bootstrap 3 components in Om

2014-08-28 Thread Andy Dwelly
I've got a working knowledge of Clojure and I'm trying to extend my reach 
into Clojurescript, om, and bootstrap as I want the resulting website to 
look reasonable. 
I've worked my way through the om tutorials and I have a simple plain om 
example of my own which doesn't use bootstrap.

Apart from the [om-bootstrap "0.2.6"] dependancy, it seems that to get 
started with om-bootstrap  I need an initial index.html file similar to the 
one generated with the 'lein new mies-om' 
command, but referencing bootstrap, and some idea of the structure of the 
resources directory - presumably various bits of the bootstrap project.

Can you give any guidance in this area ?

-A

On Monday, August 25, 2014 2:14:04 AM UTC+1, Sam Ritchie wrote:
>
>  Hey all,
>
> I wanted to share a library I've been putting together for writing 
> Bootstrap 3 components in Om. It's called, creatively, Om-Bootstrap.
>
> Here's the git repository: https://github.com/racehub/om-bootstrap
>
> Version 0.2.5 is on Clojars :
>
> [racehub/om-bootstrap "0.2.5"]
>
>
> I've also written an interactive documentation site for the project, a la 
> the Bootstrap doc site:
>
> http://om-bootstrap.herokuapp.com
>
> This site has working examples of every component in the library, and 
> TODOs in the spots that I intend to cover. Every example snippet has a 
> "show code" toggle that lets you see the code used to generate that 
> example. You should be able to copy the code over to your project and have 
> it work right away.
>
> There's a lot of cool stuff in this project that I hope to document. The 
> README describes how to get the embedded websocket repl running. I'll post 
> on how I do the embedded example snippets soon. The plan is to add 
> server-side HTML generation and client side routing once the doc site gets 
> a few more pages.
>
> Huge props to David for Om, and to the react-bootstrap 
>  project for 
> inspiration... I've been tracking off of them and their killer doc site for 
> this initial push.
>
> Let me know what you guys think!
> -- 
> Sam Ritchie (@sritchie)
> Paddleguru Co-Founder
> 703.863.8561
> www.paddleguru.com
> Twitter  // Facebook 
> 
>  

-- 
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] om-bootstrap 0.2.5 - Bootstrap 3 components in Om

2014-08-28 Thread Sam Ritchie

Hey Andy,

All you should need is the usual Om project layout, similar to the 
index.html you mentioned, plus this line in your project's header to 
include the Bootstrap CSS that Om-Bootstrap uses:


href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"; 
rel="stylesheet" type="text/css" class="style" />


For the om-bootstrap docs project, I jammed the Bootstrap CSS into the 
resources folder to make local development easier when I'm offline, but 
it's totally fine to just reference the CDNed version in your project. 
There's no need to know anything about the resources folder to use 
Om-Bootstrap.


I'll add this information to the documentation site today on this 
barebones, TODO Getting Started page:


http://om-bootstrap.herokuapp.com/getting-started

Andy Dwelly 
August 28, 2014 at 6:05 AM
I've got a working knowledge of Clojure and I'm trying to extend my 
reach into Clojurescript, om, and bootstrap as I want the resulting 
website to look reasonable.
I've worked my way through the om tutorials and I have a simple plain 
om example of my own which doesn't use bootstrap.


Apart from the [om-bootstrap "0.2.6"] dependancy, it seems that to get 
started with om-bootstrap  I need an initial index.html file similar 
to the one generated with the 'lein new mies-om'
command, but referencing bootstrap, and some idea of the structure of 
the resources directory - presumably various bits of the bootstrap 
project.


Can you give any guidance in this area ?

-A

On Monday, August 25, 2014 2:14:04 AM UTC+1, Sam Ritchie wrote:
--
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.
Sam Ritchie 
August 24, 2014 at 7:13 PM
Hey all,

I wanted to share a library I've been putting together for writing 
Bootstrap 3 components in Om. It's called, creatively, Om-Bootstrap.


Here's the git repository: https://github.com/racehub/om-bootstrap

Version 0.2.5 is on Clojars :

[racehub/om-bootstrap"0.2.5"]

I've also written an interactive documentation site for the project, a 
la the Bootstrap doc site:


http://om-bootstrap.herokuapp.com

This site has working examples of every component in the library, and 
TODOs in the spots that I intend to cover. Every example snippet has a 
"show code" toggle that lets you see the code used to generate that 
example. You should be able to copy the code over to your project and 
have it work right away.


There's a lot of cool stuff in this project that I hope to document. 
The README describes how to get the embedded websocket repl running. 
I'll post on how I do the embedded example snippets soon. The plan is 
to add server-side HTML generation and client side routing once the 
doc site gets a few more pages.


Huge props to David for Om, and to the react-bootstrap 
 project for 
inspiration... I've been tracking off of them and their killer doc 
site for this initial push.


Let me know what you guys think!


--
Sam Ritchie (@sritchie)
Paddleguru Co-Founder
703.863.8561
www.paddleguru.com 
Twitter // Facebook 



--
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.


lein 2.4.3 repl outside project?

2014-08-28 Thread Tim Visher
Anyone else get this error?

🐈 lein repl
Downloading Leiningen to
/Users/tim/.lein/self-installs/leiningen-2.4.3-standalone.jar now...
  % Total% Received % Xferd  Average Speed   TimeTime Time  Current
 Dload  Upload   Total   SpentLeft  Speed
100   3550   3550 0889  0 --:--:-- --:--:-- --:--:--   889
100 14.2M  100 14.2M0 0  2469k  0  0:00:05  0:00:05 --:--:-- 3166k
nREPL server started on port 52343 on host 127.0.0.1 - nrepl://127.0.0.1:52343
REPL-y 0.3.2, nREPL 0.2.0-beta5Exception in thread "nREPL-worker-0"
NoSuchMethodError clojure.tools.nrepl.StdOutBuffer.length()I
clojure.tools.nrepl.middleware.session/session-out/fn--7630
(session.clj:43)NoSuchMethodError
clojure.tools.nrepl.StdOutBuffer.length()I
clojure.tools.nrepl.middleware.session/session-out/fn--7630
(session.clj:43)java.lang.NoSuchMethodError:
clojure.tools.nrepl.StdOutBuffer.length()I
at 
clojure.tools.nrepl.middleware.session$session_out$fn__7630.doInvoke(session.clj:43)
at clojure.lang.RestFn.invoke(RestFn.java:460)
at 
clojure.tools.nrepl.middleware.session.proxy$java.io.Writer$ff19274a.write(Unknown
Source)
at java.io.PrintWriter.write(PrintWriter.java:456)
at java.io.PrintWriter.write(PrintWriter.java:473)
at clojure.core$fn__5471.invoke(core_print.clj:191)
at clojure.lang.MultiFn.invoke(MultiFn.java:231)
at clojure.core$pr_on.invoke(core.clj:3392)
at clojure.core$pr.invoke(core.clj:3404)
at clojure.lang.AFn.applyToHelper(AFn.java:154)
at clojure.lang.RestFn.applyTo(RestFn.java:132)
at clojure.core$apply.invoke(core.clj:624)
at clojure.core$prn.doInvoke(core.clj:3437)
at clojure.lang.RestFn.applyTo(RestFn.java:137)
at clojure.core$apply.invoke(core.clj:624)
at clojure.core$println.doInvoke(core.clj:3457)
at clojure.lang.RestFn.invoke(RestFn.java:408)
at clojure.main$repl_caught.invoke(main.clj:158)
at 
clojure.tools.nrepl.middleware.interruptible_eval$evaluate$fn__7569$fn__7582.invoke(interruptible_eval.clj:76)
at clojure.main$repl$fn__6634.invoke(main.clj:259)
at clojure.main$repl.doInvoke(main.clj:257)
at clojure.lang.RestFn.invoke(RestFn.java:1096)
at 
clojure.tools.nrepl.middleware.interruptible_eval$evaluate$fn__7569.invoke(interruptible_eval.clj:56)
at clojure.lang.AFn.applyToHelper(AFn.java:152)
at clojure.lang.AFn.applyTo(AFn.java:144)
at clojure.core$apply.invoke(core.clj:624)
at clojure.core$with_bindings_STAR_.doInvoke(core.clj:1862)
at clojure.lang.RestFn.invoke(RestFn.java:425)
at 
clojure.tools.nrepl.middleware.interruptible_eval$evaluate.invoke(interruptible_eval.clj:41)
at 
clojure.tools.nrepl.middleware.interruptible_eval$interruptible_eval$fn__7610$fn__7613.invoke(interruptible_eval.clj:171)
at clojure.core$comp$fn__4192.invoke(core.clj:2402)
at 
clojure.tools.nrepl.middleware.interruptible_eval$run_next$fn__7603.invoke(interruptible_eval.clj:138)
at clojure.lang.AFn.run(AFn.java:22)
at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
#

Error loading namespace; falling back to userException in thread
"nREPL-worker-2" java.lang.NoSuchMethodError:
clojure.tools.nrepl.StdOutBuffer.length()I
at 
clojure.tools.nrepl.middleware.session$session_out$fn__7630.doInvoke(session.clj:43)
at clojure.lang.RestFn.invoke(RestFn.java:460)
at 
clojure.tools.nrepl.middleware.session.proxy$java.io.Writer$ff19274a.write(Unknown
Source)
at java.io.PrintWriter.write(PrintWriter.java:456)
at java.io.PrintWriter.write(PrintWriter.java:473)
at clojure.core$fn__5471.invoke(core_print.clj:191)
at clojure.lang.MultiFn.invoke(MultiFn.java:231)
at clojure.core$pr_on.invoke(core.clj:3392)
at clojure.core$pr.invoke(core.clj:3404)
at clojure.lang.AFn.applyToHelper(AFn.java:154)
at clojure.lang.RestFn.applyTo(RestFn.java:132)
at clojure.core$apply.invoke(core.clj:624)
at clojure.core$prn.doInvoke(core.clj:3437)
at clojure.lang.RestFn.applyTo(RestFn.java:137)
at clojure.core$apply.invoke(core.clj:624)
at clojure.core$println.doInvoke(core.clj:3457)
at clojure.lang.RestFn.invoke(RestFn.java:408)
at clojure.main$repl_caught.invoke(main.clj:158)
at 
clojure.tools.nrepl.middleware.interruptible_eval$evaluate$fn__7569$fn__7582.invoke(interruptible_eval.clj:76)
at clojure.main$repl$fn__6634.invoke(main.clj:259)
at clojure.main$repl.doInvoke(main.clj:257)
at clojure.lang.RestFn.invoke(RestFn.java:1096)
at 
clojure.tools.nrepl.middleware.interruptible_eval$evaluate$fn__7569.invoke(interruptible_eval.clj:56)
at clojure.lang.AFn.applyToHelper(AFn.java:152)
at clojure.lang.AFn.applyTo(AFn.java:144)
at clojure.core$apply.invoke(core.clj:624)
at clojure.core$with_bindings_STAR_.doInvoke(core.clj:1862)
at clojure.lang.RestFn.invoke(RestFn.java:425)
at 
clojure.tools.nrepl.middleware.interruptible_eval$evaluate.invoke(interruptible_eval.clj:41)
at 
clojure.tools.nrepl.middleware.interruptible_eval$interruptible_eval$fn__7610$fn__7613.

Re: lein 2.4.3 repl outside project?

2014-08-28 Thread Arie van Wingerden
I've got the same error.
Windows 8.1
Leiningen 2.4.3 on Java 1.8.0_20 Java HotSpot(TM) Client VM


2014-08-28 17:28 GMT+02:00 Tim Visher :

> Anyone else get this error?
>
> 🐈 lein repl
> Downloading Leiningen to
> /Users/tim/.lein/self-installs/leiningen-2.4.3-standalone.jar now...
>   % Total% Received % Xferd  Average Speed   TimeTime Time
> Current
>  Dload  Upload   Total   SpentLeft
> Speed
> 100   3550   3550 0889  0 --:--:-- --:--:-- --:--:--
>  889
> 100 14.2M  100 14.2M0 0  2469k  0  0:00:05  0:00:05 --:--:--
> 3166k
> nREPL server started on port 52343 on host 127.0.0.1 - nrepl://
> 127.0.0.1:52343
> REPL-y 0.3.2, nREPL 0.2.0-beta5Exception in thread "nREPL-worker-0"
> NoSuchMethodError clojure.tools.nrepl.StdOutBuffer.length()I
> clojure.tools.nrepl.middleware.session/session-out/fn--7630
> (session.clj:43)NoSuchMethodError
> clojure.tools.nrepl.StdOutBuffer.length()I
> clojure.tools.nrepl.middleware.session/session-out/fn--7630
> (session.clj:43)java.lang.NoSuchMethodError:
> clojure.tools.nrepl.StdOutBuffer.length()I
> at
> clojure.tools.nrepl.middleware.session$session_out$fn__7630.doInvoke(session.clj:43)
> at clojure.lang.RestFn.invoke(RestFn.java:460)
> at
> clojure.tools.nrepl.middleware.session.proxy$java.io.Writer$ff19274a.write(Unknown
> Source)
> at java.io.PrintWriter.write(PrintWriter.java:456)
> at java.io.PrintWriter.write(PrintWriter.java:473)
> at clojure.core$fn__5471.invoke(core_print.clj:191)
> at clojure.lang.MultiFn.invoke(MultiFn.java:231)
> at clojure.core$pr_on.invoke(core.clj:3392)
> at clojure.core$pr.invoke(core.clj:3404)
> at clojure.lang.AFn.applyToHelper(AFn.java:154)
> at clojure.lang.RestFn.applyTo(RestFn.java:132)
> at clojure.core$apply.invoke(core.clj:624)
> at clojure.core$prn.doInvoke(core.clj:3437)
> at clojure.lang.RestFn.applyTo(RestFn.java:137)
> at clojure.core$apply.invoke(core.clj:624)
> at clojure.core$println.doInvoke(core.clj:3457)
> at clojure.lang.RestFn.invoke(RestFn.java:408)
> at clojure.main$repl_caught.invoke(main.clj:158)
> at
> clojure.tools.nrepl.middleware.interruptible_eval$evaluate$fn__7569$fn__7582.invoke(interruptible_eval.clj:76)
> at clojure.main$repl$fn__6634.invoke(main.clj:259)
> at clojure.main$repl.doInvoke(main.clj:257)
> at clojure.lang.RestFn.invoke(RestFn.java:1096)
> at
> clojure.tools.nrepl.middleware.interruptible_eval$evaluate$fn__7569.invoke(interruptible_eval.clj:56)
> at clojure.lang.AFn.applyToHelper(AFn.java:152)
> at clojure.lang.AFn.applyTo(AFn.java:144)
> at clojure.core$apply.invoke(core.clj:624)
> at clojure.core$with_bindings_STAR_.doInvoke(core.clj:1862)
> at clojure.lang.RestFn.invoke(RestFn.java:425)
> at
> clojure.tools.nrepl.middleware.interruptible_eval$evaluate.invoke(interruptible_eval.clj:41)
> at
> clojure.tools.nrepl.middleware.interruptible_eval$interruptible_eval$fn__7610$fn__7613.invoke(interruptible_eval.clj:171)
> at clojure.core$comp$fn__4192.invoke(core.clj:2402)
> at
> clojure.tools.nrepl.middleware.interruptible_eval$run_next$fn__7603.invoke(interruptible_eval.clj:138)
> at clojure.lang.AFn.run(AFn.java:22)
> at
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at java.lang.Thread.run(Thread.java:745)
> #
>
> Error loading namespace; falling back to userException in thread
> "nREPL-worker-2" java.lang.NoSuchMethodError:
> clojure.tools.nrepl.StdOutBuffer.length()I
> at
> clojure.tools.nrepl.middleware.session$session_out$fn__7630.doInvoke(session.clj:43)
> at clojure.lang.RestFn.invoke(RestFn.java:460)
> at
> clojure.tools.nrepl.middleware.session.proxy$java.io.Writer$ff19274a.write(Unknown
> Source)
> at java.io.PrintWriter.write(PrintWriter.java:456)
> at java.io.PrintWriter.write(PrintWriter.java:473)
> at clojure.core$fn__5471.invoke(core_print.clj:191)
> at clojure.lang.MultiFn.invoke(MultiFn.java:231)
> at clojure.core$pr_on.invoke(core.clj:3392)
> at clojure.core$pr.invoke(core.clj:3404)
> at clojure.lang.AFn.applyToHelper(AFn.java:154)
> at clojure.lang.RestFn.applyTo(RestFn.java:132)
> at clojure.core$apply.invoke(core.clj:624)
> at clojure.core$prn.doInvoke(core.clj:3437)
> at clojure.lang.RestFn.applyTo(RestFn.java:137)
> at clojure.core$apply.invoke(core.clj:624)
> at clojure.core$println.doInvoke(core.clj:3457)
> at clojure.lang.RestFn.invoke(RestFn.java:408)
> at clojure.main$repl_caught.invoke(main.clj:158)
> at
> clojure.tools.nrepl.middleware.interruptible_eval$evaluate$fn__7569$fn__7582.invoke(interruptible_eval.clj:76)
> at clojure.main$repl$fn__6634.invoke(main.clj:259)
> at clojure.main$repl.doInvoke(main.clj:257)
> at clojure.lang.RestFn.invoke(RestFn.java:1096)
> at
> clojure.tools.nrepl.middleware.interruptible_eval$evaluate$fn__7569.invoke(interruptible_eval.clj:56)
> at clojure.lang.AFn.applyToHelper(AFn.java:152)
> at clojure.lang.AFn.applyTo(AFn.java:144)
> at cl

Re: lein 2.4.3 repl outside project?

2014-08-28 Thread John Gabriele
On Thursday, August 28, 2014 11:29:44 AM UTC-4, Tim Visher wrote:
>
> Anyone else get this error? 
>
>
>
Yup. I think it's .

-- 
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: lein 2.4.3 repl outside project?

2014-08-28 Thread john walker
Right, so if you're having this problem, just do.

lein upgrade 2.4.2

Cider users might also get this behavior and not know it - weird things 
like pretty printing not working are related to this issue.

On Thursday, August 28, 2014 9:01:40 AM UTC-7, John Gabriele wrote:
>
> On Thursday, August 28, 2014 11:29:44 AM UTC-4, Tim Visher wrote:
>>
>> Anyone else get this error? 
>>
>>
>>
> Yup. I think it's .
>

-- 
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: lein 2.4.3 repl outside project?

2014-08-28 Thread Tim Visher
Looks like it. Good to know it's been 'fixed'.

On Thu, Aug 28, 2014 at 12:35 PM, john walker  wrote:
> Right, so if you're having this problem, just do.
>
> lein upgrade 2.4.2
>
> Cider users might also get this behavior and not know it - weird things like
> pretty printing not working are related to this issue.
>
>
> On Thursday, August 28, 2014 9:01:40 AM UTC-7, John Gabriele wrote:
>>
>> On Thursday, August 28, 2014 11:29:44 AM UTC-4, Tim Visher wrote:
>>>
>>> Anyone else get this error?
>>>
>>>
>>
>> Yup. I think it's .
>
> --
> 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.


Clojure in financial services

2014-08-28 Thread Stuart Halloway
Many companies are using Clojure in financial services.  Some of these are
easily visible on the web, and I am aware of many more through
private/NDAed conversations.

I am working to gather experience reports, which I will then compile and
share on the web.  If you have experiences using Clojure in financial
services, and are able to share them (either by name or anonymously),
please let me know.  On-list or off-list is fine.

Thanks!
Stu Halloway
Cognitect

-- 
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.


[ANN] New release 0.27.1 of Counterclockwise

2014-08-28 Thread Laurent PETIT
Counterclockwise the Eclipse Clojure development tool.


Counterclockwise 0.27.1 has just been released.

Contains 2 important bug fixes. All users are expectec to update from
0.27.0 ASAP

Please see the Changelog for detailed explanations:

Release Note
===

http://doc.ccw-ide.org/ChangeLog.html#_changes_between_counterclockwise_0_27_0_and_0_27_1

Install
===

Installation instructions:

http://doc.ccw-ide.org/documentation.html#_install_counterclockwise

Cheers,

-- 
Laurent Petit

-- 
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] New release 0.27.1 of Counterclockwise

2014-08-28 Thread Ivan L
Thanks Laurent and team!

On Thursday, August 28, 2014 5:49:32 PM UTC-4, Laurent PETIT wrote:
>
> Counterclockwise the Eclipse Clojure development tool.
>
>
> Counterclockwise 0.27.1 has just been released.
>
> Contains 2 important bug fixes. All users are expectec to update from 
> 0.27.0 ASAP
>
> Please see the Changelog for detailed explanations: 
>
> Release Note
> ===
>
>
> http://doc.ccw-ide.org/ChangeLog.html#_changes_between_counterclockwise_0_27_0_and_0_27_1
>
> Install
> ===
>
> Installation instructions:
>
> http://doc.ccw-ide.org/documentation.html#_install_counterclockwise
>
> Cheers,
>
> -- 
> Laurent Petit
>  

-- 
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: idiomatic filter-not or inverting predicate

2014-08-28 Thread Andy C
Hi,

Thanks a lot for hints. "remove" was what I needed.

This
(filter (complement #(apply = %)) '([1 2] [1 1]))

also looks very clean now.

Regards,
Andy



On Thu, Aug 21, 2014 at 1:07 PM, Daniel Solano Gómez 
wrote:

> On Thu Aug 21 13:01 2014, Andy C wrote:
> > Hi,
> >
> >
> > I was wondering what is the nicest way to do filter-not in Clojure. Here
> > are 3 expressions:
> >
> > user=> (filter #(apply = %) '([1 2] [1 1]))
> > ([1 1])
> > user=> (filter #(apply not= %) '([1 2] [1 1]))
> > ([1 2])
> > user=> (filter #(not (apply = %)) '([1 2] [1 1]))
> > ([1 2])
> >
> >
> > First one is just a base filtering. Second is taking advantage of having
> > inverted predicate. Now let's assume that we have only a "positive"
> > predicate, hence we would have to invert it by hand. That leads me to 3rd
> > expression above.
> >
> > I was wondering though is it is possible to somehow get "not" closer to
> > "=", so the fact that we invert it is more obvious ...
> >
> > Is it possible to do that? Or perhaps there is an easier way to code it
> up
> > all together ?
>
> What about 'remove' instead of 'filter'?
>
> Sincerely,
>
> Daniel
>
> >
> > Thx,
> > Andy
> >
> > --
> > 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.
>

-- 
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.