Re: Newbie question

2016-09-04 Thread Charlie
Thanx Colin & James - got it now - Charlie On Sunday, September 4, 2016 at 5:31:40 PM UTC-4, Colin Yates wrote: > > This form allows the fn to have multiple arities. So if I call > (recursive-printer) it will 'invoke' ([] (recursive-printer 0)). If I call > (recursi

Newbie question

2016-09-04 Thread Charlie
I'm going through the Do Things: A Clojure Crash Course, and the following example (in REPL) is presented: (defn recursive-printer ([] (recursive-printer 0)) ([iteration] (println iteration) (if (> iteration 3) (println "Goodbye!") (recursive-printer (inc iteratio

Re: help on exercises of brave and feedback

2015-11-14 Thread Charlie Griefer
Check out http://clojurians.net <http://clojurians.net/>. -- Charlie Griefer <http://charlie.griefer.com/>http://charlie.griefer.com <http://charlie.griefer.com/> “Surrender to what is. Let go of what was. Have faith in what will be.” -- Sonia Ricotti -- You received this m

Re: CCW bug [SEVERE]

2014-10-28 Thread Charlie Griefer
As has been mentioned already, git != github. Really, if the risk of losing your changes to this file are enough to warrant the tirade that you’ve been on, it’s enough of a risk to warrant doing a git init in the directory. -- Charlie Griefer <http://charlie.griefer.com/>http://charlie.gr

Re: online courses for clojure?

2014-06-17 Thread Charlie Griefer
2/3 of this course is amazing. -- Charlie Griefer http://charlie.griefer.com "Give light, and the darkness will disappear of itself." -- Desiderius Erasmus -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send e

Re: Effective Clojure book?

2014-06-05 Thread Charlie Griefer
On Jun 4, 2014, at 6:30 PM, Mike Fikes wrote: > Are there any books yet that prescribe best practices for Clojure, à la > Meyers or Bloch? Not a book, but there is the Clojure Style Guide at https://github.com/bbatsov/clojure-style-guide -- Charlie Griefer http://charlie.griefer.com

Re: is there a way I can learn clojure with a lot of exercises

2014-04-16 Thread Charlie Griefer
xactly what you're asking for (exercises). But I'd start off with Clojure for the Brave and True, and as concepts start to click (or maybe even just before that), start working some of the 4Clojure exercises. -- Charlie Griefer http://charlie.griefer.com "Give light, and the

Re: is intellij idea a good ide for clojure development?

2013-07-26 Thread Charlie Griefer
tself some time during the first day. -- Charlie Griefer http://charlie.griefer.com "Give light, and the darkness will disappear of itself." -- Desiderius Erasmus -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this

Re: is intellij idea a good ide for clojure development?

2013-07-26 Thread Charlie Griefer
ular flavor of ice cream is good. Which is silly, because that's highly subjective. Unless you're asking about butter brickle ice cream. I mean c'mon. Who doesn't like butter brickle ice cream? -- Charlie Griefer http://charlie.griefer.com "Give light, and the darkness w

Re: FYI - Light Rail notes for Portland (fix)

2013-03-17 Thread Charlie Griefer
line alone. http://tinyurl.com/b2w43or Does that look right to anybody who might be more familiar with the area? It looks like a longer walk to the hotel from the station, but still only 0.3 miles. I'd prefer a longer walk to making a transfer on a light rail system that I'm not familiar w

Re: Interesting Light Table post

2013-03-01 Thread charlie
sage because you are subscribed to the Google Groups > "Clojure" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to clojure+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/groups/opt_out. > > &

Re: is intellij idea a good ide for clojure development?

2013-01-29 Thread Charlie Griefer
at off of the main topic of whether or not IntelliJ is a good idea for Clojure development, but if we're weighing perceived pros and cons of various options, this is still somewhat on-topic) :) -- Charlie Griefer http://charlie.griefer.com "Give light, and the darkness will disappear of itself.

Re: Clojure Literature

2013-01-19 Thread Charlie Griefer
e as epub from https://github.com/ieure/sicp and pdf from http://sicpebook.wordpress.com/ -- Charlie Griefer http://charlie.griefer.com "Give light, and the darkness will disappear of itself." -- Desiderius Erasmus -- You received this message because you are subscribed to the Goo

Re: emacs - how to wean me off the family of Java IDEs

2013-01-16 Thread Charlie Griefer
w directory, but new file works pretty well. -- Charlie Griefer http://charlie.griefer.com "Give light, and the darkness will disappear of itself." -- Desiderius Erasmus -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to t

Re: emacs - how to wean me off the family of Java IDEs

2013-01-16 Thread Charlie Griefer
your hands on the (proper) keys. A shell at least lets you continue to type your way around your directory structure to locate a file. A directory tree/project explorer would likely require grabbing the mouse and clicking down into various directories. It's what we're used to, yes… but i

Re: A bearded person, Clojure and JavaFX

2012-12-05 Thread charlie
What is the GUI for ? I'm not sure I'm happy about it, but I think most UI's are done in a browser now, and if you haven't checked out clojurescriptone.com yet I'd take a look. On Wed, Dec 5, 2012 at 5:38 PM, Christian Sperandio < christian.speran...@gmail.com> wrote: > Hi, > > I'm one of thos

Re: Job Opportunity (Java/Processing/Clojure)

2012-11-28 Thread charlie
And now I have a Christmas gift for my father in law. Cool product ( and keep using Clojure! ). On Wed, Nov 28, 2012 at 11:06 AM, Wyatt Niehaus wrote: > New York based artist Bradley Pitts is looking to hire a programmer to > continue the development of the Yearlight Calendar ( > www.yearlightc

Re: Request for a hint

2012-11-17 Thread Charlie Griefer
be pasted into the REPL and evaluated, but rather a high level example of how a particular function works. Hope that helps :) On Sat, Nov 17, 2012 at 5:46 PM, Charlie Griefer wrote: > On Sat, Nov 17, 2012 at 5:32 PM, Milen Ivanov wrote: >> Dear Mr. Chose, >> >> Thank you fo

Re: Request for a hint

2012-11-17 Thread Charlie Griefer
l and item, which BG did as: (def coll [1 2 3 4 5]) (def item 6) Now that "coll" and "item" exist, you can do (conj coll item), which is the same as doing (conj [1 2 3 4 5] 6). But you cannot simply do (conj coll item), and this is not a "bug" in the book, but rather

Re: Where did the idea of metadata come from?

2012-11-12 Thread charlie
Unless I'm totally mistaken about clojure's meta ( totally possible ) , Java's annotations play a similar role. JPA2 and Hibernate use this feature alot. Also neat fact about the perl taint. On Mon, Nov 12, 2012 at 3:11 PM, Meikel Brandmeyer wrote: > Hi, > > Am 12.11.2012 um 22:01 schrieb JvJ:

Re: [ANN] new book: "ClojureScript: Up and Running"

2012-11-08 Thread charlie
I look forward to my copy ( currently in the mail ) ! On Thu, Nov 8, 2012 at 12:07 PM, Stuart Sierra wrote: > > Already bought it weeks ago, like it, it's a concise recipe, right on > target. > > Aw, thanks! > > > > Disclaimer: I am not a blonde Stuart Sierra groupie :) > > Aw, shucks! ;) > > > -

Re: ANN Clojure documentation site (CDS) progress report for the week of October 28th, 2012

2012-10-31 Thread charlie
+1 also, it's been a great resource for me. It also reads really well on mobile devices. On Tue, Oct 30, 2012 at 1:57 PM, titon barua wrote: > +1 for clojure-doc.org. As a beginner, i greatly appreciate your efforts > and think this solves the 'lack of beginner friendly documentation' problem >

Re: Overtone - Actual Music!

2012-08-15 Thread charlie
I'm sharing these with everyone I know, it's a brand new form of music, let's keep it going! On Wed, Aug 15, 2012 at 9:41 AM, Baishampayan Ghose wrote: > Very beautiful work, Sam! Loved it. > > Regards, > BG > > On Wed, Aug 15, 2012 at 4:20 PM, Sam Aaron wrote: > > Hey everyone, > > > > sorry, I

Re: Overtone - Live @ Arnolfini

2012-08-14 Thread charlie
Exciting times indeed! On Wed, Aug 8, 2012 at 10:46 AM, lambdatronic wrote: > Eppccc!! > > > On Friday, August 3, 2012 6:47:50 AM UTC-4, Sam Aaron wrote: >> >> Hi everyone, >> >> for those interested, I just put up a screencast of a performance I did >> with Overtone on Frida

Re: Clojure Sticker

2012-07-19 Thread charlie
Yeah any sort of vector image should work for us On Wed, Jul 18, 2012 at 7:59 PM, Alex Kurilin wrote: > +1. A temporary workaround would be getting a .svg that you could turn > into stickers yourself, if that's ok with Rich. We did something similar > with the vim logo on Reddit. > > -- > You

Re: ClojureC - A Clojure to C compiler - Work in Progress

2012-07-10 Thread charlie
I think the benefits outweight the negatives, yes it's more pure going straight to LLVM and takes out one more compilation step , but having it translate to C opens up the possibility of it running on any machine architecture that has a C compiler. On Mon, Jul 9, 2012 at 11:40 AM, Paulo Pinto w

Re: Clojure Sticker

2012-07-06 Thread charlie
+1 ! On Thu, Jul 5, 2012 at 9:43 AM, Dima Sabanin wrote: > +1 here too. > > On Thu, Jul 5, 2012 at 9:40 AM, David Della Costa > wrote: > > +1, wants sticker. > > > > 2012/7/4 Eric Scrivner : > >> +1 I was just looking for this the other day and was disappointed to > find I > >> could only get a

Re: Anyone using Sublime Text 2 + SumblimeREPL with Windows?

2012-06-24 Thread Charlie Griefer
On Sun, Jun 24, 2012 at 4:15 PM, Jacobo Polavieja wrote: > > On Monday, June 25, 2012 1:05:42 AM UTC+2, Charlie Griefer wrote: >> >> On Sun, Jun 24, 2012 at 3:59 PM, Jacobo Polavieja >>  wrote: >> > On Monday, June 25, 2012 12:05:17 AM UTC+2, Charlie Griefer wrote

Re: Anyone using Sublime Text 2 + SumblimeREPL with Windows?

2012-06-24 Thread Charlie Griefer
On Sun, Jun 24, 2012 at 3:59 PM, Jacobo Polavieja wrote: > On Monday, June 25, 2012 12:05:17 AM UTC+2, Charlie Griefer wrote: >> Just to confirm... you're hitting F2, releasing F2, and _then_ hitting >> the "l" key, correct? Not both keys simultaneously? > >

Re: Anyone using Sublime Text 2 + SumblimeREPL with Windows?

2012-06-24 Thread Charlie Griefer
st to confirm... you're hitting F2, releasing F2, and _then_ hitting the "l" key, correct? Not both keys simultaneously? -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of succes

Re: Anyone using Sublime Text 2 + SumblimeREPL with Windows?

2012-06-24 Thread Charlie Griefer
code and display the result in SublimeREPL. F2 followed by "f" should send the entire contents of the editor tab over to the REPL for evaluation. Is that what you're looking for? If not, let me know and I'll see what I can dig up. -- Charlie Griefer http://charlie.griefer

Re: Clojure/West rock climbing unsession

2012-03-15 Thread Charlie Griefer
Hi Kevin: If there's still room, I'd like to be part of the rock climbing excursion. Please either call my cell at 480.395.6930 or email char...@griefer.com to let me know if there's room. Thanks! Charlie On Mar 8, 2012, at 7:15 PM, Kevin Lynagh wrote: > Keming Labs and Up

Re: 4Clojure exersice question

2012-01-13 Thread Charlie Griefer
s to undertake that particular task :) But as it stands, let's just figure anybody who is that upset over 4Clojure not recognizing that a particular function call was actually made from a macro will promptly be refunded the $ they spent to access the site :) Thanks, Anthony! (My $0.

