[ANN] Nubank's aws-api 0.8.692

2024-01-31 Thread Scott Bale
Nubank's aws-api 0.8.692 is now available. 0.8.692 / 2024-01-31 * upgrade to cognitect http-client 1.0.127 * upgrade to org.eclipse.jetty/jetty-client-9.4.53.v20231009 #249 * upgrade to org.clojure/core.async 1.6.681 * upgrade to or

[ANN] aws-api 0.8.686 is now available!

2023-07-06 Thread Scott Bale
aws-api 0.8.686 is now available! 0.8.686 / 2023-07-06 * Support list member values in request headers #234 README: https://github.com/cognitect-labs/aws-api/ API: https://cognitect-labs.github.io/aws-api/ Changelog: https://github.com/cogn

Re: Mexico City Clojureists?

2020-10-22 Thread Scott Klarenbach
Ok great. If anyone is down for a beer in the sun to chat about tech, programming etc let me know. We've also got some contract work for Clojure devs on a pretty regular basis if anyone is interested. This is my company: https://invisiblerobot.io -- You received this message because you are su

Mexico City Clojureists?

2020-10-20 Thread Scott Klarenbach
Wondering who is living/working in Mexico City? -- 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

Re: How to apply multiple values to a function

2018-03-28 Thread Scott Thoman
call one time. For example... (apply treat-request [x1 y1 z1] > [x2 y2 z2] [x3 y3 z3]) > > > How about something like (map (partial apply treat-request) [[x1 y1 z1] [x2 y2 z2] [x3 y3 z3]]) ? /Scott -- You received this message because you are subscribed to the Google Groups "Cloju

Re: If Clojure is to blame for the majority of the startup time, why doesn't ClojureScript proportionally slow down the JavaScript startup time also?

2018-01-31 Thread scott stackelhouse
I was just reading about Docker+CRIU. For me, the slow startup isn't much of a bother for normal operations of my apps. They are generally long running services. But development is where I am bothered by it the most. It can be painful to restart a repl and it's very disruptive to my abilit

Re: Code Review -- Testing truthiness twice

2017-10-01 Thread Scott Barrett
Very helpful! Thanks for the swift and response critique. -- 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 firs

Code Review -- Testing truthiness twice

2017-10-01 Thread Scott Barrett
Clojure noob, here. I'm very excited to be learning about this language and becoming a part of this community :) I'm writing a function that works well, but seems just a bit wrong to me, stylistically speaking. I was hoping I could get some guidance from you all. Here's the code: (defn get-if

Clojure(script) Contractors in Vancouver?

2017-08-25 Thread Scott Klarenbach
es if this violates the group etiquette, just figured it would be a good place to get the word out. -- Regards, Scott Klarenbach Invisible Robot Technologies invisiblerobot.io 604-537-1856 scott@i nvisiblerobot.io Suite R - 2404 Guelph Street Vancouver, BC, V5T 3P3

RE: is s/and different inside an s/fdef?

2017-08-12 Thread scott stackelhouse
ec) as the first predicate in the s/and worked. --Scott -- 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

Re: is s/and different inside an s/fdef?

2017-08-11 Thread scott stackelhouse
sorry, I edited this a few times and bumbled the words. That last sentence should say: I can think of different ways to do it, but I don't think any of them are better. However I feel the example used above [...] On Friday, August 11, 2017 at 1:06:39 PM UTC-7, scott stackelhouse wrote:

is s/and different inside an s/fdef?

2017-08-11 Thread scott stackelhouse
bove this paragraph in the guide could be changed a little to make the behavior clearer... I have never checked, but I assume the clojure docs are on github? If so are pull requests welcomed for updating docs? --Scott -- You received this message because you are subscribed to the Google Groups &q

Re: [ANN] Clojure 1.9.0-alpha16 is now available

2017-04-27 Thread scott stackelhouse
Glad to see this separation. Also I just wanted to chime in and say that I greatly appreciate the work you've done with Spec. It's been a great help to me. On Thursday, April 27, 2017 at 8:20:16 AM UTC-7, Alex Miller wrote: > > Clojure 1.9.0-alpha16 is now available. > > [...snip...] > Also

Re: Application silently shuts down by itself after running for some hours

2017-03-04 Thread Scott Bauer
Out of curiosity, have you tried catching any and all errors as opposed to expecting to see an error message logged upon the system dying? While searching for possible causes, I did come across this similar post from a few

