Re: [ANN] getclojure.org

2013-05-16 Thread Devin Walters
to the url - not > sure how these are called) which would switch between the default(as it is > now) and the pretty printed output (for all the results not just one of them) > > > On Fri, May 17, 2013 at 4:28 AM, Devin Walters (mailto:dev...@gmail.com)> wrote: > > At t

Re: [ANN] getclojure.org

2013-05-16 Thread Devin Walters
Thanks for trying it out! One hint to people trying it out would be to not put too much stock into the first page of results. The plan is to add user ratings to augment search results in a meaningful way. At the moment searching for "comp" will give you the most "relevant" examples like: (comp

Re: [ANN] getclojure.org

2013-05-16 Thread Devin Walters
IRC logs from the last 5 years and clojuredocs' DB. The examples were run through a sandbox against 1.5.1. -- {:∂evin :√valters} On Thursday, May 16, 2013 at 10:36 PM, Mark Engelberg wrote: > Where is it getting the examples from? > -- > -- > You received this message because you are s

Re: [ANN] getclojure.org

2013-05-16 Thread Devin Walters
(http://getclojure.org/search?q=-%5C%3E%5C%3E&num=0) > > > > > > On Fri, May 17, 2013 at 6:36 AM, Ramesh > (mailto:ramesh10dul...@gmail.com)> wrote: > > > Looks like "->>" is not supported. I quoted it! > > > > > > http://getclojur

Re: [ANN] lein-pedantic is now deprecated

2013-05-31 Thread Devin Walters
I stopped using it for a week and discovered I won't stay sane for long without it. Big (inc) to you. On Friday, May 31, 2013 at 7:55 AM, Stuart Sierra wrote: > Hi Nelson, thanks for making lein-pedantic. It has been useful to us. Happy > to see it built in to Leiningen! > -S > > > On Wednesd

Re: What the hell is this???

2013-06-30 Thread Devin Walters
Context would help. On Jun 30, 2013, at 12:46 AM, Cedric Greevey wrote: > I'm not sure if this is a bug in clooj or in Clojure itself: > > > Evaluating file...CompilerException java.lang.ClassFormatError: Unknown > constant tag 117 in class file [redacted]/core$eval215, > compiling:(NO_SOURC

Re: core.async

2013-07-07 Thread Devin Walters
Interesting post. Thanks Cedric. '(Devin Walters) On Jul 6, 2013, at 6:59 PM, Cedric Greevey wrote: > The obvious approach is to use a future or other thread as an intermediary > between the blocking I/O read and a channel, then use !< on the channel in a > go; somethi

Re: apply inc

2013-08-11 Thread Devin Walters
Is there an implicit question there? If so, does this (https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/IFn.java) help? '(Devin Walters) On Aug 10, 2013, at 10:55 PM, drclj wrote: > Thanks everyone, in the apply function source code I see > > ([^clojure.l

Re: [ANN] Clojure Cheatsheet for Emacs

2013-08-12 Thread Devin Walters
Could you clarify: Why is that a good goal? '(Devin Walters) On Aug 12, 2013, at 12:09 PM, Rostislav Svoboda wrote: > > The number of cheatsheets is growing (this is a good thing IMO) > > It's not about having one brilliant cheatsheet. The ultimate goal is to g

Re: Do you like the Clojure syntax?

2013-08-12 Thread Devin Walters
stion is highly subjective, and likely to provide a narrow view of what people *actually* care about in Clojure: writing great programs, being inspired to dig deeper, realizing creative potential, etc. '(Devin Walters) On Aug 12, 2013, at 7:21 PM, Ramesh wrote: > Great points here! >

Re: [ANN] Clojure Cheatsheet for Emacs

2013-08-12 Thread Devin Walters
If I could plug into a machine and say "I know kung-fu" I would agree with you, but that is simply not reality. Steps which allow learners to rely less on cheatsheets over time are important, but curiously, cheatsheets are one of those steps. '(Devin Walters) On Aug 12, 2

Re: ANN clojure.trace.tools 0.7.6

2013-08-23 Thread Devin Walters
Assuming you meant clojure.tools.trace: https://github.com/clojure/tools.trace, right? On Friday, August 23, 2013 at 1:20 PM, Softaddicts wrote: > Hi all, > > release 0.7.6 is out. It fixes crashes when trace-form(s) encounters a > throwable without a string based constructor. > > This made Cl

Re: Why is clojure so powerful?

2013-09-04 Thread Devin Walters
Battle-tested libraries are nice, and Java has a lot of them. Clojure programmers can use all of them with relative ease. I recently tried Erlang/Elixir and was disappointed in the library ecosystem. Another answer to why Clojure is powerful is the company it keeps. The people who work on Cloju

Re: [ANN] clojuretip.herokuapp.com

2013-09-07 Thread Devin Walters
As long as you're passing links on the site, check out GetClojure.org. I need to add a little about section to the top, but it's a thingy I made to view Clojure examples I've gathered. Green means input, green is value, pink is output. If you don't wanna add it, no big de

Re: Generating .clj files with content

2015-04-09 Thread Devin Walters
To Leon's point above, that looks like: 12345678910111213 (require '[clojure.pprint :as pp]) (pp/with-pprint-dispatch pp/code-dispatch (pp/pprint (read-string "(defn foo [xs] (apply str (reverse (str (apply + (for [y (filter (fn [x] (= x 1)) xs)] (inc y)))"))) => nil (defn foo [xs]

Re: any?

2015-04-25 Thread Devin Walters
I think Ambrose is getting at what the original poster is after. I've written this a number of times, but seem to recall doing something like `(def any? (complement not-any?))`, though I'd need to go back and look. `not-any?` is just `(comp not some)` under the covers, so I guess I'm not sure why

Re: contains? on String

2015-05-12 Thread Devin Walters
Ignoring some of the conversation here to point out that what you want is: (.contains "foo" "f") On Tue, May 12, 2015 at 4:04 PM, Michael Gardner wrote: > On May 12, 2015, at 3:28 PM, Fluid Dynamics wrote: > > Strings and arrays support constant-time access by index. > > Yes, but why should tha

Re: How to implement a distributed and concurrent system in Clojure?

2015-07-19 Thread Devin Walters
http://docs.paralleluniverse.co/pulsar/ is out there. I can't say I've used it in anger, but I did enjoy experimenting with it. On Sun, Jul 19, 2015 at 11:24 AM Colin Yates wrote: > I don’t have anything to add at that scale, but I wanted to echo Stuart’s > comment about the serialisability of ED

Re: [ANN] Afterglow 0.1.0, an open-source live-coding Clojure environment for light shows

2015-07-21 Thread Devin Walters
Great logo, and stellar work. Thanks so much for your contribution. On Sun, Jul 19, 2015 at 10:09 PM James Elliott wrote: > I just released version 0.1.0 of Afterglow so that other interested people > can start exploring it. I simply cannot believe I have been able to create > a system like this

Re: {ANN} defun: A beautiful macro to define clojure functions with pattern match.

2014-09-22 Thread Devin Walters
I didn't read it that way. > On Sep 14, 2014, at 7:45 AM, adrian.med...@mail.yu.edu wrote: > > Friendly advice: when you describe anything you create with adjectives like > beautiful, it comes off as unnecessarily arrogant to native English speakers. > > Adrian > >> On Sunday, September 14, 20

Re: On Testing

2014-11-01 Thread Devin Walters
http://jakemccrary.com/blog/2014/06/22/comparing-clojure-testing-libraries-output/ has some good examples. I'm currently using humane-test-output. It's worked nicely for me. '(Devin Walters) > On Nov 1, 2014, at 7:00 PM, Alex Miller wrote: > > Additionally, I thin

Re: any? in clojure 1.9.0 alpha

2016-11-07 Thread Devin Walters
'll echo Alex's suggestion to drop it. This particular ship sailed years ago, IMO. '(Devin Walters) > On Nov 7, 2016, at 10:23 PM, Mars0i wrote: > > >> Personally I think "any?" and "some?" are aptly named, and that it's the >> older &q

Re: [ANN] task a.1

2018-01-25 Thread Devin Walters
A coworker of mine recently pointed me at this, and I think it's quite cool. I don't have any specific feedback, but wanted to say I'm following along with the development and plan to give it a whirl on a hobby project. Thanks Léo! On Fri, Nov 10, 2017 at 11:35 AM, Léo Noel wrote: > Hi fellow c

Re: Clojure community organisation

2015-12-11 Thread Devin Walters
This initiative seems overdue by a couple years. I would like to offer some non-trivial portion of my time. Is there anywhere people could donate to ensure this becomes a valuable and positive community reality? On Thu, Dec 10, 2015 at 4:38 PM Alex Miller wrote: > I don't think we have any offic

Re: Clojars maintenance this weekend

2015-12-16 Thread Devin Walters
Thanks for the heads up, and for the work you're doing. It is much appreciated. On Wed, Dec 16, 2015 at 4:31 PM Toby Crawley wrote: > This weekend I'll be taking clojars.org down to migrate to a larger > instance to gain more disk space. The process should take about 45 > minutes, but I'm blockin

Re: [ANN] fudje - unit testing library vaguely resembling midje, but with less 'calories'

2016-01-27 Thread Devin Walters
Based on the way I've been using midje and the way I use clojure.test, I really appreciate the middle path fudje has chosen. I don't think the DSL underneath has caused any confusion, and the team I'm working with is composed of seasoned Clojure programmers who have never used midje before. Anecdot

Re: [ANN] Elements of Clojure

2016-03-18 Thread Devin Walters
Zach, The first chapter was a joy to read, and the writing style compliments the topic being discussed perfectly. I very much look forward to reading more as soon as it becomes available. On Fri, Mar 18, 2016 at 7:58 PM, Mike Rodriguez wrote: > Read it and like it so far! > > -- > You received

Re: Is there a prettify command in emacs for clojure?

2014-02-07 Thread Devin Walters
) 'cleanup-buffer) The other thing you can do is mark the region you want to clean up and hit TAB. It does most of what you want. Cheers, -- Devin Walters On Friday, February 7, 2014 at 4:20 PM, Taylor Sando wrote: > Let us say you had this: > > (defn create-new-canvas

Re: why Clojure/Lisp is so fast

2014-02-18 Thread Devin Walters
You need to use the lein plugin for no.disassemble, not the dependency. The README explains how. Cheers, '(Devin Walters) > On Feb 18, 2014, at 23:16, Andy C wrote: > > Thanks for the insight and link to http://benchmarksgame.alioth.debian.org . > > WRT dynamically typ

Re: [ANN] Gorilla REPL initial release (0.1.2)

2014-02-19 Thread Devin Walters
along with the announcement. You made a screencast too! Rally! Cheers, '(Devin Walters) > On Feb 19, 2014, at 15:23, Jony Hudson wrote: > > Hi All, > > I'm pleased to announce the first release of Gorilla REPL, a rich REPL in > the notebook style: > > https://github.

Re: Clojure / polyglot position at OpinionLab in Chicago

2014-02-24 Thread Devin Walters
ss is within the next year and a half you'll start to see more opportunities in your general region. Best wishes, '(Devin Walters) Sent via Apple Newton > On Feb 24, 2014, at 19:00, John Jacobsen wrote: > > > Lots of people on this list are not based in Chicago or US. Wil

Re: [GSoC]: We made it! Clojure is a Google Summer of Code 2014 menoring organisation

2014-02-24 Thread Devin Walters
at we can do to help. Thanks! '(Devin Walters) > On Feb 24, 2014, at 19:02, Mikera wrote: > > Congratulations! > > Well done to everyone who helped make this happen. > >> On Tuesday, 25 February 2014 03:06:24 UTC+8, Daniel Solano Gómez wrote: >> Hello, all, >

Re: Latest web framework for clojure

2014-03-01 Thread Devin Walters
Have you checked out Http://hoplon.io? '(Devin Walters) > On Feb 28, 2014, at 12:55, Daniel wrote: > > Long story short. You should be learning Pedestal, but the app component is > "on pause" at the moment. My advice is to learn pedestal-service and Om. > When

Re: How did you learn Clojure?

2014-03-20 Thread Devin Walters
dropping in on this thread. Happy Clojuring, '(Devin Walters) > On Mar 20, 2014, at 22:23, Marcus Blankenship wrote: > > Thanks, Alex! Is it kosher to post questions about 4Clojure here? I'm > stumped on a few, and simply looking up the answer often isn't helpful.

Re: [ANN] core.async (and more) video tutorials

2014-05-21 Thread Devin Walters
Awesome! Thanks Tim! '(Devin Walters) > On May 21, 2014, at 17:32, Timothy Baldridge wrote: > > From time to time I get asked to do more writing on core.async, and I've come > to the realization that try as I might, I'm not a writer. However I recently > starte

Re: [ANN] core.async (and more) video tutorials

2014-05-28 Thread Devin Walters
Forgive me if I just missed it, but do you have the code from the videos somewhere? I was toying with the pipeline< example and kept feeling like it'd be nice to just grab the source. Thanks, '(Devin Walters) > On May 27, 2014, at 12:55, Timothy Baldridge wrote: > &

Re: [ANN] CrossClj, a tool for cross-referencing the clojure ecosystem

2014-06-11 Thread Devin Walters
forward to playing around with it. Cheers, -- Devin Walters On Wednesday, June 11, 2014 at 10:53 AM, Mike Haney wrote: > Very cool. Is there a public REST api? > > I ask because I'm thinking a lighttable plugin that uses this to search for > dependencies and automatically add

Re: [ANN] CrossClj, a tool for cross-referencing the clojure ecosystem

2014-06-11 Thread Devin Walters
ancesco && @All: Drop me a private email if you'd be interested in discussing working on something like this. I'll set up a google hangout and we can get together and talk about it. Think of the songs they'll write about us if we succeed! :) Cheers, '(Devin Walte

Re: Instaparse - thank you!

2014-06-11 Thread Devin Walters
ool is it to be a part of this whole Clojure thing? Best Regards, '(Devin Walters) > On Jun 11, 2014, at 20:25, Scott Thoman wrote: > > +1 ! > > I'm about to use it in a production deployment. It has been a pleasure to > use! > -- > You received this message b

Re: Clojure on iOS devices - Swift as a host?

2014-06-11 Thread Devin Walters
If I had a small fortune I would pay you to sit down and show me how this business you're talking about works. Sounds really cool. Is doing this kind if thing documented well anywhere? I'd love to see some code and your workflow. '(Devin Walters) > On Jun 11, 2014, at 15:30,

Re: [ANN] CrossClj, a tool for cross-referencing the clojure ecosystem

2014-06-12 Thread Devin Walters
know the drill, and no you don't come off as arrogant. To each their own. Cheers, '(Devin Walters) > On Jun 12, 2014, at 6:05, Francesco Bellomi > wrote: > > Hi Devin, > > I'm a strong believer in contributing to the community. CrossClj is my first > attempt

Re: Clojure on iOS devices - Swift as a host?

2014-06-12 Thread Devin Walters
Very helpful info Mike, thank you. I'll fire up Xcode this weekend, give what you're saying a try, and report back. Thanks! '(Devin Walters) > On Jun 12, 2014, at 8:14, Mike Fikes wrote: > > Hi Devin, > > A great place to start is > http://web.cec

Re: Given a CSV file, how do I take the values in each row and convert it into a map?

2014-06-12 Thread Devin Walters
] (map #(-> (zipmap header %) (walk/keywordize-keys)) rows)) => ({:a "foo" :b "bar"} {:a "baz" :b "buzz"} ...) Cheers, -- Devin Walters On Thursday, June 12, 2014 at 4:38 PM, Marc Limotte wrote: > See > https://gith

Re: [ANN] Cognitect

2013-09-19 Thread Devin Walters
Congratulations. *pops a bottle if champagne* BTW, the new site looks great. Cheers, '(Devin Walters) On Sep 17, 2013, at 3:01 AM, Mikera wrote: > Congrats on the new venture - wishing you the best of luck! > > On Monday, 16 September 2013 21:50:46 UTC+8, Rich Hickey wrote:

Re: ANNOUNCE: Cognitect is sponsoring "CinC" contrib libraries

2013-12-06 Thread Devin Walters
This is great news. Congratulations and many thanks to Cognitect for making it possible! '(Devin Walters) On Dec 5, 2013, at 14:42, Nicola Mometto wrote: > > I'm happy to announce that after Ambrose BS commissioned me to continue > working on my "CinC" libraries

Re: Is Clojure right for me?

2013-12-25 Thread Devin Walters
http://hoplon.io/#/home/ http://caribou.github.io/caribou/docs/outline.html -- Devin Walters On Thursday, December 26, 2013 at 12:26 AM, tao wrote: > http://pedestal.io/ > http://www.luminusweb.net/ > > > -- > tao > Sent with Sparrow (http://www.sparrowmailapp

Re: Security implications of code is data/data is code

2014-01-21 Thread Devin Walters
nitized. Clojure makes it rather simple IMO. "(" => "" goes a long way. 2c, '(Devin Walters) > On Jan 22, 2014, at 0:14, John Wiseman wrote: > > I don't think homoiconicity is the issue, except in a very indirect way. > > Note that Common Lisp does have

Re: ANN: clojure-objc

2014-01-25 Thread Devin Walters
(inc #'your/idea) I performance related questions similar to Tim, but I think having some good "getting started" material might give me a way to start testing the boundaries myself. Cheers, '(Devin Walters) > On Jan 25, 2014, at 17:31, PublicFarley wrote: > > I&

Re: Looking for testimonials and feedback on ClojureWerkz projects

2013-01-25 Thread Devin Walters
Without a doubt the best documented effort in the Clojure community to-date. Specifically, my experience with elastisch. Thanks for your work. It's a huge step in the right direction. '(Devin Walters) On Jan 25, 2013, at 7:55 PM, Michael Klishin wrote: > We are looking for tes

Re: ANN Titanium, a Clojure library on top of Titan

2013-02-11 Thread Devin Walters
Another day, another great clojurewerkz library. Well done, gents. *golf clap* '(Devin Walters) On Feb 11, 2013, at 11:37 AM, Michael Klishin wrote: > Titanium [1] is a Clojure graph library that is built on top of Titan [2]. > It combines a Clojure-friendly API and graph processi

Re: Clojure + Web Services + Web Sockets

2013-02-11 Thread Devin Walters
Check out browserchannel: http://thegeez.net/2012/04/03/why_browserchannel.html Cheers, '(Devin Walters) On Feb 11, 2013, at 5:22 PM, Bob Hutchison wrote: > > On 2013-02-11, at 6:12 PM, Ryan T. wrote: > >> Unless someone has to suggest something better, it seems that

Re: Can't use Clojure 1.5 with emacs and swank

2013-02-11 Thread Devin Walters
That's definitely the issue. Switch to nrepl or see if there's an updated swank-clojure. I switched and it took some getting used to and hackery to get it working like my swank setup did, but I think it was worth it. '(Devin Walters) On Feb 11, 2013, at 5:01 PM, David Nolen wr

Re: [ANN] Javelin, spreadsheet-like FRP for ClojureScript

2013-02-20 Thread Devin Walters
Surprised this hasn't gotten more attention. Well done. Looking forward to using this on future projects. '(Devin Walters) On Feb 20, 2013, at 1:33 AM, Alan Dipert wrote: > Hi all, > We recently released a ClojureScript library for FRP called Javelin. Links > of intere

Re: [ANN] Javelin, spreadsheet-like FRP for ClojureScript

2013-02-20 Thread Devin Walters
TLA refers to the Textile Labour Association. On Wednesday, February 20, 2013 at 7:17 PM, Rich Morin wrote: > On Feb 20, 2013, at 1:33 AM, Alan Dipert wrote: > > > We recently released a ClojureScript library for FRP ... > > > > > > On Feb 20, 2013, at 17:02,

Re: [ANN] Complete authentication app using Compojure and lib-noir

2013-03-08 Thread Devin Walters
Double that. Thanks Xavi! -- '(Devin Walters) On Friday, March 8, 2013 at 11:15 AM, Paul deGrandis wrote: > Cool! Thanks for building a nice example app. > > Paul > > -- > -- > You received this message because you are subscribed to the Google > Groups "

Problem with Code Dispatch for Anonymous Functions?

2013-03-10 Thread Devin Walters
) args (range 1 (inc (count args))] ((formatter-out "~<#(~;~@{~w~^ ~_~}~;)~:>") nlis)) (pprint-simple-code-list alis I squinted at it for a bit, but I'm not sure what's up. Anyone h

Re: :use an entire namespace full of protocols or stick with :require?

2013-03-10 Thread Devin Walters
I switched to just using (:require) with :as and :refer unless there's a really good reason to use :use. It stops me from accidentally making the mistake of dropping [my.ns.core :as foo] into a growing (ns (:use …)) form. -- '(Devin Walters) On Sunday, March 10, 2013 at 3:03 PM

Re: Problem with Code Dispatch for Anonymous Functions?

2013-03-10 Thread Devin Walters
but in the case of (^:once fn* [x] x) it is a symbol. Thanks, -- '(Devin Walters) On Sunday, March 10, 2013 at 3:36 PM, Devin Walters wrote: > Could anyone help me understand why the following code is breaking? > > (require '[clojure.pprint :refer [with-pprint-dispatch cod

Re: What's the point of -> ?

2013-03-11 Thread Devin Walters
Consistency in any code base matters, so if you're going to thread, thread in similar scenarios. For me it's kind of like coffee. It's an acquired taste. '(Devin Walters) On Mar 11, 2013, at 10:14 AM, "Jim foo.bar" wrote: > On 11/03/13 15:08, Dave Kincaid wro

Re: be.clojure.org: a humble question.

2013-03-11 Thread Devin Walters
One exists here: http://dev.clojure.org/display/community/Clojure+User+Groups Cheers, -- '(Devin Walters) On Monday, March 11, 2013 at 4:19 PM, Rich Morin wrote: > On Mar 11, 2013, at 14:00, Thomas Goossens wrote: > > In Belgium we are starting up de first Belgian cloj

Re: Improving visibility of clojure-doc.org

2013-03-11 Thread Devin Walters
I assume this has been discussed to death already, but isn't there some way to get clojure-doc and clojuredocs to live under the same umbrella? Another idea I'd like to throw out there: I have the domains getclojure.org/com. Since clojure-doc.org is all about getting clojure, it seems like it mi

Re: Refactoring tools

2013-03-20 Thread Devin Walters
I don't think much has happened with it recently, but I used to use https://github.com/joodie/clojure-refactoring. -- '(Devin Walters) Sent from my Motorola RAZR V3 (Matte Black) On Wednesday, March 20, 2013 at 8:05 PM, Dave Kincaid wrote: > I'm wondering if there are any

Re: Refactoring tools

2013-03-20 Thread Devin Walters
ars > to require slime/swank. But it's a start I guess if there isn't anything else. > > On Wednesday, March 20, 2013 6:13:30 PM UTC-7, Devin Walters (devn) wrote: > > I don't think much has happened with it recently, but I used to use > > https:

Re: Refactoring tools

2013-03-23 Thread Devin Walters
;> Cheers, >>>> >>>> -- >>>> Laurent >>>> >>>> >>>>> >>>>> On Thursday, March 21, 2013 12:12:42 AM UTC-6, Akhil Wali wrote: >>>>> >>>>>> A fairly new project for

Re: Clojure/West 2013 videos?

2013-04-05 Thread Devin Walters
Responding to this thread only because it seems like the annual "roll-call" thread where we all band together to fight the evils of our world/mailing list/internet. I would like to share with you all a story that was passed down to me by my great grandfather. *pulls out his lute and begins to s

Re: [GSOC 2013] Program analysis suite, based on Rich Hickey's Codeq

2013-04-12 Thread Devin Walters
Hi Navgeet, I'm glad you found codeq-playground helpful. It looks like you've found Rich Morin's wiki. Did you also see his codeq-cookbook project? When you said analysis I had something else in mind: check out  https://github.com/clojure/jvm.tools.analyzer I wonder about how that could be u

Re: [GSoC] Clojure refactoring library and integration in Counterclockwise

2013-04-18 Thread Devin Walters
oring -- '(Devin Walters) On Thursday, April 18, 2013 at 11:54 AM, Malcolm Sparks wrote: > Michael, > > There are some pre-existing libraries that could give you a headstart in this > work :- > > tools.reader - can help you parse Clojure source - > https://

Re: Bug in reader or repl? reading keyword :#abc

2013-05-01 Thread Devin Walters
I wasn't able to reproduce: nREPL server started on port 64767 REPL-y 0.1.0-beta10 Clojure 1.5.1 ... user=> (let [v :#abc] #_=> nil) nil user=> -- '(Devin Walters) On Wednesday, May 1, 2013 at 9:22 AM, Dave Sann wrote: > I came across the following... > > ;

Re: Clojure for Beginners eBook

2013-05-01 Thread Devin Walters
Philosophy mixed with action is the ticket. Godel, Escher, Bach is what I'm talking about. I'd be happy to receive updates. Cheers, -- '(Devin Walters) On Wednesday, May 1, 2013 at 7:40 PM, Asim Jalis wrote: > I am planning to write a practical Clojure ebook for begi

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

2013-05-01 Thread Devin Walters
Voicing strong disagreement with using emacs-live as a starting point. One reason: They rebind a bunch of default emacs bindings, which is just fine by me, but C-h to a newcomer is important, and IIRC they rebound it. I think Phil's emacs-starter-kit modules/packages are a better place to start.

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

2013-05-02 Thread Devin Walters
and so on that are custom. I basically just learned how to use the help commands and then extracted the portions of the starter kit I wanted over time. — Sent via Mobile On Thu, May 2, 2013 at 11:17 AM, Phil Hagelberg wrote: > Devin Walters writes: >> Voicing strong disagreement wi

Re: [OT] Re: More idiomatic way to use map like this?

2013-05-04 Thread Devin Walters
I don't think that it's productive to discuss idiomatic code and performance in the same breath. People do all sorts of nasty stuff when trying to squeeze performance juice out of their code. In my experience it's rare to see performance-related "idioms" beyond the obvious language-level constr

Re: Utility libraries and dependency hygiene

2013-05-15 Thread Devin Walters
I must admit that I haven't read every response in this thread but my gut feeling is that a lot of the "I just need a couple of functions" situations would be mitigated by making non-core devs feel more welcome to suggesting and contributing modular contrib ideas. I hate to bring up process beca

[ANN] getclojure.org

2013-05-16 Thread Devin Walters
Hey All, I put this ( http://getclojure.org ) together and wanted to share it with all of you. It's a nifty way to search for example usage of clojure. It's far less curated than ClojureDocs, so you may pick up some interesting ideas by simply browsing. It supports boolean queries like: "com

Re: [ANN] getclojure.org

2013-05-16 Thread Devin Walters
n the 80-90% case. Cheers, -- {:∂evin :√valters} On Thursday, May 16, 2013 at 8:18 PM, atkaaz wrote: > Hi! > http://getclojure.org/search?q=fixture&num=0 > is it supposed to show the \n inline? it's a bit uncomfy to have to read > those on one line > > > On

Re: fixing web docs

2011-03-29 Thread Devin Walters
An effort to enumerate misleading stackoverflow answers is another noteworthy endeavor that requires a bit of attention. Food for thought. Sent via mobile On Mar 29, 2011, at 8:44 AM, Stuart Halloway wrote: > Hi all, > > One way to help people getting started with Clojure is to make sure the

Re: fixing web docs

2011-03-29 Thread Devin Walters
-1 TryClojure is an opportunity, not a liability. Treat it as such. 2c Sent via mobile On Mar 29, 2011, at 8:00 PM, Ken Wesson wrote: > On Tue, Mar 29, 2011 at 2:03 PM, Sean Corfield wrote: >> Having one central authoritative Getting Started page might be a good >> thing. > > +1 > >> Howev

Re: fixing web docs

2011-03-29 Thread Devin Walters
work on consistently improving Clojure in this area, contact me via the result your receive from your repl: (apply str (reverse "moc.liamg@wnived")) I have a feeling we could make a positive, sizable dent by teaming up on any one of the concerns posed in this thread to-date. Rega

Re: Who's using Clojure?

2011-04-19 Thread Devin Walters
Two more that haven't been mentioned: The Deadline: https://the-deadline.appspot.com/login Wusoup: http://groups.google.com/group/clojure/browse_thread/thread/b4d137d963a53cb4?pli=1 On Tue, Apr 19, 2011 at 4:29 PM, Christopher Redinger wrote: > This is a great question! > I've created a home t

Re: Meta-circular STM for teaching purposes

2011-04-21 Thread Devin Walters
+1 Thanks so much. Looking forward to digging into the code this evening. Any chance you will have any online course materials for public consumption? Thanks again, Sent via mobile On Apr 21, 2011, at 1:25 PM, Ambrose Bonnaire-Sergeant wrote: > This is great, thanks for sharing! > > Ambros

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,

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: swank-cdt: Using Slime with the Clojure Debugging Toolkit

2011-04-25 Thread Devin Walters
It looks like you've got things pretty well figured out. If you're curious about the general case, #cake.clj on freenode may be of some help. On Apr 25, 2011, at 12:12 PM, Sam Aaron wrote: > Hi George, > > On 25 Apr 2011, at 17:35, George Jahad wrote: >> >> Can you set breakpoints and catch

Re: Help with primer on maps, lists or vectors

2011-06-02 Thread Devin Walters
+1 on the atlas. It's a great way to "surf" clojure. I paid for it not knowing if I'd use it, but the organization is great and would feel comfortable recommending it to a wide range of people interested in clojure. Sent via mobile On Jun 1, 2011, at 6:44 AM, Ambrose Bonnaire-Sergeant wrote:

Re: hammock driven development...

2011-06-09 Thread Devin Walters
#x27;re in neutral. Finding neutral activities like walking, laying in the hammock, washing the dishes, sweeping up for the experience of sweeping up, etc. doesn't seem to be the hard part. The hard part seems to be getting rid of the agenda or expectation I have that a particular action will

Re: hammock driven development...

2011-06-14 Thread Devin Walters
It might get people to quit looking at their infernal phones and laptops for 5 minutes. ;) -- Devin Walters On Tuesday, June 14, 2011 at 2:50 PM, Laurent PETIT wrote: > Would be very funny if for the upcoming clojure conj, attendants as > well as speakers were all lying in hammocks !

Re: Print Friendly (For PDF) Version of Clojure API

2011-07-07 Thread Devin Walters
A couple ideas: 1.) I used to do something simple: (map (juxt :name :arglists :doc) (map #(meta (second %)) (ns-publics 'clojure.core))) I'd then take that output and use hiccup to make a big html file that I could then print. You could pdf-ize that easily. 2.) http://tomfaulhaber.github.com/au

Re: Extending a type to an Interface

2011-07-08 Thread Devin Walters
What I think Kevin meant to say was that you might consider using a macro. If you have questions about specifics, please do reply. This group is here to Help, and it would be a shame if a response like the previous one steered you away from asking a follow-up. Sent via mobile On Jul 8, 2011, a

Re: Rich Hickey up for deletion

2011-07-10 Thread Devin Walters
http://www.linuxjournal.com/article/10708 and http://channel9.msdn.com/Shows/Going+Deep/Expert-to-Expert-Rich-Hickey-and-Brian-Beckman-Inside-Clojure in combination with http://lambda-the-ultimate.org/node/3630 I'm not entirely clear on all of wikipedia's notability guidelines but these reviews

Re: Results from 2011 State of Clojure survey

2011-07-12 Thread Devin Walters
Perhaps this discussion requires its own thread? Sent via mobile On Jul 12, 2011, at 10:15 PM, Jeremy Dunck wrote: > On Tue, Jul 12, 2011 at 10:09 PM, Ken Wesson wrote: >> On Tue, Jul 12, 2011 at 11:06 PM, Jeremy Dunck wrote: >>> On Tue, Jul 12, 2011 at 9:47 PM, Ken Wesson wrote: >>> ... >>>

Re: Anyone on Google+ yet?

2011-07-14 Thread Devin Walters
http://gplus.to/devn -- Devin Walters On Thursday, July 14, 2011 at 6:00 PM, ianp wrote: > Ian (https://plus.google.com/110915919730271680589) > > Looks like G+ is pretty popular with the Clojure crowd :-) > > -- > You received this message because you are subscr

Re: Excellent intro to core.logic

2011-07-18 Thread Devin Walters
Thanks David! (And French64 of course) -- Devin Walters On Monday, July 18, 2011 at 10:33 PM, Brent Millare wrote: > Nice, I'll be sure to go through it. > > On Jul 18, 10:56 am, David Nolen http://dnolen.li)...@gmail.com > (http://gmail.com)> wrote: > > I highly r

Re: Can't find clojure.main in clojurescript's script/repl on Windows

2011-07-21 Thread Devin Walters
Did you run script/bootstrap? You need a clojure-1.3 jar in your clojurescript/lib directory. On Thursday, July 21, 2011 at 4:45 PM, Tamreen Khan wrote: > Hi everyone, I'm trying to get the repl for Clojurescript to start under > Windows but keep running into the following error: > > Excepti

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

2011-07-26 Thread Devin Walters
Let's stop feeding this thread and turn our attention toward healthy and productive discussion. This is my first and final post on this matter. Sent via Mobile On Jul 26, 2011, at 9:56 AM, James Keats wrote: > > > On Jul 26, 3:08 pm, Timothy Baldridge wrote: > > Hi Timothy, and thanks for

Re: ClojureScript mailing list?

2011-07-28 Thread Devin Walters
I don't think there has been a significant enough influx of mail on the list to warrant the creation of a new, separate list. There are so many similarities between the two that I think we'd run into situations where people felt that the ClojureScript list was getting too much Clojure in it. The

Re: Are there potential licensing issues of doing a "fully packaged" ClojureScript zip for Windows ?

2011-08-03 Thread Devin Walters
On Aug 3, 2011, at 7:32 PM, Base wrote: > I hope not, because I would *love* that! +1 for the sake of the community. AFAIK Google Closure operates under the Apache License 2.0. I am not personally aware of any conflicts that would arise from the dependencies ClojureScript requires, but I am n

Re: better community docs: getting started

2011-08-03 Thread Devin Walters
On Jul 29, 2011, at 7:30 PM, Stefan Kamphausen wrote: > inc > > IMHO there are three types of people coming to Clojure > > Java Programmers > Old-school lispers > all the other, who just want to try (and possibly follow the examples in a > tutorial or book) I humbly disagree. All of these grou

Re: Google Summer of Code 2012 - any mentors?

2012-02-17 Thread Devin Walters
+1, would love to help in any way I can '(Devin Walters) On Feb 17, 2012, at 4:41 PM, Peter Hanak wrote: > another +1 here > > On Feb 14, 3:23 am, Simone Mosciatti wrote: >> More students >> +1 >> >> On Feb 9, 9:54 am, Baishampayan Ghose wrote: >

Re: Clojure online university

2012-02-17 Thread Devin Walters
ge, I have a feeling that the quality of Clojure U alumni would be above average. Programming in general is better off if something like this takes off in our community. '(Devin Walters) On Feb 16, 2012, at 4:01 PM, Sean Corfield wrote: > On Thu, Feb 16, 2012 at 1:57 AM, Peter Hanak

Re: Bret Victor - Inventing on Principle

2012-02-24 Thread Devin Walters
ontraption", this list is not the place. '(Devin Walters) On Friday, February 24, 2012 at 1:13 PM, Marco Abis wrote: > > What does video get you that text or HTML+images couldn't get you? > > > > watching the video would answer the question and would h

  1   2   >