[ClojureScript] Re: Is there a revision tool for ClojureScript

2016-03-10 Thread Benjamin Dreux
Le jeudi 10 mars 2016 06:44:37 UTC-5, Jiyin Yiyong a écrit :
> Webpack provides built-in revision syntax to add chunk hash into it's file 
> name. And file can be put on to CDN server without worries. Also, there's 
> code splitting for multiple pages with automatic analysing of common code.
> 
> I want to use ClojureScript, but how about this solved problems?

About the multiple pages google closure provide code motion:
https://github.com/clojure/clojurescript/wiki/Compiler-Options#modules

On the topic of hash in file names, I don't have any answer, sorry

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at https://groups.google.com/group/clojurescript.


[ClojureScript] Re: Études for ClojureScript: Chapter 8 review, please?

2015-08-14 Thread Benjamin Dreux
Le jeudi 13 août 2015 23:53:11 UTC-4, J David Eisenberg a écrit :
 I have written the introduction to Chapter 8 (Asynchronous processes), but I 
 am not sure if the example programs are reasonable. The examples will lead 
 into an étude to implement the card game war with the computer playing 
 against itself via asynchronous processes.
 
 I would appreciate it if you-all could take a look at it and make suggestions 
 or comments. (I'm not confident I'm anywhere near on the right track, so I'm 
 OK with feedback like OMG WTF LOL)
 
 Link is http://catcode.com/etudes-for-clojurescript/

Just scanning quick, in the epub version at page 12 there a numbered list.
But we can't see the numbers.

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
ClojureScript group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.


Re: [ClojureScript] WebAssembly - perhaps of future interest to cljs compiler

2015-06-19 Thread Benjamin Dreux
I don't really get it's important for a language like cljs to have access to 
the host gc before thinking about emiting wasm. Can you explain your view on 
this?

In you opinion, does all language that use a gced vm will wait for this?

Le jeudi 18 juin 2015 10:43:10 UTC-4, David Nolen a écrit :
 It's an interesting development but until there is a story for interacting 
 with host GC this isn't relevant for ClojureScript. I would wager its going 
 to be 3 or 4 years before WebAssembly has the features necessary to make it 
 an attractive compile target for ClojureScript.
 
 
 On Thu, Jun 18, 2015 at 4:09 AM, Marc Fawzi marc@gmail.com wrote:
 Are there any plans for Google Closure compiler to emit WebAssembly (LLVM IR 
 or whatever that is...) ?
 
 
 
 Don't mean to sound banal but this is really a key thing to discuss about the 
 future of CLJS. I bet *someone* is thinking about it :)
 
 
 
 Sent from my iPhone
 
 
 
 
 
  On Jun 17, 2015, at 8:05 PM, Dave Sann dave...@gmail.com wrote:
 
 
 
  https://brendaneich.com/2015/06/from-asm-js-to-webassembly/
 
  https://news.ycombinator.com/item?id=9732827
 
 
 
  --
 
  Note that posts from new members are moderated - please be patient with 
  your first post.
 
  ---
 
  You received this message because you are subscribed to the Google Groups 
  ClojureScript group.
 
  To unsubscribe from this group and stop receiving emails from it, send an 
  email to clojurescrip...@googlegroups.com.
 
  To post to this group, send email to clojur...@googlegroups.com.
 
  Visit this group at http://groups.google.com/group/clojurescript.
 
 
 
 --
 
 Note that posts from new members are moderated - please be patient with your 
 first post.
 
 ---
 
 You received this message because you are subscribed to the Google Groups 
 ClojureScript group.
 
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to clojurescrip...@googlegroups.com.
 
 To post to this group, send email to clojur...@googlegroups.com.
 
 Visit this group at http://groups.google.com/group/clojurescript.

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
ClojureScript group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.


Re: [ClojureScript] Re: A real clojurescript dedicated website

2015-05-06 Thread Benjamin Dreux
The way i do, is that i let the CI server propose me an id.
Which happen when you make a PR to the projet.

