Re: Full Disclojure - I Need Topics!

2010-02-05 Thread Seth
Laurent, Merci beaucoup! I have linked to the video. I will be presenting Clojure to the company I work for soon, and videos for Eclipse and NetBeans really help me out. The fewer times I mention Emacs the better, apparently :-| Seth On Feb 5, 12:10 am, Laurent PETIT laurent.pe...@gmail.com

Re: Full Disclojure - I Need Topics!

2010-02-04 Thread Alex Stoddard
Suggestion: meta-data in clojure, what it is, how to work with it, idiomatic uses. Thanks for the great series, Alex -- 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

Re: Full Disclojure - I Need Topics!

2010-02-04 Thread Glen Stampoultzis
On 25 January 2010 16:34, Sean Devlin francoisdev...@gmail.com wrote: Hello everyone, I'm having a blast making the Full Disclojure series. It's one the best projects I've had a chance to work on. However, there's going to be a problem soon. I only have a few more topics left before I run

Re: Full Disclojure - I Need Topics!

2010-02-04 Thread Greg
Here's a challenge for you - Monads. If you can clearly explain monads you'll be my hero. :-) Seconded. Plus the existing Clojure docs I'm able to find on monads seem to be totally out of date, the example code fails to run as well. - Greg On Feb 4, 2010, at 5:55 PM, Glen Stampoultzis

Re: Full Disclojure - I Need Topics!

2010-02-04 Thread Seth
Sean, The new installation videos look great -- I have linked to them from my company's intranet. Any plans for an installation video for Counterclockwise for Eclipse? It's neat of you to produce these videos in your spare time -- they are much appreciated! On Feb 4, 9:35 pm, Greg

Re: Full Disclojure - I Need Topics!

2010-02-04 Thread Sean Devlin
On Feb 4, 9:54 pm, Seth seth.schroe...@gmail.com wrote: Sean, The new installation videos look great -- I have linked to them from my company's intranet. Any plans for an installation video for Counterclockwise for Eclipse? Eclipse is on the to-do list. Keep your eyes open. It's neat of

Re: Full Disclojure - I Need Topics!