Monads and Middleware

2016-07-01 Thread Scott Klarenbach
lling reason to use monads in clojure instead of middleware? 3.) Are there classes of problems that can be solved with monads that can't be solved with middleware? 4.) Is there any benefit (beyond curiosity) to porting/re-implementing middleware as monads? Thanks. Scott

Re: Joy of Clojure : Backward running lisp ??

2016-06-27 Thread Scott Nielsen
On Wednesday, June 22, 2016 at 8:22:35 PM UTC-6, Ashish Negi wrote: > > I am reading joy of clojure. In the "forward to second edition" William E > Byrd and Daniel P Firedman says : > > > > *As with recursion, the art of defining little languages encourages—and > rewards—wishful thinking. You m

Re: clojure.spec

2016-05-24 Thread scott stackelhouse
I restructured my data to make this section an optional sub-map, which I think is actually better anyway. On Tuesday, May 24, 2016 at 11:08:27 AM UTC-7, scott stackelhouse wrote: > > Ok. > > Thanks all who have worked on this, btw. It is incredibly timely for me > and is alr

Re: clojure.spec

2016-05-24 Thread scott stackelhouse
Ok. Thanks all who have worked on this, btw. It is incredibly timely for me and is already great help for a work project. --Scott On Tuesday, May 24, 2016 at 10:57:26 AM UTC-7, Rich Hickey wrote: > > ‘and' and ‘or’ are not currently supported in :opt > > > > On M

Re: clojure.spec

2016-05-24 Thread scott stackelhouse
a ::b ::c] :opt [(and ::d ::e ::f)]) and that fails an assertion. It appears that the logicals (and, or) are not allowed in the optional section? Am I thinking about this in the wrong way? --Scott -- You received this message because you are subscribed to the Google Groups "Clojure&

Re: clojure.spec

2016-05-23 Thread scott stackelhouse
;b" "c") ("d" "e" "f")] > > The benefit of using s/* in string-list is that if you wanted to include > string-list inside another regex you could but with coll-of, it would > always start a new collection: > > (s/conform (s/cat :nu

Re: clojure.spec

2016-05-23 Thread scott stackelhouse
Could someone describe what a spec of a seq in a seq would look like? i.e. ['("a" "b" "c") '("d" "e" "f")]. I'm not quite "getting it." --Scott On Monday, May 23, 2016 at 7:12:29 AM UTC-7, Rich Hickey wrot

Re: Lein :provided profile and uberjar not working

2015-06-03 Thread Scott Klarenbach
The issue was that I hadn't removed the dependencies from the toplevel vector. Thanks to Jeremy Heiler for pointing that out. On Wednesday, June 3, 2015 at 12:35:30 PM UTC-7, Scott Klarenbach wrote: > > I'm unable to post a new topic to the leinigen group so I thought I'

Lein :provided profile and uberjar not working

2015-06-03 Thread Scott Klarenbach
I'm unable to post a new topic to the leinigen group so I thought I'd try my luck here. I'd like to exclude certain dependencies from my uberjar, by using the :provided profile, but the jars are always included. I've added the following to my project.clj, but the edu.stanford.nlp jars end up

Silence "WARNING: Long already refers to: class java.lang.Long in namespace: ..." in aot compile compatible way

2015-04-27 Thread Scott Nielsen
he ns-unmap is being executed causing the ns-unmap to unmap the desired 'Long and not java.lang.Long. Is there a way to silence the warning in a way that will work with both aot and non-aot compiled code? Thanks for any help in advance, Scott -- You received this message because you are

Re: Testing macros that throw errors at compile time?

2015-01-24 Thread Scott Rabin
n should be true >> >> As long as you know that the *right* exception is being thrown. >> >> On Thu, Jan 22, 2015 at 4:41 PM, Scott Rabin > > wrote: >> >>> We have a few macros in my employer's codebase that throw compile-time >>> errors

Testing macros that throw errors at compile time?

2015-01-22 Thread Scott Rabin
We have a few macros in my employer's codebase that throw compile-time errors when you've given them invalid configurations, and have generally simply tested the result of these macros and not necessarily the direct expansion of said macros. What we would like to do is *test* that the macro blo

Re: Transducers are Coming

2014-08-07 Thread Scott Thoman
I doubt I can answer this as clearly as Rich or others but... I think the answer to this lies in the fact that composing transducers is composing reducer-transformers not reducer functions themselves. When composing reducer-transformers, the result is another transformer. When this new transfo

