Re: New release of Light Table (which is now open source!)

2014-01-09 Thread Freddy Potargent
Hi everybody, after lurking around for quite a while it's time for some active involvement. :-) First, I have absolutely no interest in having executable test-out-this-code snippets interspersed with the actual program code, unless it is a formal test that is intended to stick around and

Re: New release of Light Table (which is now open source!)

2014-01-09 Thread Jozef Wagner
Congratulations on releasing it to the community!. What surprises me is that there are no docstrings and very few comments. I wonder how you manage such codebase within a team. JW On Wednesday, January 8, 2014 7:19:59 PM UTC+1, Chris Granger wrote: Hey Folks, We did a big release today

Re: New release of Light Table (which is now open source!)

2014-01-09 Thread Chris Granger
BOT is actually quite self documenting. Cheers, Chris. On Thu, Jan 9, 2014 at 7:45 AM, Jozef Wagner jozef.wag...@gmail.com wrote: Congratulations on releasing it to the community!. What surprises me is that there are no docstrings and very few comments. I wonder how you manage such

New release of Light Table (which is now open source!)

2014-01-08 Thread Chris Granger
Hey Folks, We did a big release today which includes a lot of love for Clojure! We also released all the source to Light Table, which has to be one of the largest full ClojureScript applications out there. To read more about all the goodness check out my blog post:

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread David Nolen
Congrats! On Wed, Jan 8, 2014 at 1:19 PM, Chris Granger ibdk...@gmail.com wrote: Hey Folks, We did a big release today which includes a lot of love for Clojure! We also released all the source to Light Table, which has to be one of the largest full ClojureScript applications out there. To

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Baishampayan Ghose
LightTable is indeed, a remarkable piece of software. Really shows what ClojureScript is capable of. The code is very beautiful too. Congratulations, Chris! ~BG On Wed, Jan 8, 2014 at 11:49 PM, Chris Granger ibdk...@gmail.com wrote: Hey Folks, We did a big release today which includes a lot of

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Mark Engelberg
As one of the initial kickstarter supporters for LightTable, every time a new release comes out, I eagerly download and check out the Clojure support in the latest version. I'm always surprised to see there still isn't a decent REPL. There's still the same instarepl proof-of-concept that came

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Chris Granger
There's still the same instarepl proof-of-concept that came with the earliest alphas, which doesn't really connect with projects That's not true at all :) The instarepl will work with any nrepl client you're connected to. By default if you don't have a connection to a project, it will just open

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Peter Mancini
I'm using regular editing windows as a repl. I turn off live most of the time as I don't think it's useful - I don't type fast enough before an unlimited take goes to work on an unlimited lazy collection... Everything else about it is great - a console is available to test println messages.

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Benjamin Yu
Grats! I love the pain points that light table solves for me. On Wed, Jan 8, 2014 at 12:36 PM, Peter Mancini pe...@cicayda.com wrote: I'm using regular editing windows as a repl. I turn off live most of the time as I don't think it's useful - I don't type fast enough before an unlimited take

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Lee Spector
On Jan 8, 2014, at 3:49 PM, Benjamin Yu wrote: Grats! I love the pain points that light table solves for me. The inline documentation is pretty great once I discovered how to invoke it (which took a while... and while I really love a lot of the ideas in LightTable I have to say that it

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Lee Spector
On Jan 8, 2014, at 3:58 PM, Lee Spector wrote: The inline documentation is pretty great once I discovered how to invoke it (which took a while... and while I really love a lot of the ideas in LightTable I have to say that it always takes me a while to figure out how to do basic things in

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Lee Spector
On Jan 8, 2014, at 4:04 PM, Lee Spector wrote: Also, any way to see a stack trace after an exception? (.printStackTrace *e) doesn't do it. Ah -- sorry to be writing so quickly. I've discovered that clicking on the exception appears to give a stack trace. Nice! (But again, wasn't obvious

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Mark Engelberg
Ok, I appreciate the suggestions and I'll give it another try with these comments in mind. You still need to create and manage projects from a command line with lein, right? -- -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group,

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Jamie Brandon
You can disable the bracket insertion by disabling the keys that trigger it. Add this to your user.keymap: :- {:editor.keys.normal {\ [(:editor.repeat-pair \)] ( [(:editor.open-pair ()] ) [(:editor.close-pair ))] [

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread gvim
Chris Thanks for a great product. Can you help me out? I just installed the latest 0.5.21/binary 0.8.0-rc1 on OS X Mountain Lion and every time it starts I get the same message - There's been a binary update!. Can't get rid of it. gvim On 08/01/2014 18:19, Chris Granger wrote: Hey

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Chris Granger
you have to do what the popup says :) Because this is a binary update you have to download the latest Light Table from www.lighttable.com Cheers, Chris. On Wed, Jan 8, 2014 at 2:59 PM, gvim gvi...@gmail.com wrote: Chris Thanks for a great product. Can you help me out? I just installed the

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Sean Corfield
On Jan 8, 2014, at 11:01 AM, Mark Engelberg mark.engelb...@gmail.com wrote: So for those of you who are actually using LightTable for development, how do you function without a REPL? What am I missing? It has a perfectly good REPL and the ability to evaluate live code anywhere on the REPL

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread gvim
Chris I did that. I had 0.5.20 installed earlier. gvim On 08/01/2014 23:03, Chris Granger wrote: you have to do what the popup says :) Because this is a binary update you have to download the latest Light Table from www.lighttable.com http://www.lighttable.com Cheers, Chris. On Wed, Jan

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Chris Granger
ah try hard refreshing the lighttable.com site, sounds like you're downloading an older version maybe? This should be the address of the download for mac: http://d35ac8ww5dfjyg.cloudfront.net/playground/bins/0.6.0/LightTableMac.zip Cheers, Chris. On Wed, Jan 8, 2014 at 3:21 PM, gvim

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Mimmo Cosenza
On Jan 8, 2014, at 8:01 PM, Mark Engelberg mark.engelb...@gmail.com wrote: So for those of you who are actually using LightTable for development, how do you function without a REPL? If you are on the TDD wagon, there is a very good introduction to TDD with LT at the following URL:

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Lee Spector
On Jan 8, 2014, at 5:45 PM, Jamie Brandon wrote: You can disable the bracket insertion by disabling the keys that trigger it. Add this to your user.keymap: :- {:editor.keys.normal {\ [(:editor.repeat-pair \)] ( [(:editor.open-pair ()] )

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Sean Corfield
On Jan 8, 2014, at 3:38 PM, Lee Spector lspec...@hampshire.edu wrote: FWIW my perspective (esp as a teacher of newbies) it'd be nice if there was some sort of simple switch for this. It's sort of cumbersome to have to discover this, find the file, and add a bunch of code to get the keyboard

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Sean Corfield
On Jan 8, 2014, at 1:35 PM, Mark Engelberg mark.engelb...@gmail.com wrote: You still need to create and manage projects from a command line with lein, right? Correct. Until someone builds a plugin for that :) Sean Corfield -- (904) 302-SEAN An Architect's View -- http://corfield.org/

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Mark Engelberg
On Wed, Jan 8, 2014 at 12:45 PM, Sean Corfield s...@corfield.org wrote: It has a perfectly good REPL and the ability to evaluate live code anywhere on the REPL canvas is very useful since you can sketch out multiple pieces of related code side-by-side. I guess I don't understand why your

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Lee Spector
On Jan 8, 2014, at 8:50 PM, Sean Corfield wrote: On Jan 8, 2014, at 3:38 PM, Lee Spector lspec...@hampshire.edu wrote: FWIW my perspective (esp as a teacher of newbies) it'd be nice if there was some sort of simple switch for this. It's sort of cumbersome to have to discover this, find the

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Tom Brooke
Looks fantastic - Thanks On Wednesday, January 8, 2014 1:19:59 PM UTC-5, Chris Granger wrote: Hey Folks, We did a big release today which includes a lot of love for Clojure! We also released all the source to Light Table, which has to be one of the largest full ClojureScript applications

Re: New release of Light Table (which is now open source!)

2014-01-08 Thread Stan Dyck
On 01/08/2014 06:10 PM, Mark Engelberg wrote: When I fired up Light Table a while back, I felt completely hamstrung -- I couldn't do anything the way I ordinarily would do it. The notion of executing statements that live in a file didn't feel anything like the workflow I was used to. It