[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

[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:

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

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

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

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
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 <sc...@pointyhat.ca>nvisiblerobot.io Suite R - 2404 Guelph Street Vancouver, BC, V

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

2017-08-12 Thread scott stackelhouse
) 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 your

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
ph 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 "Clojure" gr

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

Monads and Middleware

2016-07-01 Thread Scott Klarenbach
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 Klarenbach

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

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 May 24

Re: clojure.spec

2016-05-24 Thread scott stackelhouse
::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&q

Re: clojure.spec

2016-05-23 Thread scott stackelhouse
quot;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 :num integer?

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 wrote: > > In

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'd try my luck here

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

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

2015-04-27 Thread Scott Nielsen
-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 subscribed

Re: Testing macros that throw errors at compile time?

2015-01-24 Thread Scott Rabin
* exception is being thrown. On Thu, Jan 22, 2015 at 4:41 PM, Scott Rabin scott...@gmail.com javascript: wrote: 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

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

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

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:03 PM

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

2014-07-25 Thread Scott Nielsen
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 clojure@googlegroups.com Note that posts from new members

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 - please

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 mark.engelb...@gmail.com wrote:

Re: core.async pub/sub

2014-03-05 Thread Scott Johnson
)] (println sub one read: v (go (while true (let [v (! sub-two)] (println sub two read: v (go (! pub-chan shine) (! (timeout 2000)) (! pub-chan on) (! (timeout 2000)) (! pub-chan you crazy) (! (timeout 2000)) (! pub-chan diamond))) -Scott On Thursday, July 11, 2013 2:15:28 AM UTC-7

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.

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

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

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

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

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 leilmy...@gmail.com 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).

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

Re: Heroku Boot Times

2013-01-23 Thread Scott Parker
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 this will be re-checked and might slow down

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 thinking about

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 (taken from

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 support

Re: Alternate set literal syntax?

2012-03-24 Thread Scott Jaderholm
, 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 unsubscribe from this group, send email

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, Mar 8, 2012

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 louisy...@gmail.com wrote: Recently, I found freedom of coding playing with Clojure with over 20 years’ experience on other program languages, Previously, I had

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 razvan.rot...@gmail.comwrote: Hi everyone, I was searching the web these days trying to find out more about these two macro systems and understand their differences

Re: problems of a newbie

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

Re: problems of a newbie

2011-11-06 Thread Scott Jaderholm
On Sun, Nov 6, 2011 at 11:33 AM, Milton Silva milton...@gmail.com wrote: On Nov 5, 12:16 pm, Dennis Haupt d.haup...@googlemail.com 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

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

2011-10-20 Thread Scott Hickey
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 this message because you are subscribed

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 daves...@gmail.com wrote: Thinking further, the capability would not be of use (to me) if it were not consistent/indistinguishable across clojure

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

2011-10-18 Thread Scott Hickey
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 clojure@googlegroups.com Note that posts from new

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: 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 moderated - please

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 ffilo...@gmail.com wrote: Do you know if videos will be available? On Friday, September 30, 2011, faenvie fanny.aen...@gmx.de wrote: hi clojure-users, i ploughed

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

2011-09-23 Thread Scott Jaderholm
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 samaa...@gmail.com wrote: On 23 Sep 2011, at 06:14

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

2011-09-21 Thread Scott Jaderholm
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 twash...@gmail.comwrote: This guy's put together a good

ClojureScript: defn alert fails in browser repl

2011-09-20 Thread Scott Jaderholm
/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@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group

Re: Example of a real-world ClojureScript web application

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

Re: clojurescript development workflow

2011-07-25 Thread Scott Jaderholm
-based? 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 group

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

Re: Clojure for large programs

2011-07-07 Thread Scott Jaderholm
/tcrayford/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 unsubscribe from

Re: ANN: Hafni

2011-06-30 Thread Scott Jaderholm
) (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 odysso...@gmail.com wrote: Hi, I figured that I would announce a library that I have been working on for a while now

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 amdx6...@gmail.com wrote: Is there other way to express (((m2) 2) 1)? (def m [1 2 [21 22

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

2011-06-29 Thread Scott Jaderholm
] `(do ~@(postwalk (fn [x] (if (lookup-symbol? x) (let [[map keys] (.split (str x) \\.)] `(flexible-get ~(read-string map) ~@keys)) x)) forms))) Scott On Wed, Jun 29, 2011 at 9:41 PM

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

2011-06-06 Thread Scott Jaderholm
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 lspec...@hampshire.edu wrote: On Jun 6, 2011, at 12:04 PM, Meikel Brandmeyer wrote: Am Montag, 6. Juni 2011 17:53:37 UTC+2 schrieb Lee

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 lspec...@hampshire.edu wrote: On Jun 6

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 lspec...@hampshire.edu 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

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

