Re: [ClojureScript] [ANN] modern-cljs - 17th tutorial - REPLing with Enlive

2015-12-24 Thread Erlis Vidal
I'm using Virtual Box with XUbuntu, and everything runs smooth there. I've also installed boot on Windows but I haven't work there yet. Great work Mimmo, by the way, while working on the tutorial I've found 2 typos, where can I send you the corrections? Thanks for creating this! Erlis On Thu,

Re: [ANN] kabel 0.1.0 release

2015-12-24 Thread Zubair Quraishi
I like the idea of this. Isn't there anything similar already in Cljs and Clojure though? On Thursday, December 24, 2015 at 6:03:50 PM UTC+1, white...@polyc0l0r.net wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hello, > > I am happy to announce the first independent release of

Re: [ClojureScript] [ANN] modern-cljs - 17th tutorial - REPLing with Enlive

2015-12-24 Thread Mimmo Cosenza
Hi Erlis, the best way to correct typos is by using the pull request mechanics of github 1. fork the project from github User Interace 2. clone locally the forked project > git clone https://github.com/yourname/modern-cljs.git > > cd modern-cljs 3.

[ANN] kabel 0.1.0 release

2015-12-24 Thread Christian Weilbach
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, I am happy to announce the first independent release of kabel (German for wire or cable), a websocket library that is used by several of my projects. From the REAMDE: kabel is a minimal, modern connection library modelling a bidirectional

Re: [ClojureScript] [ANN] kabel 0.1.0 release

2015-12-24 Thread Mimmo Cosenza
nice! thanks mimmo > On 24 Dec 2015, at 18:03, Christian Weilbach wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hello, > > I am happy to announce the first independent release of kabel (German > for wire or cable), a websocket library that is used by

Re: [ANN] modern-cljs - 17th tutorial - REPLing with Enlive

2015-12-24 Thread Magomimmo
Hi Sven, it was not my intention to exclude anyone. It's just that I never used windows in my life (if I exclude a short period in which I used VisualJ++ because was amazingly faster than the Sun counterpart Java IDE (around 1997). I'll appreciate any contribution from anyone skilled in that

Re: [ANN] modern-cljs - 17th tutorial - REPLing with Enlive

2015-12-24 Thread Sven Richter
Also I just added a new doc issue: https://github.com/boot-clj/boot/issues/368 Am Donnerstag, 24. Dezember 2015 09:12:16 UTC+1 schrieb Sven Richter: > > Hi Mimmo, > > No problem, I was afraid that you are not aware of it. I guess a lot of > people are not. In fact there have been windows issues

Re: [ANN] modern-cljs - 17th tutorial - REPLing with Enlive

2015-12-24 Thread Sven Richter
Hi Mimmo, No problem, I was afraid that you are not aware of it. I guess a lot of people are not. In fact there have been windows issues made aware to the developers of boot for a long time: https://github.com/boot-clj/boot/issues?utf8=%E2%9C%93=is%3Aissue+is%3Aopen+windows If they work on

Re: [ClojureScript] Re: [ANN] modern-cljs - 17th tutorial - REPLing with Enlive

2015-12-24 Thread Mimmo Cosenza
yes, I saw it. As I have some free time I’ll add a note ato the series for windows users that suggest to use a virtual machine or docker while waiting for boot be able to run on windows too. cheers mimmo > On 24 Dec 2015, at 09:13, 'Sven Richter' via ClojureScript >

Re: [ClojureScript] [ANN] modern-cljs - 17th tutorial - REPLing with Enlive

2015-12-24 Thread Mimmo Cosenza
I wrote a warning note in the README.MD of the series, by suggesting to use virtualbox or docker to be able to follow the tutorial. I really do not have any MS Windows skill to be able to help anyone on those OSs. My best mimmo > On Dec 24, 2015, at 9:13 AM, 'Sven Richter' via ClojureScript

is it function print has bug?

2015-12-24 Thread Mian Pao
I just write a macro ``` (defmacro te [a b & c] `(print ~(a b c))) ``` and i run ``` (macroexpand '(te print 2 3 4)) ;=> (clojure.core/print (3 4)) ``` it get `(clojure.core/print (3 4))` not `(clojure.core/print nil)` iti is mean `(print 2 '(3 4))` return (3 4)? -- You received