Re: [ANN] Discontinuing 4clojure.com

2021-07-05 Thread Tim Visher
On Sun, Jul 4, 2021 at 4:26 PM Alan Malloy wrote: > TL;DR: Turning off 4clojure.com by the end of July 2021 > > Hello, 4clojure problem solvers. You've probably noticed SSL errors on > 4clojure.com over the last week. The old decrepit system 4clojure runs on > has finally gotten out of date

Re: ANN: ClojureScript 1.10.741

2020-04-25 Thread Tim Visher
On Fri, Apr 24, 2020 at 9:04 PM Ag Ibragimov wrote: > Some people have no idea how awesome it is to see David Nolen working on > Clojurescript again. That is so cool! >  -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send

Re: [ANN] Cognitect Labs' aws-api 0.8.430

2020-02-18 Thread Tim Visher
uld be com.cognitect/http-client ( > https://search.maven.org/search?q=g:com.cognitect%20AND%20a:http-client) > > It is a dependency of aws-api, which it uses to submit http requests. > > On Wednesday, February 12, 2020 at 6:52:31 AM UTC-6, Tim Visher wrote: >> >> What's cognitect.

Re: [ANN] Cognitect Labs' aws-api 0.8.430

2020-02-12 Thread Tim Visher
What's cognitect.http-client? On Tue, Feb 11, 2020 at 10:09 AM David Chelimsky wrote: > Cognitect Labs' aws-api 0.8.430 is now available! > > NOTE: we changed the behavior of cognitect.aws.client.api/client in order > to support automatic resource management. Although this should be a > drop-in

Re: Two new transcripts available of talks by Rich Hickey

2019-12-02 Thread Tim Visher
Thanks for doing this, Andy! On Mon, Dec 2, 2019 at 1:29 AM Andy Fingerhut wrote: > Transcripts of two of Rich Hickey's oldest (and longest) talks are now > published and available, included in a collection of many other talk > transcripts. The newest transcripts are: > > (1) "Clojure

Re: Inside Clojure Journal

2019-02-22 Thread Tim Visher
On Wed, Jan 30, 2019 at 12:03 AM Shaun Parker wrote: > I just wanted to say thanks to Alex for taking the time to journal all the > Clojure things he's working on (and the non-Clojure things as well). > They're enjoyable to read and eye-opening. It's a great window into the > effort that he and

Re: [ANN] CIDER 0.19

2019-01-02 Thread Tim Visher
Thanks to you, Bozho ( ;) ) , and all the other contributors for your consistent hard work on CIDER! :) It's made my life and the life of my team so much better. On Tue, Jan 1, 2019 at 10:39 AM Bozhidar Batsov wrote: > Btw, I also wrote a short blog post on

Re: [ANN] deps.edn dependency viewer

2018-12-20 Thread Tim Visher
On Tue, Dec 18, 2018 at 12:46 PM Alex Miller wrote: > tda, tda.reader, tda.extensions > To make an unrelated, unhelpful, and off-topic comment I will now be referring to `tools.deps.alpha` exclusively as 'Tada!'. :) -- You received this message because you are subscribed to the Google Groups

Re: What do Clojure developers use for recurring functions, other than at-at

2018-12-17 Thread Tim Visher
On Mon, Dec 17, 2018 at 2:54 PM wrote: > But at-at has not been updated in 6 years, so I assume it is abandoned. I > have two questions about this: > A common bit of wisdom here in the Clojure community is that time since last update is not always (or even often) a sign of abandonment but

Re: [ANN] com.vodori/chronology "0.1.0"

2018-09-13 Thread Tim Visher
Hi Paul, On Thu, Sep 13, 2018 at 9:05 AM Paul Rutledge wrote: > Chronology is a small library for working with cron expressions > Just FYI as I had to deal with this in depth a little while ago at work, Quartz cron expressions are _not_ POSIX cron

Re: Key must be integer error