Re: Sequential processing of the data

2014-08-02 Thread Scott Nielsen
Hi Alexander, The partition function is the tool you're looking for to help create the windows in your example. http://grimoire.arrdem.com/1.6.0/clojure.core/partition/ I made a comment on your gist that shows how it would be used in your example. Scott Nielsen On Aug 2, 2014, at 12:

Re: Is Korma still a good current choice for DB backend?

2014-07-25 Thread Scott Nielsen
agnostic, so it will work with any connection that clojure.java.jdbc can work with, including a connection pool. Scott Nielsen > > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to

Re: Instaparse - thank you!

2014-06-11 Thread Scott Thoman
+1 ! I'm about to use it in a production deployment. It has been a pleasure to use! -- 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 - pleas

Re: [ANN] Instaparse 1.3.0

2014-03-12 Thread Scott Thoman
Excellent! I've actually been using instaparse on a small "filter expression" compiler that looks headed for production now. It has worked *very* well and has been a pleasure to use! Thanks for a great tool. /stt On Wed, Mar 12, 2014 at 8:53 PM, Mark Engelberg wrote: > Instaparse is a lightwe

Re: core.async pub/sub

2014-03-05 Thread Scott Johnson
all" sub-two) (go (while true (let [v (! pub-chan "shine") (! pub-chan "on") (! pub-chan "you crazy") (! pub-chan "diamond"))) -Scott On Thursday, July 11, 2013 2:15:28 AM UTC-7, Thomas Heller wrote: > > Hey, > > the lab stuff looks very

"Dynamically" push / pull / read Data Into and Out of Excel

2013-12-10 Thread scott tudd
built a clojure (wrapper) library: https://github.com/tuddman/clj-dde basically it can 'monitor' defined Excel cells for changes... which can 'trigger' your clojure app to do stuff. conversely, can add / modify data in Excel cells programmaticaly from clojure ;-), as well. useful for 'real-tim

Re: Big Excel (xlsx) file parsing (docjure, incanter...)

2013-12-10 Thread scott tudd
orthogonal, perhaps helpful: I wrote a clojure (wrapper) library that "streams" data in-and-out of Excel quite easily (and other applications, mostly finance, that use DDE). especially useful if you need to monitor or updates changes to cells. https://github.com/tuddman/clj-dde feedback welcome

Re: Any interest in Compojure/Ring screencasts?

2013-10-31 Thread Scott Thoman
On Thursday, October 31, 2013 7:28:39 PM UTC-4, Amr Malik wrote: > > Yes please, I'd be interested :) > > -A > > On Tuesday, 29 October 2013 18:39:05 UTC-4, James Reeves wrote: >> >> I'm considering putting together a screencast, or a series of >> screencasts, based on my Functional Web >> Arch

What non-deprecated Clojure Web libraries to use?

2013-10-27 Thread Scott M
Ring seems well maintained, but Noir and Compojure are marked deprecated. Can anyone lay out a Clojure Web library "stack" (up to templating) that is current and maintained? Any and all sagacious wisdom greatly appreciated - thanks! - Scott -- -- You received this message becau

Re: FileNotFoundException when running lein droid new

2013-03-25 Thread Scott Thoman
Perfect! I'll grab master for now. > > Thanks! /stt -- -- 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

FileNotFoundException when running lein droid new

2013-03-25 Thread Scott Thoman
All, I figured I'd give the leiningen droid plugin a shot now that I've got a few spare moments to mess around with clojure for an android app. However, when I attempt to bootstrap a new project, I get the following: - $ lein --version

Re: How to ensure consistency when accessing database?

2013-03-07 Thread Scott Reynolds
Use mongo findandmodify command. Only way I know On Mar 6, 2013 8:36 AM, "bruce li" wrote: > Hello, > I'm working on a piece of code that uses congomongo to access mongodb. > What I want to implement is to use one collection of the DB as a > queue(let's say, it's called "task"). > > Using congomo

Re: Heroku & Boot Times

2013-01-23 Thread Scott Parker
ble. Thanks a bunch Jeroen. -SP On Wed, Jan 23, 2013 at 11:19 AM, Jeroen van Dijk < jeroentjevand...@gmail.com> wrote: > Hi Scott, > > We had some issues as well. SNAPSHOTS are likely to be an issue because > they are re-checked at least once a day. So if your app needs a restart &g

