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

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

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" t

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

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

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, s

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

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

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 i

[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/ChangeLo

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

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 wonder