Re: ClojureCLR startup times...

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

Re: Monad Lessons

2011-03-09 Thread Scott Jaderholm
(http://xkcd.com/870/). Scott On Wed, Mar 9, 2011 at 2:15 PM, jim jim.d...@gmail.com 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 rather than

Re: ANN: Clojure Toolbox (Early Beta)

2011-02-24 Thread Scott Jaderholm
On Wed, Feb 23, 2011 at 6:17 PM, James Reeves jree...@weavejester.comwrote: 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

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

2011-02-14 Thread Scott Jaderholm
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 default also? Scott -- You received

Re: Emacs `align' function customization for Clojure

2011-01-05 Thread Scott Jaderholm
On Tue, Jan 4, 2011 at 9:10 PM, Eric Schulte schulte.e...@gmail.com 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

Re: Clojure Conj 2011?

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

ANN: Programothesis screencast series on Clojure, Emacs, etc

2010-11-12 Thread Scott Jaderholm
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 new members are moderated

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 everybody, Today I

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 because you

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

Re: Clojure on Javascript

2010-10-30 Thread Scott Jaderholm
(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 web browser. Cheers, Scott

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

2010-10-15 Thread Scott Jaderholm
-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, Jarl Haggerty fictivela...@gmail.comwrote: Should autocomplete work in the swank repl

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

2010-10-06 Thread Scott Jaderholm
then destructure in a let in your action? Cheers, Scott On Wed, Oct 6, 2010 at 3:30 AM, Patrik Hedman patrik.hed...@gmail.comwrote: I'm pleased to announce the 0.1.0 release of funkyweb, my ring based clojure webframework. It provides the following main abstractions: Controller: Controllers work

Re: lispy ways of handling dev mode

2010-10-02 Thread Scott Jaderholm
swank 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 this group, send email

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 jv-li...@tx.rr.com wrote: On Wed, 29 Sep 2010 at 15:18

Looking for more affordable sleeping options for clojure-conj

2010-09-28 Thread Scott Jaderholm
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@googlegroups.com Note

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 dan...@rimspace.netwrote: Tim Daly d...@axiom-developer.org writes: There is a movement afoot in the common lisp community to implement quicklisp which

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 manutte...@gmail.com 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

clojure.contrib.trace not working on 1.2?

2010-09-07 Thread Scott Jaderholm
: ||= 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, Scott -- You received this message because you

Elisp for highlighting java method names in slime inspector

2010-08-17 Thread Scott Jaderholm
. 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 unsubscribe from this group, send email

Eclipse and Compojure

2010-08-09 Thread scott
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 clojure@googlegroups.com Note that posts

Re: Eclipse and Compojure

2010-08-09 Thread scott
. 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 laurent.pe...@gmail.com wrote: Hi, How could I

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 tim.blacks...@gmail.com wrote: All I got from google was Clojurescript, but I'm

Re: -- macro proposal

2010-07-06 Thread Scott Jaderholm
#{}))) Scott (I would like -- or let- in contrib though) -- 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

Re: -- macro proposal

2010-07-06 Thread Scott Jaderholm
On Tue, Jul 6, 2010 at 3:37 PM, Scott Jaderholm jaderh...@gmail.com wrote: On Tue, Jul 6, 2010 at 3:24 PM, Greg g...@kinostudios.com 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 - will work OK, so

Re: binary structures/bitstrings

2010-04-20 Thread Scott T
seconds of free time I have), and if I come up with any feedback or contributions, I'll let you know. -Scott On Apr 19, 8:52 pm, Scott T scott.tho...@gmail.com wrote: Thanks a lot for pulling that out.  I'll let you know how it goes. -Scott On Apr 19, 1:40 am, Geoff geoff.sal...@gmail.com

Re: binary structures/bitstrings

2010-04-19 Thread Scott T
Thanks a lot for pulling that out. I'll let you know how it goes. -Scott On Apr 19, 1:40 am, Geoff geoff.sal...@gmail.com wrote: I've pushed the bytebuffer stuff into it's own repo and project and cleaned up the documentation a bit. Seehttp://github.com/geoffsalmon/bytebuffer I'd

Re: binary structures/bitstrings

2010-04-18 Thread Scott T
to separate it and push it to clojars. It's about time I learn how to do that. - Geoff On Apr 16, 9:28 pm, Scott T scott.tho...@gmail.com wrote: Does anyone know of a clojure library for handling (un)packing of binary structures?  I'm looking for something similar to perl/ruby/ python's pack

  1   2   >