Heroku & Boot Times

2013-01-23 Thread Scott Parker
Anyone else running a production website with Clojure in Heroku and struggling with boot time problems? After digging through our logs from the past month, I've noticed it's not uncommon to have a dyno crashed for awhile because of boot time problems. It seems especially likely when dynos are cycli

Re: [ANN] Tower, simple i18n library for Clojure

2013-01-05 Thread Scott Thoman
On Saturday, January 5, 2013 3:12:43 PM UTC-5, Peter Taoussanis wrote: > > >> I will update and give the code a try. Thanks for the fast turnaround! >> > > No problem. > > >> As far as your first and last questions, they both sort of came from the >> same scenario I was pondering. I was thi

Re: [ANN] Tower, simple i18n library for Clojure

2013-01-04 Thread Scott Thoman
On Friday, January 4, 2013 3:37:49 AM UTC-5, Peter Taoussanis wrote: > > Just pushed 1.2.0 with `merge-config!` and dictionary merging (rather than > resetting) on dev-mode changes. I will update and give the code a try. Thanks for the fast turnaround! As far as your first and last questions

Re: [ANN] Tower, simple i18n library for Clojure

2013-01-03 Thread Scott Thoman
On Thursday, June 14, 2012 8:23:43 AM UTC-4, Peter Taoussanis wrote: > > Hi all, > > Just put up an early release of a little i18n library that some of you > might find useful. > > It's on Github (https://github.com/ptaoussanis/tower) and Clojars ( > https://clojars.org/tower). > > Features (tak

Re: ClojureCLR Build Error

2012-11-12 Thread Scott Thoman
On Wednesday, April 18, 2012 9:59:34 PM UTC-4, dmiller wrote: > We discovered this was due to building on the beta of .Net 4.5. > ClojureCLR has not been updated to 4.5 yet. > > In this case, a new method was introduced in an interface, causing the > proxy to have a missing method. > > 4.5 supp

Re: Alternate set literal syntax?