2010-01-27 Thread Joonas Pulakka
On Jan 27, 7:17 am, Mark Engelberg mark.engelb...@gmail.com wrote: Topic idea: What is the most elegant way to write a GUI in Clojure? (Swing?  JavaFX?)  Any great contrib libraries that make GUI programming noticeably easier? I have to mention MiGLayout (http://www.miglayout.com/) and its

Re: Full Disclojure - I Need Topics!

2010-01-27 Thread Julian Adams
+1 for debugging 2010/1/27 Joonas Pulakka joonas.pula...@gmail.com On Jan 27, 7:17 am, Mark Engelberg mark.engelb...@gmail.com wrote: Topic idea: What is the most elegant way to write a GUI in Clojure? (Swing? JavaFX?) Any great contrib libraries that make GUI programming noticeably

Re: Full Disclojure - I Need Topics!

2010-01-26 Thread Edmund Jackson
+1 defprotocol, deftype, reify On 26 Jan 2010, at 00:24, Jeff Rose wrote: Thanks a lot for the videos you've done so far. I watch them all. Here are some ideas for shows, from more Clojure centric to just interesting: * defprotocol, deftype, reify, ... * data-flow programming * pattern

Re: Full Disclojure - I Need Topics!

2010-01-26 Thread cej38
+1 for debugging I would add clojure.contrib.logging. -- 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 patient with your first

Re: Full Disclojure - I Need Topics!

2010-01-26 Thread Mike Meyer
On Sun, 24 Jan 2010 23:11:50 -0800 (PST) mac markus.gustavs...@gmail.com wrote: On 25 Jan, 06:50, Mark Engelberg mark.engelb...@gmail.com wrote: Debugging techniques, including: * How to make sense of Clojure's stack traces. * How to use Java debugging and profiling tools with Clojure.

Re: Full Disclojure - I Need Topics!

2010-01-26 Thread Benjamin Teuber
+1 for debugging (through swank-clojure, I hope) besides, rolling your own leiningen plugins -- 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 -

Re: Full Disclojure - I Need Topics!

2010-01-26 Thread Mark Engelberg
Topic idea: What is the most elegant way to write a GUI in Clojure? (Swing? JavaFX?) Any great contrib libraries that make GUI programming noticeably easier? -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to

Re: Full Disclojure - I Need Topics!

2010-01-25 Thread Joonas Pulakka
I would be interested in native / C interoperability; perhaps either (or both) of these libraries: http://github.com/bagucode/clj-native http://github.com/Chouser/clojure-jna And others, if there are similar ones. In general, the Clojure way of interacting with native code. Best Regards, Joonas

Re: Full Disclojure - I Need Topics!

2010-01-25 Thread Seth
* (ns) in depth, or at least why namespaces need at least one . * What's this error kit people keep talking about? duck streams? * Using Nailgun to avoid the JVM startup cost for tests in Leiningen (still in flight, see its group) * love, don't fear paredit (I really need this) Thanks for putting

Re: Full Disclojure - I Need Topics!

2010-01-25 Thread mac
On 25 Jan, 12:18, Joonas Pulakka joonas.pula...@gmail.com wrote: I would be interested in native / C interoperability; perhaps either (or both) of these libraries: http://github.com/bagucode/clj-native http://github.com/Chouser/clojure-jna And others, if there are similar ones. In general,

Re: Full Disclojure - I Need Topics!

2010-01-25 Thread Meikel Brandmeyer
Hi, On Jan 25, 8:58 am, rb raphi...@gmail.com wrote: * interacting with a database in general, and covering clojureql in particular Beware the redesign: the ClojureQL DSL is currently revised. The end result is not clear, yet. However it will change. Sincerely Meikel -- You received this

Re: Full Disclojure - I Need Topics!

2010-01-25 Thread Rock
I think I have a good topic. How about the intricacies of syntax-quotes and in particular, nested syntax-quotes? When I was first learning Lisp (Common Lisp), I had to struggle with nested syntax-quotes (backquotes) very much. That was until I read Alan Bawden's superb paper on the subject, and

Re: Full Disclojure - I Need Topics!

2010-01-25 Thread Adrian Cuthbertson
How about the intricacies of syntax-quotes and in particular, nested syntax-quotes? Yeah, +1. -- 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

Re: Full Disclojure - I Need Topics!

2010-01-25 Thread Sean Devlin
Rock, Could you please proved a link to Alan Bawden's paper? Thanks, Sean On Jan 25, 9:06 am, Rock rocco.ro...@gmail.com wrote: I think I have a good topic. How about the intricacies of syntax-quotes and in particular, nested syntax-quotes? When I was first learning Lisp (Common Lisp), I

Re: Full Disclojure - I Need Topics!

2010-01-25 Thread Rob Wolfe
Sean Devlin napisał(a): Rock, Could you please proved a link to Alan Bawden's paper? I guess Rock meant Quasiquotation in Lisp: https://eprints.kfupm.edu.sa/60346/1/60346.pdf BTW many thanks for your awesome videos. :) Br, Rob -- You received this message because you are subscribed to the

Re: Full Disclojure - I Need Topics!

2010-01-25 Thread Laurent PETIT
Not a precise subject, but something along the lines : here is how one would do stuff X in a classical mainstream OO language, and now here is how one would do same thing in lisp could help e.g. java devs cross the bridge. There's been a recent question on the ml regarding the management of big

Re: Full Disclojure - I Need Topics!

2010-01-25 Thread Rock
Yeah, Quasiquotation in Lisp https://eprints.kfupm.edu.sa/ 60346/1/60346.pdf, that's the one. I've already posted some material regarding syntax-quote in the Learning Clojure Wiki. As for Bawden's and Graham's tips, it basically all boils down to this (adapted from ACL by Graham): Syntax-quote

Re: Full Disclojure - I Need Topics!

2010-01-25 Thread Sean Devlin
Laurent, Which thread are you referring to? Sean On Jan 25, 11:45 am, Laurent PETIT laurent.pe...@gmail.com wrote: Not a precise subject, but something along the lines : here is how one would do stuff X in a classical mainstream OO language, and now here is how one would do same thing in lisp

Re: Full Disclojure - I Need Topics!

2010-01-25 Thread Rock
For anyone interested, I have just added the above material to the Learning Clojure Wiki. I hope you find it useful. Here's the link: http://en.wikibooks.org/w/index.php?title=Learning_Clojurestable=0shownotice=1#Nested_Syntax-quotes -- You received this message because you are subscribed to

Re: Full Disclojure - I Need Topics!

2010-01-25 Thread Laurent PETIT
2010/1/25 Sean Devlin francoisdev...@gmail.com: Laurent, Which thread are you referring to? Found it !, here : http://groups.google.com/group/clojure/browse_thread/thread/2cfb3335f3e5f940# Sean On Jan 25, 11:45 am, Laurent PETIT laurent.pe...@gmail.com wrote: Not a precise subject, but

Re: Full Disclojure - I Need Topics!

2010-01-25 Thread Jeff Rose
Thanks a lot for the videos you've done so far. I watch them all. Here are some ideas for shows, from more Clojure centric to just interesting: * defprotocol, deftype, reify, ... * data-flow programming * pattern matching * monads * performance tuning (unboxed numbers, type hints, ...?) * making

Full Disclojure - I Need Topics!

2010-01-24 Thread Sean Devlin
Hello everyone, I'm having a blast making the Full Disclojure series. It's one the best projects I've had a chance to work on. However, there's going to be a problem soon. I only have a few more topics left before I run out. No more topics, no more videos. This is where you come in. I'm

Re: Full Disclojure - I Need Topics!

2010-01-24 Thread Mark Engelberg
Debugging techniques, including: * How to make sense of Clojure's stack traces. * How to use Java debugging and profiling tools with Clojure. -- 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

Re: Full Disclojure - I Need Topics!

2010-01-24 Thread Mark Derricutt
I see you did one recently on Leiningen - how about a companion piece on the maven-clojure-plugin [1] and native maven ( covering automated test script generation/running, repl and slime integration ), or going completely experimental the polyglot maven clojure stuff ( adding dynamic scripting to

Re: Full Disclojure - I Need Topics!

2010-01-24 Thread abhi
* How to make sense of Clojure's stack traces. * How to use Java debugging and profiling tools with Clojure. 1+ -- 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

Re: Full Disclojure - I Need Topics!

2010-01-24 Thread mac
On 25 Jan, 06:50, Mark Engelberg mark.engelb...@gmail.com wrote: Debugging techniques, including: * How to make sense of Clojure's stack traces. * How to use Java debugging and profiling tools with Clojure. +1 for this. I haven't had the energy to try any debugging or profiling tools yet.

Re: Full Disclojure - I Need Topics!

2010-01-24 Thread Roman Roelofsen
2010/1/25 Mark Engelberg mark.engelb...@gmail.com: Debugging techniques, including: * How to make sense of Clojure's stack traces. * How to use Java debugging and profiling tools with Clojure. +1 -- You received this message because you are subscribed to the Google Groups Clojure group. To

Re: Full Disclojure - I Need Topics!

2010-01-24 Thread rb
On Jan 25, 6:34 am, Sean Devlin francoisdev...@gmail.com wrote: Hello everyone, I'm having a blast making the Full Disclojure series.  It's one the best projects I've had a chance to work on. However, there's going to be a problem soon.  I only have a few more topics left before I run out.