Re: Intro to Live Programming with Overtone

2011-04-24 Thread Sam Aaron
Hi Devin, On 25 Apr 2011, at 00:57, Devin Walters wrote: > You can get similar effects with highlight tail mode in emacs. The elisp in > there might give you some ideas on how to get some of the glow effects. Oh nice, I hadn't seen highlight tail mode before. I do use eval-sexp-fu.el (http://

Dfw meetup

2011-04-24 Thread ch...@rubedoinc.com
I work in Addison @ beltline and Addison rd. I have office space and would be willing to volunteer it to get started. I would suggest we just pick a night (Monday or Wednesday ?) and just start a group. The dfw ruby group meets on Tuesday at interprise in Addison I am sure some of those folks would

Re: swank-cdt: Using Slime with the Clojure Debugging Toolkit

2011-04-24 Thread Devin Walters
Fantastic news. This greatly simplifies the setup process. Thanks George, Dw Sent via mobile On Apr 24, 2011, at 6:14 PM, George Jahad wrote: > Swank-cdt is a port of slime/swank-clojure to use the CDT as a > debugger backend. > > With swank-cdt, you can step, set breakpoints, catch exceptio

Re: Intro to Live Programming with Overtone

2011-04-24 Thread Devin Walters
You can get similar effects with highlight tail mode in emacs. The elisp in there might give you some ideas on how to get some of the glow effects. reich-score is really impressive. Looking forward to playing with the new features. Happy Hacking, Sent via mobile On Apr 24, 2011, at 5:58 PM,

New contrib releases

2011-04-24 Thread Aaron Bedra
Hi everyone, I have moved and released some c.c libraries into their new homes. * c.c.def and c.c.classpath are now combined under clojure.java.classpath and version 0.1.0 is available on maven central * c.c.find-namespaces is now clojure.tools.namespaces. I released version 0.1.0 just a few

swank-cdt: Using Slime with the Clojure Debugging Toolkit

2011-04-24 Thread George Jahad
Swank-cdt is a port of slime/swank-clojure to use the CDT as a debugger backend. With swank-cdt, you can step, set breakpoints, catch exceptions, and eval clojure expressions, in the context of the current stack frame, from within the sldb buffer. Install by adding a few lines to your project.clj

Re: Intro to Live Programming with Overtone

2011-04-24 Thread Sam Aaron
On 24 Apr 2011, at 23:49, rob levy wrote: > Wow, that is awesome, I am definitely going to have to play with that. Thanks :-) Hopefully we'll see you on the Overtone mailing list somepoint soon... > As a side note, what did you write or use to configure your emacs in that > way? The Live Co

Re: Intro to Live Programming with Overtone

2011-04-24 Thread rob levy
(I mean, the visual effects in particular) On Sun, Apr 24, 2011 at 6:49 PM, rob levy wrote: > Wow, that is awesome, I am definitely going to have to play with that. As > a side note, what did you write or use to configure your emacs in that way? > > On Sun, Apr 24, 2011 at 8:01 AM, Sam Aaron w

Re: Intro to Live Programming with Overtone

2011-04-24 Thread rob levy
Wow, that is awesome, I am definitely going to have to play with that. As a side note, what did you write or use to configure your emacs in that way? On Sun, Apr 24, 2011 at 8:01 AM, Sam Aaron wrote: > Hey there, > > you may have heard about Overtone - the Clojure front-end to SuperCollider > s

Re: Intro to Live Programming with Overtone

2011-04-24 Thread Nicolas Buduroi
Overtone really looks awesome, looking forward to use it! Thanks for the video. -- 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 p

Re: Intro to Live Programming with Overtone

2011-04-24 Thread David Nolen
Great video. Thanks for sharing this. David On Sun, Apr 24, 2011 at 8:01 AM, Sam Aaron wrote: > Hey there, > > you may have heard about Overtone - the Clojure front-end to SuperCollider > server that we've been working on for the past year or so. However, perhaps > you've not seen much of it -

Re: declare in other namespaces

