Re: how can I count lines of code?

2013-03-27 Thread Nick Ward
Not sure if this is the correct place to be asking this, but sed '/^\s*$/d;/^\s*;/d' path/to/your/file | wc -l On Wed, Mar 27, 2013 at 7:36 PM, larry google groups lawrencecloj...@gmail.com wrote: I am curious, is there a simple command line script I could use to count lines of code? Or is

Re: A ClojureScript One Question: Why is so much html created on the client side.

2012-08-10 Thread Nick Ward
I think it depends on the style of web site you are making. On the more GMail style 'web app' end of the spectrum, rendering/templating on the client side means you don't have to inundate the server with AJAX requests (for example, if different items are cached upon the initial connection). This