Re: smallest unit of code requiring a CA

2011-11-09 Thread Charlie Griefer
Chris Gray wrote: I have a patch to the clojure compiler that I would like to submit. I haven't signed a CA, but the patch is quite small. Would it be possible to submit it without a CA? I have no objection to signing one; it would just be slightly embarassing to do so for such a small patch. :)

Re: Clojure User Group, Phoenix

2011-07-28 Thread Charlie Griefer
On Thu, Jul 28, 2011 at 8:12 PM, pmbauer wrote: > Anyone in the Phoenix area care to help start a Clojure user group? > http://clj-phx.wikispaces.com/Startup+Discussion I'm in. I'm a total n00b, but I'm definitely in. -- Charlie Griefer http://charlie.griefer.com/ I hav

Re: Alright, fess up, who's unhappy with clojurescript?

2011-07-24 Thread Charlie Griefer
On Sun, Jul 24, 2011 at 2:28 PM, Rich Hickey wrote: >ClojureScript is an action movie, and we're interested in > helping people kick butt. Could you please tweet that, if only so I can retweet it? :) -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have suc

Re: Anyone on Google+ yet?

2011-07-14 Thread Charlie Griefer
ne-stop-shop for social networking amongst a variety of social groups. -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success. -- You received this message because you are subscribed to the Google

Re: Anyone on Google+ yet?

2011-07-14 Thread Charlie Griefer
On Thu, Jul 14, 2011 at 10:12 AM, Claudia Doppioslash wrote: > My Clojure circle is all set up but empty. > My g+ is: http://gplus.to/gattoclaudia > > Please add link to your profile below. https://plus.google.com/115906367193916269897/ -- Charlie Griefer http://charlie.griefer.

Re: Local bindings w/o let

2011-07-10 Thread Charlie Griefer
hich represent 2 values being passed in. Outside fo the vector brackets you've got a conditional. if the first argument (x) is greater than the 2nd (y), return x. otherwise, return y. (if (> a b) ;; if a > b a ;; return a b ;; otherwise, return b )) -- Charlie Griefer h