2011-04-24 Thread George Jahad
> Spaghetti code ? most definitely. use it a lot and you'll almost certainly end up with a "big ball of mud". -- 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 mem

Re: declare in other namespaces

2011-04-24 Thread George Jahad
On Apr 24, 3:33 am, Ken Wesson wrote: > On Sun, Apr 24, 2011 at 5:17 AM, George Jahad > > Is there a reason for all the conversion to string and back? severe lack of "hammock driven development"? the "clojure.core" is also redundant within syntax-quote, making it: (defmacro remote-declare [n]

Re: clojure.contrib.sql => clojure.java.jdbc - looking for feedback!

2011-04-24 Thread Michael Wood
On 23 April 2011 23:53, Nicolas Buduroi wrote: > On Saturday, 23 April 2011 17:33:48 UTC-4, Sean Corfield wrote: >> >> Well, not all DB stropping approaches are simply (str q ident q) - >> >> there's also select [name] from [table] style quoting and that part is >> >> DB vendor specific I believe?

Intro to Live Programming with Overtone

2011-04-24 Thread Sam Aaron
Hey there, you may have heard about Overtone - the Clojure front-end to SuperCollider server that we've been working on for the past year or so. However, perhaps you've not seen much of it - and if not perhaps you'd like to? Well, I've just finished putting together a very short (4 min) fast-pa

Re: declare in other namespaces

2011-04-24 Thread Laurent PETIT
2011/4/24 George Jahad > so as Rich mentions in hacker news, you can get declare to work in > other namespaces which does convert the circular dependencies issue > from a compile time problem to a potential run-time one. > > The definition is pretty much what you would expect: > > (defmacro remot

Overtone Live Coding Emacs Config

2011-04-24 Thread Sam Aaron
Hey there, I just thought I'd mention I've created an Emacs config template which, although targeted for live coding with Overtone, would serve as a pretty useful config base for general Clojure hackery: https://github.com/overtone/live-coding-emacs The highlights are as follows: * Clojure Mo

Re: declare in other namespaces

2011-04-24 Thread Ken Wesson
On Sun, Apr 24, 2011 at 5:17 AM, George Jahad wrote: > so as Rich mentions in hacker news, you can get declare to work in > other namespaces which does convert the circular dependencies issue > from a compile time problem to a potential run-time one. > > The definition is pretty much what you woul

declare in other namespaces

2011-04-24 Thread George Jahad
so as Rich mentions in hacker news, you can get declare to work in other namespaces which does convert the circular dependencies issue from a compile time problem to a potential run-time one. The definition is pretty much what you would expect: (defmacro remote-declare [name] "declares the supp

Re: clojure.contrib.sql => clojure.java.jdbc - looking for feedback!

2011-04-24 Thread Shantanu Kumar
Just to point out what's not supported by resultset-seq: 1. Flexible conversion of column label to a Clojure equivalent. 2. Handling of duplicate column labels in a resultset. For example, this is a perfectly valid SQL statement in MySQL: SELECT productId, productId+4 as productId FROM `t_product

Re: Start Clojure programs from Eclipse

2011-04-24 Thread Ken Wesson
On Sun, Apr 24, 2011 at 3:25 AM, Mike Meyer wrote: [massive snip] >> Ah, I get it. You're arguing because you have some kind of *personal* >> issue, rather than for any logical reason. > > Yup. Well, then. >> > Sure, a hardware glitch that affects the OS means you should reboot >> > the system.

Re: Start Clojure programs from Eclipse

2011-04-24 Thread Mike Meyer
On Sun, 24 Apr 2011 01:07:45 -0400 Ken Wesson wrote: > On Sun, Apr 24, 2011 at 12:01 AM, Mike Meyer wrote: > > On Sat, 23 Apr 2011 23:42:23 -0400 > > Ken Wesson wrote: > > > >> On Sat, Apr 23, 2011 at 11:35 PM, Mike Meyer wrote: > >> > On Sat, 23 Apr 2011 23:19:53 -0400 > >> > Ken Wesson wrote