@Nolan the link you gave is a 404 right now, Can you make a new one please.

Le mercredi 6 mai 2015 08:28:23 UTC-4, Nolan Prescott a écrit :
 On 5/3/2015 10:07 PM, J David Eisenberg wrote:
  [snip]
 
  One other question: if I manually add an example, how can I generate an 
  identifier of the form Example#6a87de that is guaranteed to be different 
  from all the other example numbers?
 
 The chances of hitting on the same combination is something like 1 in
 2,176,782,336 (36^6). The hashes are generated by stripping a UUID4 down
 to 6 characters, which you can see here:
 https://github.com/cljsinfo/api-docs-report/blob/4eeca74caf7306bbe921d630380b2dac6bd97abd/resources/report/example-template.html
 , so while a collision is possible the chances are very low.

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
ClojureScript group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.


[ClojureScript] Re: A real clojurescript dedicated website

2015-05-01 Thread Benjamin Dreux
Le vendredi 1 mai 2015 13:06:50 UTC-4, Shaun LeBron a écrit :
 We are working on a website here:
 https://github.com/cljsinfo
 
 we're mainly working on docs right now:
 http://cljsinfo.github.io/api-docs-report/
 
 
 
 On Thursday, April 30, 2015 at 11:26:59 AM UTC-5, Benjamin Dreux wrote:
  Hi,
  
  I'm pretty new to Clojurescript. 
  And i feel a little bit weird the way to get information on the projet, 
  environment, etc
  
  I think staring would be easier if there was a reference point.
  
  I' aware that there is pretty much every thing I need could be found in 
  this wiki (https://github.com/clojure/clojurescript/wiki). But i'm looking 
  for something prettier, more graphical.
  
  Does this conversation already happened?
  Is this on purpose, to not replicate the clojure.org website?
  Am I the only one having this idea?

At the moment it look really promising.
What I've seen is really promising.

I'l give a  hand

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
ClojureScript group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.


Re: [ClojureScript] A real clojurescript dedicated website

2015-04-30 Thread Benjamin Dreux
Le jeudi 30 avril 2015 12:45:03 UTC-4, David Nolen a écrit :
 No plans at the moment for an official ClojureScript site. There are some 
 community led efforts underway which we whole-heartedly encourage!
 
 
 David
 
 
 On Thu, Apr 30, 2015 at 12:10 PM, Benjamin Dreux benji...@gmail.com wrote:
 Hi,
 
 
 
 I'm pretty new to Clojurescript.
 
 And i feel a little bit weird the way to get information on the projet, 
 environment, etc
 
 
 
 I think staring would be easier if there was a reference point.
 
 
 
 I' aware that there is pretty much every thing I need could be found in this 
 wiki (https://github.com/clojure/clojurescript/wiki). But i'm looking for 
 something prettier, more graphical.
 
 
 
 Does this conversation already happened?
 
 Is this on purpose, to not replicate the clojure.org website?
 
 Am I the only one having this idea?
 
 
 
 --
 
 Note that posts from new members are moderated - please be patient with your 
 first post.
 
 ---
 
 You received this message because you are subscribed to the Google Groups 
 ClojureScript group.
 
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to clojurescrip...@googlegroups.com.
 
 To post to this group, send email to clojur...@googlegroups.com.
 
 Visit this group at http://groups.google.com/group/clojurescript.

Glad to here this. Is there some address you can point me to?

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
ClojureScript group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.


[ClojureScript] A real clojurescript dedicated website

2015-04-30 Thread Benjamin Dreux
Hi,

I'm pretty new to Clojurescript. 
And i feel a little bit weird the way to get information on the projet, 
environment, etc

I think staring would be easier if there was a reference point.

I' aware that there is pretty much every thing I need could be found in this 
wiki (https://github.com/clojure/clojurescript/wiki). But i'm looking for 
something prettier, more graphical.

Does this conversation already happened?
Is this on purpose, to not replicate the clojure.org website?
Am I the only one having this idea?

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
ClojureScript group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.