2018-04-29 Thread Tim Visher
Hi Renata, ``` user=> (clojure.pprint/pprint (swap! accounts #(map (fn [a] (if (= (:id a) "3136860d-ab7f-4814-8f3b-2d18048db9b9") (assoc a :operations :foo) a)) %))) ({:id "7512a15b-0770-4a9b-a74b-389374b46461", :balance 0.0, :operations nil, :blocked false} {:id

Re: [ANN] clj-new -- creating new Clojure projects using the clj CLI

2018-04-20 Thread Tim Visher
On Thu, Apr 19, 2018 at 1:38 PM, Sean Corfield wrote: > I had the one-liner in an earlier version of the README but decided it was > unreadable (a single long line is hard to read when it scrolls so much). > > > > Maybe I’ll put it back somewhere in there… > Might I suggest:

Re: Writing a text adventure in Clojure

2018-03-30 Thread Tim Visher
http://landoflisp.com/ is specifically about coding games in Lisp, in case you're into books. :) On Thu, Mar 29, 2018 at 6:45 PM, Will Duquette wrote: > I'm an experienced programmer, but a Clojure newbie; as a beginner > project, I'm looking into how one would

Re: [ANN] rocks.clj/z 0.1.0-SNAPSHOT (alpha)

2018-01-04 Thread Tim Visher
On Thu, Jan 4, 2018 at 12:04 AM, Edward Knyshov wrote: > Thanks :) > > I haven't considered using nio Zip FileSystem just because I never heard > of it, but I'll definitely check it out. > > Regarding targeting to java 7, should something like this set up targeting > properly?

Re: [ANN] rocks.clj/z 0.1.0-SNAPSHOT (alpha)

2018-01-03 Thread Tim Visher
On Wed, Jan 3, 2018 at 6:56 AM, Edward Knyshov wrote: > Hi, I made a simple wrapper around java.util.zip. > Basically it only allows you to compress files or unpack/process zip > archives. > This looks neat. :) Have you considered targeting Java 7 and using the nio Zip

Re: [ANN] jmh-clojure 0.2.0 - Seamless JMH benchmarking for Clojure

2017-12-21 Thread Tim Visher
Looks neat! :) On Sun, Dec 17, 2017 at 11:25 AM, wrote: > This library (github link ) > provides a data-oriented API to JMH, the Java Microbenchmark Harness. > > Some of the new features since 0.1.0: > > External profiler support. Wiki

Re: pager for lein repl?

2017-03-27 Thread Tim Visher
I have always used either CIDER (with full emacs paging support) or tmux for those requirements. On Thu, Mar 23, 2017 at 8:46 PM, Joe Python wrote: > > Is there a equivalent of less/more like pager (found in Linux shells) for > Leiningen repl? > > The lein repl is fast

Re: Creating a spec for destructuring

2017-01-06 Thread Tim Visher
This is interesting. I did want to point out though that at least for me I can't see links in your current styling. [image: Inline image 1] On Thu, Jan 5, 2017 at 9:18 AM, Alex Miller wrote: > I thought this might be interesting to some here: > >

REPL-Driven Techniques?

2015-08-07 Thread Tim Visher
Hi Everyone, I'm taking part in an effort to introduce REPL-Driven Development at my shop. The shop has historically been based in PHP/Python/javascript and similar languages and most devs there have their workflows formed by that technology. I'm used to using a REPL or REPL-connected editor

Re: Clojure Async/State Machine/Workflow Libraries?

2015-05-04 Thread Tim Visher
I think I may have summoned the wrong demons when invoking with the `Workflow` keyword. :) I've found some resources on Event-Driven Architecture, mostly from Zach Tellman. Is his stuff the main source of that sort of thing? I realized that prismatic's graph is basically what I'm looking for

Clojure Async/State Machine/Workflow Libraries?

2015-04-30 Thread Tim Visher
Hey All, Anyone have any tips on clojure 'workflow' libraries? https://github.com/relaynetwork/impresario is very close, but lacks some basic features like exception transitions, etc. Basically, I'm looking for a library that allows me to create a workflow that will happen asynchronously,

Re: Clojure beginner: angst about doing things right

2014-09-23 Thread Tim Visher
On Mon, Sep 22, 2014 at 2:45 PM, J David Eisenberg jdavid.eisenb...@gmail.com wrote: As part of a larger program, I'm testing a function that will turn a string of days on which a class occurs (such as MWF) into a list of seven numbers: (1 0 1 0 1 0 0). I first translateTH (Thursday) to R and

lein 2.4.3 repl outside project?

2014-08-28 Thread Tim Visher
Anyone else get this error?  lein repl Downloading Leiningen to /Users/tim/.lein/self-installs/leiningen-2.4.3-standalone.jar now... % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft Speed 100

Re: lein 2.4.3 repl outside project?

2014-08-28 Thread Tim Visher
not working are related to this issue. On Thursday, August 28, 2014 9:01:40 AM UTC-7, John Gabriele wrote: On Thursday, August 28, 2014 11:29:44 AM UTC-4, Tim Visher wrote: Anyone else get this error? Yup. I think it's https://github.com/technomancy/leiningen/issues/1625. -- You received

Re: What is happening in this code?

2014-08-27 Thread Tim Visher
Clojure is form-oriented so you can think of almost all of its evaluation as sending one form after another to a REPL. In that model of evaluation, you of course want to be able to re-define a symbol an arbitrary amount of times. The serialization of these forms into a file which has other forms

Re: lein install

2014-07-08 Thread Tim Visher
On Tue, Jul 8, 2014 at 7:39 AM, zhenxuanpan zhenxuan...@gmail.com wrote: when i run lein install lein install Compiling zilch.mq Exception in thread main java.io.FileNotFoundException: Could not locate zilch/mq__init.class or zilch/mq.clj on classpath: at clojure.lang.RT.load(RT.java:432)

Re: Clojure Contributor Agreement process update

2014-06-10 Thread Tim Visher
(boom) On Mon, Jun 9, 2014 at 1:23 PM, Alex Miller a...@puredanger.com wrote: Starting today, we have updated the Clojure Contributor Agreement process. The prior process which involved signing and mailing a form has been replaced with an online e-signing process. Existing contributors that

Re: clojurescript, sourcemaps, and debugging info

2014-05-16 Thread Tim Visher
Seems worth a bug report/feature request to the Chrome Dev Tools team. On Thu, May 15, 2014 at 11:45 PM, t x txrev...@gmail.com wrote: Hi, * background: * I have clojurescript + lein cljsbuild auto working perfectly fine. * I have source maps working (when I click on a file in Chrome,

Re: Clojure Office Hours

2014-04-30 Thread Tim Visher
This is getting to the point where it seems to make sense as a wiki page like http://dev.clojure.org/display/community/Clojure+User+Groups Maybe http://dev.clojure.org/display/community/Clojure+Office+Hours ? On Tue, Apr 29, 2014 at 5:53 PM, Lynn Grogan l...@thinkrelevance.com wrote: This is

Re: testing clojure.core/group-by with clojure.test.check

2014-04-30 Thread Tim Visher
As an aside to the discussion at hand, what papers/books/online articles are good to read to learn about how to come up with good properties and generators? On Wed, Apr 30, 2014 at 3:36 PM, Alex Miller a...@puredanger.com wrote: The only hard parts about property based testing are the properties

Re: braveclojure problem ( paste into emacs)

2014-04-16 Thread Tim Visher
On Wed, Apr 16, 2014 at 6:57 AM, Roelof Wobben rwob...@hotmail.com wrote: I try to learn coljure by using this tutorial: http://www.braveclojure.com Im now at point 7 : http://www.braveclojure.com/basic-emacs/ There I must paste a text into emacs. But as far as I know there is no mentioned

Re: auto include a certain line in all *.cljs files

2014-04-14 Thread Tim Visher
Hi t, On Sun, Apr 13, 2014 at 3:18 PM, t x txrev...@gmail.com wrote: What does https://github.com/technomancy/leiningen/blob/master/sample.project.clj#L209-L211 mean ? In particular, I'm confused about: Forms to prepend to every form that is evaluated inside your project. I only want to

Re: Logo usage

2014-04-09 Thread Tim Visher
On Wed, Apr 9, 2014 at 4:06 PM, Plínio Balduino pbaldu...@gmail.com wrote: Hi there Is there any restriction about the usage of Clojure logo in magazines, books and printed materials? Yes. You must get permission from Tom Hickey, I believe, who listens on this list (or at least used to).

Re: Any experience with Cognitect?

2014-04-09 Thread Tim Visher
 On Wed, Apr 9, 2014 at 4:47 PM, Mike Haney txmikes...@gmail.com wrote: Thanks for the feedback. Resume updated - check Cover letter written - check Email sent - check Ego intact - pending -- You received this message because you are subscribed to the Google Groups Clojure group. To

Re: Any experience with Cognitect?

2014-04-08 Thread Tim Visher
On Tue, Apr 8, 2014 at 12:56 PM, Mike Haney txmikes...@gmail.com wrote: Cognitect (and previously Relevance) always seem to have openings for contract Clojure developers. I was wondering if anyone here has applied for and/or actually been hired for one of these positions, and was willing to

Re: [ClojureScript] ANN: ClojureScript 0.0-2199

2014-04-01 Thread Tim Visher
Hi David, On Tue, Apr 1, 2014 at 2:38 PM, David Nolen dnolen.li...@gmail.com wrote: ClojureScript, the Clojure compiler that emits JavaScript source code. New release version: 0.0-2199 The only difference is the removal of spurious warnings about required/imported Google Closure libraries.

Re: Unexpected core.async timeout behaviour

2014-03-28 Thread Tim Visher
Hi Peter, On Fri, Mar 28, 2014 at 2:48 AM, Peter Taoussanis ptaoussa...@gmail.com wrote: Hi all, quick question: `(dotimes [_ 5] (go (! (async/timeout 100` runs as expected. `(dotimes [_ 5] (go (! (async/timeout (+ 50 (rand-int 100))` produces an error: ( (.size takes)

Re: Unexpected core.async timeout behaviour

2014-03-28 Thread Tim Visher
On Fri, Mar 28, 2014 at 8:08 AM, Peter Taoussanis ptaoussa...@gmail.com wrote: Hi Tim, thanks for the info! It's not clear to me that this is the same issue, unfortunately. (Though I may be missing something obvious). In the example I've provided above, we're actually creating a _new_

Re: How should I begin this project?

2014-03-24 Thread Tim Visher
On Thu, Mar 20, 2014 at 1:43 PM, kurofune jesseluisd...@gmail.com wrote: Thank you very much for both of those emails Gary. Your programming advice rang very true and doodle does look almost exactly like what I need. I'll look into that and google calendar, but now I need a good project to

Re: How should I begin this project?

2014-03-24 Thread Tim Visher
On Mon, Mar 24, 2014 at 12:49 PM, Aditya Athalye aditya.atha...@gmail.com wrote: Thanks for the lead on exercism.io, Tim. I just set it up, to peek at how it looks/works. The setup itself was a breeze, and the very first exercise is a nice little text processing problem. (Based on Deaf

Re: How should I begin this project?

2014-03-20 Thread Tim Visher
I would just use Google Calendar for that. On Thu, Mar 20, 2014 at 3:53 AM, kurofune jesseluisd...@gmail.com wrote: At my job, I have to meet clients multiple times a week and schedule appointments with them at various places around town. Recently, I have seen a boom in business and while

Re: Image processing

2014-02-28 Thread Tim Visher
I assume you're referring to https://github.com/neatonk/im4clj ? On Thu, Feb 27, 2014 at 10:24 PM, exel...@gmail.com exel...@gmail.com wrote: Hi Michael, Got some good results on img processing tests. I got image resizer working nice, it was a resource path issue. However after some side

Re: Image processing

2014-02-28 Thread Tim Visher
The main disadvantage with this, of course, being requiring imagemagick on the command line. On Fri, Feb 28, 2014 at 2:51 PM, The Dude (Abides) exel...@gmail.com wrote: Yes via im4clj - https://github.com/neatonk/im4clj [im4clj 0.0.1] The developer recommends shell scripting with Conch with

Re: Helping newcomers get involved in Clojure projects

2014-01-27 Thread Tim Visher
On Sat, Jan 25, 2014 at 1:54 PM, Bridget bridget.hill...@gmail.com wrote: OpenHatch has this great initiative for encouraging newcomers to get involved with open source projects. You tag some issues in your bug tracker as newcomer or easy. This provides a gentle path into contributing. There

Re: ClojureScript integration with Emacs/Cider ?

2014-01-06 Thread Tim Visher
Hi Alexandru, On Sun, Jan 5, 2014 at 3:30 PM, Alexandru Nedelcu a...@bionicspirit.com wrote: I can’t get auto-completion or jumping to the definition of a function in Emacs, while working with ClojureScript. Is this a limitation of Emacs’ Cider plugin? IIUC, completing et al does not work for

Re: ClojureScript integration with Emacs/Cider ?

2014-01-06 Thread Tim Visher
On Mon, Jan 6, 2014 at 3:01 PM, David Nolen dnolen.li...@gmail.com wrote: Limitation of tooling. ClojureScript analyzer exposes the necessary information. That is seriously great to hear. I had no idea we were that far along. -- In Christ, Timmy V. http://blog.twonegatives.com/

Re: Require namespace

2014-01-05 Thread Tim Visher
Hi juanghui, If you're working out your stuff, more power to you, but I do want to say that you sound quite far off the beaten path of Clojure usage, so just be aware that you may be accomplishing your goal in a non-standard, hard to support way. :) On Sat, Jan 4, 2014 at 6:12 AM, jianghui

Re: Recommendations for a project with learning-friendly bugs and devs?

2013-12-28 Thread Tim Visher
Leiningen as well. :) On Fri, Dec 27, 2013 at 1:53 PM, Jakub Holy jakub.h...@iterate.no wrote: Hello, I'd like to sharpen my Clojure skill by contributing to an open source project and getting feedback on my patches from its developers. Can you recommend a project that would be suitable?

Re: Akka-like framework in Clojure ?

2013-12-27 Thread Tim Visher
Hi Eric, On Fri, Dec 27, 2013 at 3:54 AM, Eric Le Goff eleg...@gmail.com wrote: After a long background with imperative languages such as Java, I recently spent some time learning functionnal programming, starting with Scala. I had the opporrtunity to build a demo project based on the Akka

Re: Finding available methods or docs for a value type

2013-12-27 Thread Tim Visher
On Fri, Dec 27, 2013 at 6:27 AM, Niels van Klaveren niels.vanklave...@gmail.com wrote: Anthony Grimes made a find-fn that finds functions based on input parameters and output functions. So something like (find-fn clojure.core [1 2] {:a 1 :b 2}) would return vals and (find-fn clojure.core [:a

Re: Finding available methods or docs for a value type

2013-12-24 Thread Tim Visher
My searching is failing, but I remember someone publishing a library here that was meant to do exactly that. I can't remember if it was based on arity or on fuzzing or whatever but IRRC it would do the sort of thing you're asking for. Hope someone else can use search better than me or have a

Re: library development

2013-12-20 Thread Tim Visher
Maybe using lein checkouts is also something that would interest you? https://github.com/technomancy/leiningen/blob/master/doc/TUTORIAL.md#checkout-dependencies On Fri, Dec 20, 2013 at 9:22 AM, Daniel Higginbotham nonrecurs...@gmail.com wrote: lein install actually installs your library

Re: library development

2013-12-20 Thread Tim Visher
On Fri, Dec 20, 2013 at 12:16 PM, John Gabriele jmg3...@gmail.com wrote: If I can just `lein install` my libs (or other people's libs) and then use them in all my projects (just like the libs found at clojars), what extra functionality does lein-localrepo provide beyond that? lein-localrepo

Re: require library from inside the REPL

2013-12-18 Thread Tim Visher
You have a `'` in your ns macro that shouldn't be there. You're ns form should be: ``` (ns theshire.models.element (:require [clojurewerkz.welle.core :as wc] [clojurewerkz.welle.buckets :as wb] [clojurewerkz.welle.kv :as kv] [ring.util.codec :refer

Re: [ClojureScript] Re: [ANN] cljs-start 0.0.7 now support source-map

2013-12-17 Thread Tim Visher
On Tue, Dec 17, 2013 at 5:48 AM, Mimmo Cosenza mimmo.cose...@gmail.com wrote: May be for newcomers like me it will be good to add some integraional tips for emacs(others) editors.. I always feel guilty when talking about editors because I use emacs. It seems that the top clojurists are

Re: [ANN] cljs-start 0.0.7 now support source-map

2013-12-17 Thread Tim Visher
On Tue, Dec 17, 2013 at 8:14 AM, Andrew Voron volan...@gmail.com wrote: Well, Im not sure if I expressed myself correctly when asked for tips about editor - I thought about how to get Emacs (or may be other editor which support nrepl workflow) work with cljs-start. Now I see that it works good

Re: [ANN] cljs-start 0.0.7 now support source-map

2013-12-17 Thread Tim Visher
On Tue, Dec 17, 2013 at 8:21 AM, Lee Spector lspec...@hampshire.edu wrote: On Dec 17, 2013, at 6:01 AM, Cedric Greevey wrote: Calling emacs incidental complexity is like calling the North Pole a bit nippy this time of year. :) The thing is, it's actually possible to have the power of emacs

Re: Philadelphia SICP Study Group starting Feb 5th

2013-12-17 Thread Tim Visher
Hi Paul, On Tue, Dec 17, 2013 at 9:26 AM, Paul L. Snyder p...@pataprogramming.com wrote: On Tue, 17 Dec 2013, Steve Shogren wrote: Quite a few in the Philadelphia area expressed interest in having a study group around the excellent book Structure and Interpretation of Computer Programs, and

Re: IE compatibility of clojurescript, Element undefined problem

2013-12-16 Thread Tim Visher
Hi Xiangtao, If you needed to delete dommy in order to get thing working in IE6, _please_ file a bug report. I like dommy a lot and finding everywhere that it breaks compatibility with older browsers is crucial for its success. On Mon, Dec 16, 2013 at 8:28 AM, Xiangtao Zhou tao...@gmail.com

Re: Meta-eX: Power to Complect (featuring Rich Hickey)

2013-12-16 Thread Tim Visher
On Mon, Dec 16, 2013 at 6:41 AM, Samuel Aaron samaa...@gmail.com wrote: just a quick promotional email, so I'll keep it brief. Meta-eX[1] just pushed a small excerpt from a recent Live Session featuring the voice of Rich Hickey: https://soundcloud.com/meta-ex/power-to-complect It's not

Re: [ClojureScript] Re: AnNN: ClojureScript 0.0-2120

2013-12-16 Thread Tim Visher
On Mon, Dec 16, 2013 at 12:33 PM, Gary Johnson gwjoh...@uvm.edu wrote: Wait a minute... #js data literal support added Holy $#%^!!! Where is this documented?! MUST...USE...NOW! https://groups.google.com/d/msg/clojurescript/mUVbtdnAvHA/Voa86mDnNGwJ -- In Christ, Timmy V.

Re: cider status

2013-12-13 Thread Tim Visher
Hi Phil, On Fri, Dec 13, 2013 at 4:57 AM, Phillip Lord phillip.l...@newcastle.ac.uk wrote: Bozhidar Batsov bozhidar.bat...@gmail.com writes: On Tuesday, November 19, 2013 4:56:05 PM UTC+2, Phillip Lord wrote: I discovered one of the reasons for my issues with stability yesterday. The version

Re: [ClojureScript] AnNN: ClojureScript 0.0-2120

2013-12-13 Thread Tim Visher
On Fri, Dec 13, 2013 at 10:15 AM, David Nolen dnolen.li...@gmail.com wrote: ClojureScript, the Clojure compiler that emits JavaScript source code. README and source code: https://github.com/clojure/clojurescript New release version: 0.0-2120 Leiningen dependency information:

Re: Spit seems to use incorrect line terminator on Windoze

2013-11-25 Thread Tim Visher
On Mon, Nov 25, 2013 at 6:18 AM, Cedric Greevey cgree...@gmail.com wrote: And yet it does happen, with PrintWriter and similar. Consider the output of (println) on different operating systems. Do you have an example of println converting a \n character embedded in a string to the host's line

Re: Spit seems to use incorrect line terminator on Windoze

2013-11-25 Thread Tim Visher
On Mon, Nov 25, 2013 at 6:29 AM, Cedric Greevey cgree...@gmail.com wrote: (println) outputs nothing *but* the host's line terminator. Note that you have not embedded a \n character in anything in that example. What does (println \n) print? -- In Christ, Timmy V.

Re: Spit seems to use incorrect line terminator on Windoze

2013-11-24 Thread Tim Visher
Sounds like a bug to me. You could open a ticket to get further discussion going. On Sun, Nov 24, 2013 at 12:20 AM, Cedric Greevey cgree...@gmail.com wrote: (spit C:\\foo.txt test1\n) (spit C:\\foo.txt test2\n :append true) open file in notepad = test1test2 (spit C:\\foo.txt test1\r\n)

Re: Spit seems to use incorrect line terminator on Windoze

2013-11-24 Thread Tim Visher
Sorry. I didn't read the OP carefully enough. I agree with Alex. The JVM (and no platform I'm aware of) never has and probably never will offer to convert your end of line characters for you to whatever your target system is. On Sun, Nov 24, 2013 at 6:09 PM, Alex Miller a...@puredanger.com

Re: Spit seems to use incorrect line terminator on Windoze

2013-11-24 Thread Tim Visher
On Sun, Nov 24, 2013 at 7:53 PM, Cedric Greevey cgree...@gmail.com wrote: I already have more than enough user/pass pairs to keep straight. I'm not creating yet another one just to submit one lousy bug report that I've *already* posted where I know the developers often read. You can try

Re: [ClojureScript] ANN: ClojureScript 0.0-2075

2013-11-24 Thread Tim Visher
Hi Mark, On Sun, Nov 24, 2013 at 6:54 PM, Mark Mandel mark.man...@gmail.com wrote: I just upgraded from 0.0-2030 And now when I run lein-cljsbuild, I keep getting the error: Compiling resources/public/js/main.js from [src-cljs]... Compiling resources/public/js/main.js failed.

Re: [ClojureScript] ANN: ClojureScript 0.0-2067, regressions, type inference numeric checks

2013-11-22 Thread Tim Visher
I'm compiling fine with source-maps enabled in both whitespace and advanced mode, with marginal but not awful increases to time. On Fri, Nov 22, 2013 at 10:16 AM, David Nolen dnolen.li...@gmail.com wrote: ClojureScript, the Clojure compiler that emits JavaScript source code. README and source

Re: [ClojureScript] Re: ANN: ClojureScript 0.0-2060

2013-11-21 Thread Tim Visher
Thanks for the patch, Feng. Patches don't tend to get discussed on the mailing list for Clojure. Do you have your CA signed yet? http://clojure.org/contributing Ironically, I had basically produced this patch, line for line, a couple of hours ago. Hopefully we can get a release out soon. This

Re: [ANN] Leiningen 2.3.4 released

2013-11-20 Thread Tim Visher
Thanks so much to Phil, Nelson, Jean Niklas, and the rest of the Leiningen team! On Tue, Nov 19, 2013 at 1:41 PM, Phil Hagelberg p...@hagelb.org wrote: Hello folks. I'm happy to announce the release of Leiningen 2.3.4. This one is primarily a bugfix release; though there are a few minor

Re: [ClojureScript] ANN: ClojureScript 0.0-2030, core.async compatibility

2013-11-14 Thread Tim Visher
Figure I'd ask this on this thread since it's the latest public release. I'm trying to get relative source maps to work and I'm not sure if I'm doing something wrong or there's a bug. I have the following entry in my [project.clj][] `cljsbuild` section with `0.0-2030` in my deps: {:id

Re: cider status

2013-11-12 Thread Tim Visher
While I'm glad to hear that there are users out there for whom cider is working great, I would still say based on following the project on GitHub that there are far too many issues being filed based on function names not being defined etc. to consider the current release stable. As always, YMMV.

Re: Name of graphing library

2013-11-11 Thread Tim Visher
This smacks of something that I saw in a Stu Halloway talk once. I also can't remember the name of it. :( On Mon, Nov 11, 2013 at 4:14 AM, JvJ kfjwhee...@gmail.com wrote: I once encountered a library that could render clojure data structures (i.e. trees, maps, etc.) as ascii text. I can't

Re: What font is used for Clojure on clojure.org?

2013-11-07 Thread Tim Visher
https://github.com/clojure-emacs/cider/issues/399#issuecomment-27805491 I think it blends the Cider concept with the clojure characters ... the other are more colorful but really it looks like a coffee mug. Great Job! Erlis On Wed, Nov 6, 2013 at 12:32 PM, Tim Visher tim.vis...@gmail.com

Re: What font is used for Clojure on clojure.org?

2013-11-07 Thread Tim Visher
at 9:10 AM, Erlis Vidal er...@erlisvidal.com wrote: And what about the screencasts? On Nov 7, 2013 8:34 AM, Tim Visher tim.vis...@gmail.com wrote: It's funny that in the comments bbatsov and I have already explored this space a bit. :) It seems like everyone has a different experience

What font is used for Clojure on clojure.org?

2013-11-06 Thread Tim Visher
I'm looking for it to incorporate it into a cIDEr logo I'm playing with. -- In Christ, Timmy V. http://blog.twonegatives.com/ http://five.sentenc.es/ -- Spend less time on mail -- -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this

Re: What font is used for Clojure on clojure.org?

2013-11-06 Thread Tim Visher
, Tim Visher wrote: I'm looking for it to incorporate it into a cIDEr logo I'm playing with. -- In Christ, Timmy V. http://blog.twonegatives.com/ http://five.sentenc.es/ -- Spend less time on mail -- -- You received this message because you are subscribed to the Google Groups Clojure

Re: [ClojureScript] ANN: ClojureScript 0.0-1978

2013-10-28 Thread Tim Visher
Nice! Incremental compilation of whitespace optimizations + source maps are now working for me! On Sun, Oct 27, 2013 at 9:32 PM, David Nolen dnolen.li...@gmail.com wrote: ClojureScript, the Clojure compiler that emits JavaScript source code. README and source code:

Conj Schedule any time soon? EOM

2013-10-27 Thread Tim Visher
Conj Schedule any time soon? EOM -- -- 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 post. To unsubscribe

Re: [ANN] Timeline - a library for time-varying data values

2013-10-15 Thread Tim Visher
On Tue, Oct 15, 2013 at 8:15 AM, Mikera mike.r.anderson...@gmail.com wrote: I just created a new, small, experimental library because I needed to represent a timeline of values as an immutable object. This sounds very cool. I've been thinking about doing something like this for awhile to

Re: [ANN] Grenchman, for running Clojure code quickly

2013-10-13 Thread Tim Visher
All I want to say is that you are still _the man_ when it comes to pushing cli clojure tooling forward, IMHO. Thanks so much! On Tue, Oct 8, 2013 at 10:49 PM, Phil Hagelberg p...@hagelb.org wrote: When we've polled Leiningen users in the past[1], the #1 pain point people always report is its

Re: how to reload Clojure files while connected to Clojurescript browser repl in Emacs?

2013-10-07 Thread Tim Visher
On Mon, Oct 7, 2013 at 2:26 AM, George Oliver georgeolive...@gmail.com wrote: On Sunday, October 6, 2013 11:15:26 PM UTC-7, George Oliver wrote: I could be wrong but my understanding is that the browser is just connecting to your cljs repl which actually is in the 'clojure repl'. Certainly if

Re: how to reload Clojure files while connected to Clojurescript browser repl in Emacs?

2013-10-06 Thread Tim Visher
On Wed, Oct 2, 2013 at 3:17 AM, George Oliver georgeolive...@gmail.com wrote: On Sunday, September 29, 2013 8:12:23 PM UTC-7, Tim Visher wrote: Now with nrepl's ability to have multiple sessions open at once (an ability I haven't taken any advantage of personally), you should be able to have

Re: how to reload Clojure files while connected to Clojurescript browser repl in Emacs?

2013-09-29 Thread Tim Visher
I'll let others comment further on your general workflow, but I do think you have a fundamental misunderstanding about the browser repl. The browser repl is directly connected to the browser, so you don't need to refresh the page to see changes you're making at the browse repl. In fact, if you

Re: Clojure, floats, ints and OpenGL

2013-09-16 Thread Tim Visher
Hi Mikera, I don't have a whole lot of skin in this game as, unfortunately, I haven't run into any performance bottlenecks that I couldn't fix in a satisfying way whilst writing Clojure. My impression, however, is that there are some people in the community who feel the performance limitations

Re: [ClojureScript] ANN: ClojureScript 0.0-1877 (Breaking change)

2013-09-09 Thread Tim Visher
On Sun, Sep 8, 2013 at 7:42 PM, David Nolen dnolen.li...@gmail.com wrote: ClojureScript, the Clojure compiler that emits JavaScript source code. README and source code: https://github.com/clojure/clojurescript New release version: 0.0-1877 Leiningen dependency information:

Re: [ANN] clojuretip.herokuapp.com

2013-09-07 Thread Tim Visher
Hah! Love it! On Sat, Sep 7, 2013 at 1:09 PM, Steven Degutis sbdegu...@gmail.com wrote: Yesterday in #clojure: TimMc To get your random API learnin' of the day, just run: (- clojure.core quote the-ns ns-publics seq rand-nth val meta ((juxt :name :doc)) (map println) dorun) Awesome, right?

Re: Clojure for the Brave and True, an online book for beginners

2013-09-05 Thread Tim Visher
On Wed, Sep 4, 2013 at 6:32 PM, Daniel Higginbotham nonrecurs...@gmail.comwrote: With the C-s/C-r keybindings, I think the emacs.d I point has swapped isearch and regexp search. I'll double-check that. This is an amazing microcosm of _exactly_ why Rich and others seem to be pointing people

Re: tools for minimizing forward declaration

2013-08-20 Thread Tim Visher
On Mon, Aug 19, 2013 at 11:09 PM, Armando Blancas abm221...@gmail.com wrote: I'll point out as well that though I thought Yegge's criticisms of Clojure were a bit polemical (I guess that's his style), the single pass compiler issue was one of his biggest gripes, and I do think it still rings

Re: tools for minimizing forward declaration

2013-08-19 Thread Tim Visher
I'll point out as well that though I thought Yegge's criticisms of Clojure were a bit polemical (I guess that's his style), the single pass compiler issue was one of his biggest gripes, and I do think it still rings true. I feel like I have to babysit clojure in this regard, when I usually feel

Re: function creation, partial or #()

2013-08-16 Thread Tim Visher
I will also note that any lamdba of more than one (_maybe_ two) args _must_, for me, be in the `(fn […] …)` form. Not only does it have the advantage of taking the function name, but it also is much easier to read what it's doing when I can explicitly name it's inputs. On Fri, Aug 16, 2013 at

Re: Help with Incanter and Emacs

2013-08-13 Thread Tim Visher
On Tue, Aug 13, 2013 at 1:59 PM, Akhil Wali green.transis...@gmail.com wrote: Hi All, A really noob question. Why do I get FileNotFoundException Could not locate incanter__init.class or incanter.clj on classpath: clojure.lang.RT.load (RT.java:443) when i load a file that uses incanter in

Re: function creation, partial or #()

2013-08-13 Thread Tim Visher
On Tue, Aug 13, 2013 at 8:47 AM, Jay Fields j...@jayfields.com wrote: Say you have a simple function: (defn do-work [f] (f)) When you want to call do-work you need a function, let's pretend we want to use this function: (defn say-hello [n] (println hello n)) Which of the following solutions

Re: Help with Incanter and Emacs

2013-08-13 Thread Tim Visher
ritz.nrepl.middleware.simple-complete/wrap-simple-complete]}}} On Tuesday, August 13, 2013 11:35:58 PM UTC+5:30, Tim Visher wrote: On Tue, Aug 13, 2013 at 1:59 PM, Akhil Wali green.tr...@gmail.com wrote: Hi All, A really noob question. Why do I get FileNotFoundException Could not locate

Re: Help with Incanter and Emacs

2013-08-13 Thread Tim Visher
:24 PM UTC+5:30, Tim Visher wrote: And you're connecting to the project how? On Tue, Aug 13, 2013 at 2:11 PM, Akhil Wali green.tr...@gmail.com wrote: Well Here's my project.clj. (defproject someproj 0.1.0-SNAPSHOT :dependencies [[org.clojure/clojure 1.5.1

Re: Should `nbsp;` be trimmed using `clojure.string/trim`? EOM

2013-08-12 Thread Tim Visher
Hi Andy, On Mon, Aug 12, 2013 at 12:17 AM, Andy Fingerhut andy.finger...@gmail.com wrote: Clojure's clojure.string/trim uses Java's String/trim, but clojure.string/triml and trimr use Java's Character/isWhitespace to determine which characters are white space to remove. CLJ-935 has a

Should `nbsp;` be trimmed using `clojure.string/trim`? EOM

2013-08-11 Thread Tim Visher
Should `nbsp;` be trimmed using `clojure.string/trim`? EOM -- -- 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

Re: Should `nbsp;` be trimmed using `clojure.string/trim`? EOM

2013-08-11 Thread Tim Visher
Sorry, I should have been more clear. In the following the space at the end of the string is a no break space and the first execution is under clojurescript, the second under clojure. user (clojure.string/trim 54 ) 54 bible-plan.mcheyne :cljs/quit :cljs/quit

  1   2   >