2012-03-24 Thread Scott Jaderholm
:space:]]" "→") ("(\\(partial\\)[\[[:space:]]" "þ") ("(\\(complement\\)[\[[:space:]]" "¬") ;; not working ;; ("Math/pi[:space:]" "π"

Re: Which emacs packages?

2012-03-12 Thread Scott Jaderholm
- Auto-complete & Ac-slime http://www.youtube.com/watch?v=kH0gOE7rj7g and http://www.youtube.com/watch?v=dio__Qylp-s - yasnippets - clojure-refactoring - align-cljlet http://www.youtube.com/watch?v=m_5Dldykckg - define-function http://www.youtube.com/watch?v=D2s_d9gvNVI Scott On Thu, M

Re: [ANN] analyze 0.1

2012-01-02 Thread Scott Jaderholm
Very cool. If you think of other potential example errors this would be capable of detecting it might be nice to include them in a TODO list in the README. This might motivate someone to implement them or develop a nice emacs UI for displaying these errors. Scott On Mon, Jan 2, 2012 at 4:14 AM

Re: Clojure list syntax sugar: f(x) notation

2011-12-27 Thread Scott Jaderholm
Do you support this? classic: ((foo bar) baz) your syntax: foo(bar)(baz) Scott On Mon, Dec 26, 2011 at 1:09 PM, Louis Yu Lu wrote: > Recently, I found freedom of coding playing with Clojure with over 20 > years’ experience on other program languages, Previously, I had > several

Re: on lisp and scheme macros

2011-12-03 Thread Scott Jaderholm
Scheme style macros in Clojure: https://github.com/qbg/syntax-rules Scott On Sat, Dec 3, 2011 at 1:20 PM, Razvan Rotaru wrote: > Hi everyone, > > I was searching the web these days trying to find out more about these > two macro systems and understand their differences, an

Re: problems of a newbie

2011-11-07 Thread Scott Jaderholm
On Mon, Nov 7, 2011 at 8:33 AM, Dennis Haupt wrote: > Am 07.11.2011 14:02, schrieb Scott Jaderholm: > > On Mon, Nov 7, 2011 at 4:27 AM, Dennis Haupt > <mailto:d.haup...@googlemail.com>> wrote: > > > > Am 07.11.2011 10:18, schrieb Dennis Haupt: > >

Re: problems of a newbie

2011-11-07 Thread Scott Jaderholm
On Mon, Nov 7, 2011 at 4:27 AM, Dennis Haupt wrote: > Am 07.11.2011 10:18, schrieb Dennis Haupt: > > > >> > >> > >> In his code I did notice he doesn't use destructing very much. > >> > > > > where would that have been useful? > > defn x [{:keys [foo bar]} param] > > instead of > > defn x [param]

Re: problems of a newbie

2011-11-06 Thread Scott Jaderholm
On Sun, Nov 6, 2011 at 11:33 AM, Milton Silva wrote: > On Nov 5, 12:16 pm, Dennis Haupt wrote: > > -BEGIN PGP SIGNED MESSAGE- > > Hash: SHA1 > > > > hi, > > > > i'm half done with my asteroids clone. i stumbled over a few problems > > and wanted to know how others already solved them :)

Re: Will clojurescript get in-ns and load?

2011-10-20 Thread Scott Jaderholm
There is a load-file function in clojurescript, I'm guessing that doesn't do what you want? Scott On Thu, Oct 20, 2011 at 1:07 PM, Dave Sann wrote: > Thinking further, the capability would not be of use (to me) if it were not > consistent/indistinguishable across clojure a

Re: Is there a reader setting support BigDecimal by default?

2011-10-20 Thread Scott Hickey
ed out very well for balancing the needs of accuracy, speed and code complexity. It appears that the answer to the original question is "no, there is no way to configure the reader to default numbers with a decimal point to be BigDecimal instead of Double". Scott Hickey -- You received

Re: Is there a reader setting support BigDecimal by default?

2011-10-18 Thread Scott Hickey
riate. That's why I was hoping for a global default for reading decimal numbers as BigDecimal instead of IEEE floats or doubles. Scott Hickey -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to cloju

Re: Is there a reader setting support BigDecimal by default?

2011-10-17 Thread Scott Hickey
I've been using 1.2 but I would be OK with a solution in any version. Scott Hickey -- 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 mod

Is there a reader setting support BigDecimal by default?

2011-10-17 Thread Scott Hickey
In some versions of Scheme or Lisp, there is a flag that you can set so that the reader will create exact numbers by default (BigDecimal) instead of inexact doubles. Is there a way to do this in Clojure? Scott Hickey -- You received this message because you are subscribed to the Google

Re: strangeloop presentations

2011-09-30 Thread Scott Jaderholm
In the past they've been posted on infoq.com several months later. Scott On Fri, Sep 30, 2011 at 1:24 PM, Felix Filozov wrote: > Do you know if videos will be available? > > > On Friday, September 30, 2011, faenvie wrote: > > hi clojure-users, > > >

Re: How to attach debugger on clojure's repl ?

2011-09-23 Thread Scott Jaderholm
The README doesn't mention any cake plugins, that's why cake ritz isn't working. If cake supports lein plugins then maybe you didn't do lein plugin install ritz 0.1.7. Perhaps use lein or the maven plugin instead. Scott On Fri, Sep 23, 2011 at 8:00 AM, Sam Aaron wr

Re: How to attach debugger on clojure's repl ?

2011-09-21 Thread Scott Jaderholm
orite things with it is using it with OpenJDK w/ source so I can go down the rabbit hole of stepping into my code, Clojure, and the JVM itself (just for fun, not had a need for this yet). Scott On Wed, Sep 21, 2011 at 6:01 PM, Timothy Washington wrote: > This guy's put together a good video

ClojureScript: defn alert fails in browser repl

2011-09-20 Thread Scott Jaderholm
r-str (alert 1 2 3)) :as "cljs.core.pr_str.call(null,cljs.user.alert.call(null,1,2,3));\n" # nil Can anyone reproduce/explain? Thanks, Scott -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googl

Re: Example of a real-world ClojureScript web application

2011-08-10 Thread Scott Jaderholm
thing else? How has the debugging/error notification experience been? Scott On Tue, Aug 9, 2011 at 8:53 PM, Filip de Waard wrote: > I'm working on Vix, which is a document repository and content > management system written in Clojure with a CouchDB backend. After the > announ

Re: clojurescript development workflow

2011-07-25 Thread Scott Jaderholm
d? Perhaps ClojureScript repl could be hooked up to swank-js (similar to mozrepl) to send the code to your browser (a specific page even) for evaluation. https://github.com/ivan4th/swank-js Scott -- You received this message because you are subscribed to the Google Groups "Clojure"

Leiningen on OpenBSD

2011-07-23 Thread Scott Scites
While walking through the Clojure/Heroku/Database tutorial the Leiningen REPL fails to display a prompt. When I control-c out, the final output before closing shows a connection being made and the prompt. If I change out of the project directory and lein repl I get the connection and the promp

Re: Clojure for large programs

2011-07-07 Thread Scott Jaderholm
crayford/clojure-refactoring Scott -- 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 u

Re: ANN: Hafni

2011-06-30 Thread Scott Jaderholm
; (arr inc)) 1) ;; 4 ((*** (arr inc) (arr dec)) [1 1]) ;; [2 0] ((&&& (arr inc) (arr dec)) 1) ;; [2 0] ((fst (arr inc)) [1 1]) ;; [2 1] Scott On Mon, Jun 20, 2011 at 7:57 AM, Jonathan Fischer Friberg wrote: > Hi, > > I figured that I would announce a

Re: Other way to express (((m2) 2) 1)?

2011-06-29 Thread Scott Jaderholm
n (let [a {:b 1 \"c\" 2}] (+ a.b a.c))) => 3 " [& forms] `(do ~@(postwalk (fn [x] (if (lookup-symbol? x) (let [[map & keys] (.split (str x) "\\.")] `(flexible-get ~(read-string map) ~@keys))

Re: Other way to express (((m2) 2) 1)?

2011-06-29 Thread Scott Jaderholm
(defmacro ->f "like -> but f is threaded at pos 0 instead of 1" ([f] f) ([f x] `(~f ~x)) ([f x & more] `(->f (~f ~x) ~@more))) (->f m 2 2 1) Scott On Wed, Jun 29, 2011 at 7:00 PM, Antonio Recio wrote: > Is there other way to express (((m2) 2) 1)?

Re: Aw: Re: Aw: Which Clojure environments support arglist-on-space?

2011-06-06 Thread Scott Jaderholm
if you follow the instructions on swank-clojure readme then yes I think you get that. Scott On Mon, Jun 6, 2011 at 5:08 PM, Lee Spector wrote: > > On Jun 6, 2011, at 4:58 PM, Scott Jaderholm wrote: > > > I don't know of a step by step guide that includes autodoc. You need a

Re: Aw: Re: Aw: Which Clojure environments support arglist-on-space?

2011-06-06 Thread Scott Jaderholm
I don't know of a step by step guide that includes autodoc. You need an older version of slime that includes the contrib autodoc (i.e. not package.el version which lacks that contrib). I use 10-15-2009. Scott On Mon, Jun 6, 2011 at 4:38 PM, Lee Spector wrote: > > On Jun 6, 2011,

Re: Aw: Re: Aw: Which Clojure environments support arglist-on-space?

2011-06-06 Thread Scott Jaderholm
tions in arg position, if you're in an apply form it will show the args for the function being applied. Cheers, Scott On Mon, Jun 6, 2011 at 1:35 PM, Lee Spector wrote: > > On Jun 6, 2011, at 12:04 PM, Meikel Brandmeyer wrote: > >> Am Montag, 6. Juni 2011 17:53:37 UTC+2 schrie

Re: Clojurebox/emacs setup

2011-06-04 Thread Scott Sutherland
I'm far from an expert, but clojurebox uses slime for the REPL. I believe that what you are going to want is to use: lein swank to start a local swank server, then start emacs and M-x slime-connect typically, the default connection params (localhost, port 4005) should work to get you connected t

Re: Applying collection of functions

2011-04-07 Thread Scott Jaderholm
(map #((apply comp (reverse fs)) %) c) => (11 21 31) Scott On Thu, Apr 7, 2011 at 4:51 AM, zm wrote: > > Hi, > > Given a collection of functions > > (def fs [#(* % 10) #(+ % 1)]) > > and some numbers > > (def c [1 2 3]) > > How do I apply all the fu

Re: ClojureCLR startup times...

2011-03-19 Thread Scott Thoman
On Fri, Mar 18, 2011 at 3:57 PM, dmiller wrote: > No signed assemblies. > > What got you below the reported JIT activity into the real problem? > > On Mar 18, 11:37 am, Scott Thoman wrote: > >> I've had a similar issue unrelated to clojure.  In my case we had some

Re: ClojureCLR startup times...

2011-03-18 Thread Scott Thoman
On Fri, Mar 18, 2011 at 11:46 AM, Timothy Baldridge wrote: >> I'm open to suggestions on improving this.  In particular, more >> detailed profiling information would be of interest. > > Hrm...we have some fairly detailed profilers through my work, so I'll > have to fire it up over lunch and see wh

Re: Monad Lessons

2011-03-09 Thread Scott Jaderholm
is is free (http://xkcd.com/870/). Scott On Wed, Mar 9, 2011 at 2:15 PM, jim wrote: > I gave a talk at CodePaLOUsa on monads and got some favorable > feedback. So I thought I'd offer to do a live training session on > monads using pretty much the same material, but at a shared REPL &

Re: ANN: Clojure Toolbox (Early Beta)

2011-02-24 Thread Scott Jaderholm
On Wed, Feb 23, 2011 at 6:17 PM, James Reeves wrote: > I'm sure I've covered only a very small proportion of Clojure > libraries out there, so if you'd like to suggest a project that's not > on there, please do so in this thread, or in an email to me. I'll try > and update the site as quickly as p

Re: [ANN] emacs-nexus (Emacs client for Nexus Maven repository servers)

2011-02-14 Thread Scott Jaderholm
t; Maven artifacts. > > emacs-nexus is a minimal (elisp-only) Nexus client to search for > artifacts and display Leiningen/Maven dependencies: > > https://github.com/juergenhoetzel/emacs-nexus > > Any feedback/contribution is appreciated. > > Cool, maybe search clojars by defaul

Re: Emacs `align' function customization for Clojure

2011-01-05 Thread Scott Jaderholm
On Tue, Jan 4, 2011 at 9:10 PM, Eric Schulte wrote: > I wonder if anyone else has written any similar Emacs alignment rules > for Clojure which they would be interested in sharing? Alignment rules for let and defroutes are at the top of my most wanted list. (let [n(count content-

Re: Clojure Conj 2011?

2010-12-28 Thread scott
the two. Scott Hickey (no relation) On Dec 27, 8:07 pm, Alan Dipert wrote: > Hi, > > On Mon, Dec 27, 2010 at 7:41 PM, Sean Corfield wrote: > > Now that videos are being posted for the 2010 conj, I figured it might > > be worth asking if there has been any discussion about wh

ANN: Programothesis screencast series on Clojure, Emacs, etc

2010-11-12 Thread Scott Jaderholm
is for sending tasks (and reminders) to people through email without an account and for free. Cheers, Scott -- 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: macro debugger

2010-11-09 Thread Scott Jaderholm
It's not specialized like your link, but I think you can use normal debugging tools on macros: (defmacro foo [a] (swank.core/break) `(list ~a)) And CDT for stepping. Scott On Tue, Nov 9, 2010 at 8:50 AM, Sunil S Nandihalli < sunil.nandiha...@gmail.com> wrote: > Hello every

ANN: slice (a web library for writing and composing snippets of html, css, and js that are written in Clojure)

2010-11-08 Thread Scott Jaderholm
designers would hate this. Target is solo developers. Feedback welcome. Some of you may have seen an old version (https://gist.github.com/518689) several months ago that used it's own scoping rules and lots of macros. This is a complete rewrite. Cheers, Scott -- You received this message becaus

Re: Clojure Box Windows XP

2010-11-05 Thread Scott Jaderholm
This sounds like a problem with emacs server/client that might be unrelated to Clojure or Slime. Some configurations of emacs will start a server mode so that you can run emacsclient and have a new frame pop up instantaneously. If you don't need emacsclient then you might look in the clojure box co

Re: Clojure on Javascript

2010-10-30 Thread Scott Jaderholm
king JS with a simple (clj (some real clojure code)) comes in really handy when the backend is also Clojure and you have some data that both the client and server need. You can also configure Emacs+mozrepl so that if you eval some scriptjure code in emacs it gets compiled to js and evaled in your

Re: Setting Clojure “constants” at runtime (cros sposted to Stackoverflow)

2010-10-23 Thread Scott McKearney
This is literally the way we "think"...but if we all verbalized it this way... we would all have a stack overflow at runtime. On Fri, Oct 22, 2010 at 11:56 AM, Ralph wrote: > I have a Clojure program that I build as a JAR file using Maven. > Embedded in the JAR Manifest is a build-version numb

Re: ANN: Emacs auto-complete plugin for slime users

2010-10-15 Thread Scott Jaderholm
slime-repl-mode-map "{" 'paredit-open-curly) (define-key slime-repl-mode-map "}" 'paredit-close-curly)) (slime-setup '(slime-fancy)))) (add-hook 'slime-repl-mode-hook 'slime-clojure-repl-setup) Scott On Sat, Oct 16, 2010 at 12:27 AM,

Re: ANN: funkyweb 0.1.0 - The clojure webframework with route inference

2010-10-06 Thread Scott Jaderholm
t that you then destructure in a let in your action? Cheers, Scott On Wed, Oct 6, 2010 at 3:30 AM, Patrik Hedman wrote: > I'm pleased to announce the 0.1.0 release of funkyweb, my ring based > clojure webframework. > > It provides the following main abstractions: > > Cont

Re: lispy ways of handling dev mode

2010-10-02 Thread Scott Jaderholm
I don't know if it has issues in war deployments or such, I haven't done them. If someone knows of problems with this approach I'd be curious to hear them. Scott -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to

Re: Find file from namespace symbol

2010-09-29 Thread Scott Jaderholm
swank.commands.basic> (find-ns-definition 'clojure.set) (("clojure.set" (:location (:zip "/home/scott/project/lib/clojure-1.2.0-master-20100813.160144-94.jar" "clojure/set.clj") (:line 1) nil))) Scott On Wed, Sep 29, 2010 at 6:34 PM, Jeff Valk wrote:

Looking for more affordable sleeping options for clojure-conj

2010-09-28 Thread Scott Jaderholm
meone interested in splitting one of the rooms with two double beds. 4) Someone who lives close by willing to let me {sofa, air mattress} Thanks, Scott -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@g

Re: ANN: Clojure Cookbook

2010-09-27 Thread Scott Jaderholm
and to go through all your dependencies and prompt whether your want to update. Scott On Mon, Sep 27, 2010 at 10:01 AM, Daniel Pittman wrote: > Tim Daly writes: > > > There is a movement afoot in the common lisp community to implement > > quicklisp which is similar to the

Re: clojure.contrib.trace not working on 1.2?

2010-09-08 Thread Scott Jaderholm
On Wed, Sep 8, 2010 at 7:30 AM, Mark Nutter wrote: > I seem to recall that 1.2 is using "chunked" lazy sequences for > performance reasons, and fib is a lazy sequence. I wonder if you'd > start seeing intermediate steps using (fib 20) instead of (fib 3)? This fib doesn't look lazy to me so I don'

clojure.contrib.trace not working on 1.2?

2010-09-07 Thread Scott Jaderholm
ACE t1882: ||=> 1 TRACE t1883: ||(fib 0) TRACE t1883: ||=> 0 TRACE t1881: |=> 1 TRACE t1884: |(fib 1) TRACE t1884: |=> 1 TRACE t1880: => 2 2 user> On 1.2 user> dotrace (fib) (fib 3)) TRACE t11624: (fib 3) TRACE t11624: => 2 Thanks, Sco

Elisp for highlighting java method names in slime inspector

2010-08-17 Thread Scott Jaderholm
egex feel free to respond. Scott -- 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 unsubsc

Re: Eclipse and Compojure

2010-08-09 Thread scott
gardless of the REPL running. I assumed the problem had to do with the JDT finding no .class files in the compojure jar file, but there is no error in the error console now. Thanks for offering to help - it seems to work now. Scott Hickey On Aug 9, 1:41 pm, Laurent PETIT wrote: > Hi, > >

Eclipse and Compojure

2010-08-09 Thread scott
a $PROJECT.jar file containing the compiled .class files as well as the source .clj files. Any suggestions would be appreciated - thanks. Scott Hickey -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to cloj

Re: Any Clojure2js Libraries?

2010-07-08 Thread Scott Jaderholm
Clojurescript is the only thing I know of like scheme2js. There are a couple parenscript like programs, the best being http://github.com/arohner/scriptjure Scott On Thu, Jul 8, 2010 at 1:17 PM, Tim Robinson wrote: > All I got from google was Clojurescript, but I'm wondering what >

Re: --> macro proposal

2010-07-06 Thread Scott Jaderholm
On Tue, Jul 6, 2010 at 3:37 PM, Scott Jaderholm wrote: > > On Tue, Jul 6, 2010 at 3:24 PM, Greg wrote: > >> > This would be most likely java interop, ie. ->. >> > There the main arguments are 99% of the times the first or the last >> ones. So -> or ->

  1   2   >