Re: Broken JSON API in clojure-contrib?

2010-03-18 Thread Timothy Washington
Too right. Thanks very much friend. Tim On Wed, Mar 17, 2010 at 3:25 PM, Michael Wood wrote: > On 17 March 2010 21:18, Michael Wood wrote: > [...] > > $ java -cp clojure-1.1.0.jar:clojure-contrib.jar clojure.mainClojure > 1.1.0 > [...] > > Whoops! Not sure what happened there. That's of cou

HOWTO http.agent ( PUT or potential 500 )

2010-05-02 Thread Timothy Washington
Hey, ok so a noobie question here. I'm trying to use the 'http-agent' function to make HTTP calls. I can do so easily as in fig. 1. But when I try to make a PUT call as in fig. 2, I get a pretty ugly stacktrace, the bottom one having the error "Caused by: java.lang.IllegalArgumentException: No meth

Re: Calling for advice on a parser's location data

2010-05-02 Thread Timothy Washington
Unless you're dealing with 1) binary data or 2) structured data (ie. XML) where a path is more appropriate, then I think line / column is the way to go. Now, is this a clojure parser? Or a clojure parser generator library that consumes a BNF-like file that defines another lang? As far as I can tel

Re: HOWTO http.agent ( PUT or potential 500 )

2010-05-02 Thread Timothy Washington
Yes, that was it. Thanks On Sun, May 2, 2010 at 10:04 PM, Antony Blakey wrote: > > On 03/05/2010, at 10:47 AM, Timothy Washington wrote: > > > Hey, ok so a noobie question here. I'm trying to use the 'http-agent' > function to make HTTP calls. I can do so ea

clojure-contrib diffs?

2010-05-02 Thread Timothy Washington
I've noticed that there are some big clojure-contrib source differences between the 'master' branch and '1.1.0'. For example 1) 'io' is in master, but not 1.1.0 2) json is in master, but json.read and json.write are in 1.1.0 I assume new developments are going into 1.1.0. But is it possible to ke

Re: clojure-contrib diffs?

2010-05-03 Thread Timothy Washington
Oh, I see I see. Good to know. Thank-you sir. On Sun, May 2, 2010 at 11:55 PM, Antony Blakey wrote: > > On 03/05/2010, at 1:06 PM, Timothy Washington wrote: > > > I've noticed that there are some big clojure-contrib source differences > between the 'master'

Using Java's 'this' keyword

2010-05-23 Thread Timothy Washington
Hi there, I'm trying to get Java's '*this*' passed as a variable to clojure's sugared Java integration. All's fine until the end of line 43. I've tried '*this*' and *(proxy-super)*, on a lamb, but no dice. 42 (if (not= (. node getLoad ) nil) ;; Java equivalent - *if(node.getLoad()

Re: Using Java's 'this' keyword

2010-05-23 Thread Timothy Washington
think you want (.. node getLoad (apply this)) > > Cheers, Jay > > On May 23, 2010, at 4:39 PM, Timothy Washington wrote: > > Hi there, I'm trying to get Java's '*this*' passed as a variable to > clojure's sugared Java integration. All's fine until t

NulPointerException when calling 'println' in 'if'

2010-05-23 Thread Timothy Washington
I wave a strange NullPointerException when I call (println "Some string"). It seems similar to this problem on Stackoverflow, but the 'do' solution doesn't seem to work for me

Re: NulPointerException when calling 'println' in 'if'

2010-05-24 Thread Timothy Washington
, May 24, 2010 at 5:03 AM, Meikel Brandmeyer wrote: > Hi, > > On Sun, May 23, 2010 at 10:37:29PM -0400, Timothy Washington wrote: > > > I wave a strange NullPointerException when I call (println "Some > string"). > > It seems similar to this problem on >

Auto-compiling HAML / SCSS

2013-05-20 Thread Timothy Washington
Hi all, I'm trying to find a Clojure solution for auto-compiling HAML and SCSS code. I came across https://github.com/rtircher/lein-haml-sass, but that fails when I try to compile with "*lein haml once*" or "*lein haml auto*". Has anyone gotten this setup working? Or is there otherwise any other C

Re: Auto-compiling HAML / SCSS

2013-05-22 Thread Timothy Washington
t; > > LoadError: no such file to load -- rubygems > > It seems like you don't have rubygems installed (or misconfigured), > try following this: http://docs.rubygems.org/read/chapter/3 > > I hope it helps, > > toni > > > On Mon, May 20, 2013 at 2:39 PM, Timothy

[ANN] Edgar: A basic tool for performing Technical Analysis on financial instruments

2013-06-29 Thread Timothy Washington
Edgar is a basic tool for performing Technical Analysis on financial instruments. This tool is predicated on the presence of high price movements of stock. So far, the emphasis is on: - stock market trading - algorthmic, automated trading - using the In

nrepl-inspect on load

2013-07-18 Thread Timothy Washington
Hi there, I took a look at the nrepl middleware project "nrepl-inspect", as described in this article . I'm using emacs-live, and thus have the initialization code in my "* ~/.live-packs/-pack/init.el*" file. Now,

Interest in a Full Featured Clojure Blog Engine

2013-07-18 Thread Timothy Washington
Hello, I'm thinking of how to build a composable blogging engine in Clojure. There have been a few attempts at this, with cow-blogand my-blog . But these seem to be abandoned, and not heavily used. Vijay Kiran, las

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-18 Thread Timothy Washington
o see a legitimate, maintained > Clojure-based blogging engine. I have one question: what does > "composable blogging engine" mean? > > > On Thu, Jul 18, 2013 at 10:24 AM, Timothy Washington > wrote: > > Hello, > > > > I'm thinking of how to build a compos

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-18 Thread Timothy Washington
3 at 10:55 AM, Michael Fogus wrote: > That's what I hoped you meant. Sounds fun. > > On Thu, Jul 18, 2013 at 10:44 AM, Timothy Washington > wrote: > > Ah, by composable, I meant you could choose to only use a core server > > component, posting txt entries, let

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-18 Thread Timothy Washington
Too right. Ok, I'll factor that in. On Thu, Jul 18, 2013 at 11:16 AM, Gary Trakhman wrote: > Django's pretty good at this with it's auto-gen'd Admin interface, if we > had something comparable it would be compelling to a large audience, but I > worry that it becomes 'frameworky' at a certain po

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-18 Thread Timothy Washington
Hadn't thought about it along those lines. But I'm glad you brought it up. Ok. On Thu, Jul 18, 2013 at 11:33 AM, Mikera wrote: > It sounds like a great project. > > I think the challenge will be the making the different pieces fit together > neatly: there are lots of somewhat-overlapping librar

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-18 Thread Timothy Washington
Hadn't thought about spam detection, comment design, or versioning. But I like the ideas a lot. I'll design with these features in mind. On Thu, Jul 18, 2013 at 12:17 PM, Thorsten Wilms wrote: > On 07/18/2013 04:24 PM, Timothy Washington wrote: > >> I know that I

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-19 Thread Timothy Washington
what other approach to take. Thoughts? See Stefon here <https://github.com/twashing/stefon>. Thanks Tim Washington Interruptsoftware.ca <http://interruptsoftware.ca/> / Bkeeping.com<http://bkeeping.com/> On Thu, Jul 18, 2013 at 12:25 PM, Timothy Washington wrote: > Hadn't

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-19 Thread Timothy Washington
ld be unified. Plus, a function, like export, could also be a URL. So I wouldn't want to tie core resources to the concept of Http URLs. Even though they may map neatly to stefon's actions. Thoughts ? Sent from my Android On Jul 19, 2013 3:26 PM, "Thorsten Wilms" wrote: > >

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-19 Thread Timothy Washington
Ok, that makes sense. Thanks Chas. On Fri, Jul 19, 2013 at 7:53 PM, Chas Emerick wrote: > On Jul 19, 2013, at 2:46 PM, Timothy Washington wrote: > > I've deliberately proposed a small core, so that you can use only the > pieces you absolutely need. Additionally, I think it e

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-20 Thread Timothy Washington
On Sat, Jul 20, 2013 at 1:13 AM, James Ashley wrote: > > From the peanut gallery: > > I think this basic idea sounds fabulous. I've been kicking clojure's > tires, and I keep meaning to slap a blog engine together. But then I go > into tailspin because I want to blog about the experience, but my b

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-20 Thread Timothy Washington
Cool. I'm very open to any help you can offer. Right now, I'm working through: - if / how to attach assets (images, etc) to .rtf or .md file formats (see here ) - how to cleanly model entity rel

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-21 Thread Timothy Washington
Ooh. Ok, lemme check it out. On Sat, Jul 20, 2013 at 10:34 PM, Chris Allen wrote: > http://github.com/bitemyapp/neubite/ > > Could probably use a WYSIWYG editor, beyond that, pretty serviceable. > > > -- -- You received this message because you are subscribed to the Google Groups "Clojure"

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-22 Thread Timothy Washington
On Sun, Jul 21, 2013 at 5:16 PM, Manuel Paccagnella < manuel.paccagne...@gmail.com> wrote: > > >>- what I should use to model workflow; possibly >> lamina >>? >> >> I'm not sure Lamina is the right tool for this job. What are your ideas > for modeling an

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-22 Thread Timothy Washington
Hey all, *A)* Thanks for all the feedback on this topic. There's a few interesting things here. Notably that there are at least these existing blog engines: - http://github.com/bitemyapp/neubite (apparently needs a WYSIWYG editor) - https://github.com/yogthos/yuggoth (although this adverti

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-24 Thread Timothy Washington
Oh nice. I like the look of devs . So I've put together some rudimentary work for Stefon. Just some basic CRUD + find + list. I had a think about how to tie together the different domain entities. And internally, I think relation

Re: querying a clojure data structure

2013-07-24 Thread Timothy Washington
Like Tim, I was thinking about the Datomic query language. Before you do that though, remember that there's some basic relational algebra functions in clojure.set . Stuart Halloway demonstrates this in an interesting gist

Clojars "Could not transfer artifact... ReasonPhrase: Forbidden"

2013-08-05 Thread Timothy Washington
Hi all, I'm having problems deploying a project to Clojars. I've just reset my Clojars i) password and ii) SSH public key. And now, from my development system, I want to push my project. Yet I get the below error: "*Could not transfer artifact... ReasonPhrase: Forbidden*". I'm very sure that the p

Re: Clojars "Could not transfer artifact... ReasonPhrase: Forbidden"

2013-08-05 Thread Timothy Washington
Ok, got this sorted out. Thanks to xeqi @ #leiningen @ irc.freenode.org. Tim Washington Interruptsoftware.ca / Bkeeping.com On Mon, Aug 5, 2013 at 11:24 AM, Timothy Washington wrote: > Hi all, > > I'm having problems deploying a project to Clojars. I've just reset my &g

Re: Do you like the Clojure syntax?

2013-08-16 Thread Timothy Washington
I think it's a mistake to discount the importance of syntax to a language. Human beings, as a species is heavily symbolic. Think of ancient cave paintings, to pictograms, to scripts. We use these symbols to communicate with each other, our outside world, and our abstract thoughts. Whether it's writ

Re: Do you like the Clojure syntax?

2013-08-16 Thread Timothy Washington
n in Clojure, and in Clojure it's much more easily readable as well as > more powerful. This is only a syntax thing though, but it's a powerful > player in the feature-set. > > > On Fri, Aug 16, 2013 at 12:27 PM, Timothy Washington > wrote: > >> I think it's a

Architectural Review of Stefon: A Composable Blog Engine

2013-09-14 Thread Timothy Washington
Hi all, This follows a previous post I made (see here). I was looking for a simple, Clojure-based blog engine that allowed me to stitch together components on an as needed basis. I didn't find one. And to

Re: How to control evaluation of code with cider

2014-07-22 Thread Timothy Washington
Ooh, this looks interesting. Afraid I don't know enough elisp to be useful. But it looks like you're already prompting the caller for the *channel-repl/cider-function* name. Is there a reason you're not using it ( *prefix*) ? Also can I ask how / where you plan to use this? Or is it just a generic

Re: How to control evaluation of code with cider

2014-07-25 Thread Timothy Washington
On Wed, Jul 23, 2014 at 10:08 PM, Brent Millare wrote: > I forgot to include in the snippet, that I would do something like > > (def live-repl-client (cljs.repl/channel-repl repl-env)) > > When you say channel-repl/cider-function, do you mean > user/live-repl-client? > Yes, exactly. > > I don'

Help Getting Sente to Work

2014-07-25 Thread Timothy Washington
Hi all, I'm using [com.taoensso/sente "0.15.1" ], and having trouble connecting the client to the server. I'm sure it's something simple, but not obvious, as this is taken directly from the examples on sente's github page. Anyone seen and fixed the error in fi

Re: Help Getting Sente to Work

2014-07-27 Thread Timothy Washington
Ok, got it. It was indeed the CSRF issue. I included that middleware to fix the issue. For anyone else struggling with this, There's a *sente/example-project* with some code that uses the csrf middlewar

Re: Help Getting Sente to Work

2014-07-28 Thread Timothy Washington
Hey Peter, Thanks for getting back to me. Good explanation here. Wrt the CSRF issue, I'll try running again without it. Now, a port changed fixed the issue for me. But before I passed in a *chsk-url-fn*, I was still getting a 404, even when trying with a browser (ie, using the correct port). Tha

Re: Help Getting Sente to Work

2014-07-30 Thread Timothy Washington
Hey Peter, Responses are inlined. On Tue, Jul 29, 2014 at 12:51 AM, Peter Taoussanis wrote: > Wrt the CSRF issue, I'll try running again without it. >> > > Out of curiosity, sure - but if you've already gone to the effort of > setting up the CSRF I'd leave it in (better to have it) :-) > Yep,

Clojure / Core.Async Dependency Issues

2014-07-31 Thread Timothy Washington
I'm trying the latest *clojure* and *core.async* releases on a fresh project (lein new thing). (defproject thing "0.1.0-SNAPSHOT" :description "FIXME: write description" ... :dependencies [*[org.clojure/clojure "1.6.0"]* *[org.clojure/core.async "0.1.303.0-886421-alph

Re: Clojure / Core.Async Dependency Issues

2014-07-31 Thread Timothy Washington
[clojure.pprint pprint pp]])] Tim Washington Interruptsoftware.com <http://interruptsoftware.com> On Thu, Jul 31, 2014 at 1:28 PM, Timothy Washington wrote: > I'm trying the latest *clojure* and *core.async* releases on a fresh > project (lein new thi

Re: Help Getting Sente to Work

2014-08-01 Thread Timothy Washington
can't > run on the same port. > On 30 Jul 2014 16:24, "Timothy Washington" wrote: > -- 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 f

Howto Use isComponent with Adi

2014-08-03 Thread Timothy Washington
Hey, I'm playing around with adi, and it looks pretty cool. But I can't seem to get isComponent to work in my adi schema. It's failing when I try to use a boolean, which was my first guess as to it's usage (see wiki , source

Re: [ANN] System

2014-08-05 Thread Timothy Washington
Well this is interesting. Leiningen has a list of 3rd party plugins . I see a use for a similar list of 3rd party components . Or maybe it already exists? I already have 1 or 2 that might be useful.

Re: Howto Use isComponent with Adi

2014-08-10 Thread Timothy Washington
Hey Chris, sure thing. It did seem a bit weird, and maybe I'm using it wrong. But the issue I logged, and code details, are here . Let me know if you need anything else. Cheers Tim On Fri, Aug 8, 2014 at 5:43 PM, zcaudate wrote: > Hey Tim, > > adi's

Re: using Stuarts component library correctly

2014-08-10 Thread Timothy Washington
If it helps, there's a lein plugin that creates a new component based app implementing the reloaded workflow. I haven't used it myself. But maybe it gets an initial version going, that you can build on. Tim Washington Interruptsoftware.com

Howto write test.check custom generators

2014-08-10 Thread Timothy Washington
Hi there, I'm trying to get my head wrapped around test.check . My current stumbling block is custom generators. Of course I've combed through the docs and source

Re: Howto write test.check custom generators

2014-08-10 Thread Timothy Washington
Oook, this is starting to sink in. I've gotten a little farther, in that I can run quick-check with my custom generator. However, after a bunch of values had been generated, it fails on a NullPointerException. How can I know where the breakdown is happening? => (tc/quick-check 100 u/has-agroup) {

Multiple Log Files With Timbre?

2014-08-18 Thread Timothy Washington
Using timbre , I'm wondering howto make multiple log files per session. I see where you can make a RollingFileAppender. Using that, I'd also like to log to s

Howto Use Automat ?

2014-08-26 Thread Timothy Washington
I'm trying to use Automat to map out transitions that are either of the paths below. - There can be many claims sent to an external service. Each claim, after being sent, can be :acknowledged or :rejected. - If a claim is :acknowledged, it can then either be :accepted or :rejected.

Re: Why is this an Exception ?

2014-08-29 Thread Timothy Washington
On Fri, Aug 29, 2014 at 3:04 PM, Ashton Kemerling wrote: > Bar/baz refers to the symbol baz in the namespace bar. If you haven't > created and imported bar, that's an error. > > Ashoton's correct. So you'd expect something like this, before being able to e=compile your code. *a/bar.clj* (ns a.b

Howto Load Project Namespaces in Leiningen Plugins

2014-08-31 Thread Timothy Washington
Ok, So I'm trying to write a leiningen plugin that takes some namespace arguments. Let's call it **. This is a brand new plugin, so everything else is empty, and this value is present: *{:eval-in-leiningen true}*. My problem happens when, in the context of the project ** is acting on, the plugin c

Re: Howto Load Project Namespaces in Leiningen Plugins

2014-09-01 Thread Timothy Washington
ed on limited info that it was not `require`d first. > > I'll plug > https://github.com/technomancy/leiningen/blob/master/doc/PLUGINS.md#code-evaluation > and https://www.youtube.com/watch?v=uXebQ7RkhKs as containing similar > information said in different ways, in case it comes a

Re: Howto Load Project Namespaces in Leiningen Plugins

2014-09-01 Thread Timothy Washington
n/zzz.clj on classpath: at clojure.lang.RT.load(RT.java:443) ... at clojure.lang.Compiler.load(Compiler.java:7130) ... 11 more Subprocess failed Tim Washington Interruptsoftware.com <http://interruptsoftware.com> On Mon, Sep 1, 2014 at 10:58 PM, Timothy Washi

Re: Howto Load Project Namespaces in Leiningen Plugins

2014-09-01 Thread Timothy Washington
middleware [ritz.nrepl.middleware.javadoc/wrap-javadoc ritz.nrepl.middleware.simple-complete/wrap-simple-complete inspector.middleware/wrap-inspect]}} Tim Washington Interruptsoftware.com <http://interruptsoftware.com> On Mon, Sep 1, 2014 at 11:17 PM, Timothy Washingt

Office Hour Requests

2014-09-14 Thread Timothy Washington
Hey all, Is anyone game for clojure office hours session. I even vaguely recall someone building a webapp that connected people who wanted to pair program. It was designed to be used on an ad-hoc basis. But I don't recall where that went. I want to focus on these things, in that order. - *test

Re: Office Hour Requests

2014-09-16 Thread Timothy Washington
Hi Bridget, and thanks for responding. Yes, I remember the discussions. I figured I would try an individual connection. And if those continue to get popular, a separate channel or ongoing resource could be set up to service that. So yeah, I hope someone's interested and available in the topics I'v

Re: Chestnut memory usage

2014-10-14 Thread Timothy Washington
I created my own browser-repl component (using austin). And that definitely consumed a lot of memory. I haven't used Chestnut. But I'm guessing it's browser-repl implementation (in src/clj/chestnut/dev.clj

Re: Clojure <-> Java

2014-11-07 Thread Timothy Washington
Hey Blake, Yeah, Clojure sits atop the JVM and has access to all its core classes. So just fire up a repl and evaluate "*java.io.File/pathSeparator*" or "*(java.lang.Math/abs -37)*" or something. You can get those Java Interop details here. As for the Clojure / J

Available For Work

2014-12-05 Thread Timothy Washington
Hello My current contract is winding down, and I'm available for Clojure work, preferably remotely. I have over 14 years Software Development experience. And 5 years, directly in Clojure. That's all to say that I love it, and maximizing expressive power in general. Currently, that also means pokin

Core Banking And The Mechanics Of Money Creation

2014-12-17 Thread Timothy Washington
For any dev in banking, I just wrote Core Banking And The Mechanics Of Money Creation . I wanted to distill my thinking around money, its systems, and the banking function. The post doesn't contain any computer code. But I di

Re: Core Banking And The Mechanics Of Money Creation

2014-12-18 Thread Timothy Washington
That's awesome. I'm glad you and your clients are seeing the benefits. Much success :) Tim Washington Interruptsoftware.com 416.843.9060 On Wed, Dec 17, 2014 at 8:04 PM, Matt Dean wrote: > > Tim, I enjoyed reading your post. Having recently launched an online >

Re: [ClojureScript] [ANN] cuerdas 0.1.0: A string manipulation library for clojure and clojurescript.

2014-12-23 Thread Timothy Washington
Ho-haa, looks slick. I can certainly use it. Thanks for this :) Tim Washington Interruptsoftware.com On Tue, Dec 23, 2014 at 12:48 PM, Andrey Antukh wrote: > > Hello everybody. > > I wanted to announce the first release of cuerdas. A string manipulation > library

[ANN] Adi 0.3.1

2015-01-05 Thread Timothy Washington
Hi all, The latest adi (0.3.1) is available on clojars . Adi is a wrapper around datomic, or "*a datomic interface*". The documentation gives a better mental model. It's still being fleshed out. But w

[ANN] Bkell 0.2.1

2015-01-05 Thread Timothy Washington
Bkell is a double-entry bookkeeping system. It provides a Shell and API for maintaining balanced records for business transactions. Clojars is here. Before running the system or tests, make sure that *resource/config.edn* exists (`*cp

[ANN] Edneditor.com

2016-06-23 Thread Timothy Washington
Hey all, I've created a dead simple online tool to pretty print EDN: http://edneditor.com There's just a lot of times that I'll have a chunk of EDN that I want to pretty print, to get a better view of my data. Very rudimentary at this point - so a lot of TODOs. But have a look, let me know your

Re: [ANN] Edneditor.com

2016-06-25 Thread Timothy Washington
Oh yes yes, that's what actually prompted this project. I use http://jsoneditoronline.org all the time, and wanted something similar for EDN. Can't wait to flesh it out some more. I'll keep you posted. Tim On Fri, Jun 24, 2016 at 1:42 AM, 'Adrian A.' via Clojure < clojure@googlegroups.com> wro

Re: Why we cannot do this now?

2016-06-25 Thread Timothy Washington
+1 On Wed, Jun 22, 2016 at 10:29 PM, Erik Assum wrote: > Using Cider and clj-refactor, you can do M-x cljr-add-project-dependency > to add (or update) a dependency. > > Erik. > -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group,

Re: Clojure News is out

2016-07-23 Thread Timothy Washington
+1 On Tue, Jul 19, 2016 at 10:35 AM, Jacob Strength wrote: > This looks great! I was just curious though, what are the advantages of > this over say the Clojure page on reddit? To me it seems very similar. > > > On Friday, July 15, 2016 at 9:28:12 AM UTC-6, Ertuğrul Çetin wrote: >> >> Hi Everyo

Re: [ANN] trapperkeeper 1.4.1

2017-01-29 Thread Timothy Washington
Is trapperkeeper still actively being developed and maintained? I'm having trouble using trapperkeeper with the core specs in Clojure 1.9. And these are the last 2 substantive commits that I see. - Dec 8 2016

Re: [ANN] trapperkeeper 1.4.1

2017-01-30 Thread Timothy Washington
active. > > On Mon, Jan 30, 2017 at 11:22 AM Timothy Washington > wrote: > >> Is trapperkeeper still actively being developed and maintained? I'm >> having trouble using trapperkeeper with the core specs in Clojure 1.9. And >> these are the last 2 substantive

Re: [ANN] trapperkeeper 1.4.1

2017-01-30 Thread Timothy Washington
ssues when running against clojure 1.9, >> it would be great if you could open a jira ticket or github issue. >> > > Also, I just made a #trapperkeeper channel on the clojurians slack, so > feel free to ask questions there as well. > > >> On Mon, Jan 30, 2017 at 8:

Re: [ANN] CIDER 0.16 (Riga)

2018-01-04 Thread Timothy Washington
Here here +1. Thanks Bbatsov :) Tim On Fri, Dec 29, 2017 at 8:32 AM, Bastien Guerry wrote: > Hi Bozhidar, > > > Here's one (a bit overdue) Christmas present for all of you - a > > major update to CIDER, the popular Clojure interactive development > > environment, built on top of Emacs and nRE

Clojure.spec for maps with dependent values

2018-06-23 Thread Timothy Washington
Hello, Is there a way to make a spec that describes a map where - i. a key can be from a set of values and - ii. the value chose is used as the key for another entry - iii. an additional map entry is added For example, if we had the maps in *A.*, we could generate them with the test.ch

Re: CIDER 0.10 is out!

2015-12-21 Thread Timothy Washington
Just putting CiderX through it's paces now. Reeeally great work man!! Especially the debugging support, which just works. The only thing I'm wondering, is if the debugger has: - a *step into* function - ability to set a break point in a 3rd party lib (where you can't put *#break* or *#de

Re: Clojure project Help?

2015-12-21 Thread Timothy Washington
Hi Min, In your project - Where does it come from? A database (you mentioned a driver), csv or json file? - What does the shape of the data look like in a Clojure runtime? Is there some sample code or Clojure data structures we can look at? Tim On Mon, Dec 21, 2015 at 4:03 PM, Min

Re: CIDER 0.10 is out!

2015-12-26 Thread Timothy Washington
On Tue, Dec 22, 2015 at 10:57 AM, Artur Malabarba wrote: > Hi Timothy, > Glad you liked it! :-) > > > The only thing I'm wondering, is if the debugger has: > > a step into function > > Not yet. :-( > For now, you can instrument in advance the function you want to step into. > > > ability to set a

Re: [ANN] New clojure.org!

2016-01-15 Thread Timothy Washington
+1 Looks good. On Thu, Jan 14, 2016 at 11:26 PM, Bozhidar Batsov wrote: > Great work! This was long overdue, but I'm extremely happy we made this > solid first step! > > On 15 January 2016 at 04:11, Eunmin Kim wrote: > >> Great!! >> >> -- >> You received this message because you are subscribed

[ANN] "Clojure for Finance" Published

2016-01-20 Thread Timothy Washington
Hello, I’ve been somewhat of a hermit over the last year or so. A large part of that was the time it took to author my first book. I’m very happy to announce the release of *Clojure for Finance *. I've had some good feedback from non-programmers. So I think a review from pro

Re: [ANN] clojurework.com

2016-02-26 Thread Timothy Washington
+1. This looks great. Tim On Thu, Feb 25, 2016 at 9:47 AM, Daniel Higginbotham wrote: > Hi everyone, > > I've released http://clojurework.com/ in beta :) My goal for the site is > to build a quality community resource for those looking to write Clojure > for Real Projects, whether paid or ope

Re: [ANN] CIDER 0.11 Released!

2016-03-04 Thread Timothy Washington
Congratulations and thanks to all contributors. Cider really helps my daily workflow. And Common Lispers are starting to feel the heat, from cider approaching the debugging and interactivity they're used to :) Tim On Fri, Mar 4, 2016 at 4:28 AM, Phillip Lord wrote: > > Kudos to Benedek Fazek

Re: Interest in a Full Featured Clojure Blog Engine

2016-03-27 Thread Timothy Washington
Ah just seeing this now. Duplicating a response to Nate, as I thought it was just in my inbox. While I did get some initial interest, subsequent requests for an architectural review (see here and he

Re: [ANN] CIDER 0.12 (Seattle)

2016-04-17 Thread Timothy Washington
+1. Great work :) Tim On Sat, Apr 16, 2016 at 7:54 PM, Bozhidar Batsov wrote: > Hey everyone, > > CIDER 0.12 (Seattle) is out! It packs a lot of small improvements and bug > fixes! > > Check out the release notes here > https://github.com/clojure-emacs/cider/releases/tag/v0.12.0 > > We've als

[ANN] hiccup-watch

2014-02-04 Thread Timothy Washington
*hiccup-watch * is just a leiningen watcher plugin that monitors for changes in your Hiccup source files. While building some web apps, I found that I like to treat my *hiccup.edn*forms as separate files. So this is akin to something like guard-haml

[ANN] garden-watch

2014-02-04 Thread Timothy Washington
*garden-watch* is very similar to hiccup-watch (previous ann). But this time, we're compiling down to CSS, using the Garden

Re: [ANN] garden-watch

2014-02-05 Thread Timothy Washington
Hey Dave, Thanks for that heads up. I originally wanted auto-compiling for *HAML* and *SCSS*. But then thought why, when I could just use edn with *Hiccup* and *Garden*. Now, a lein-hiccup, or some auto compile tool doesn't exist to my knowledge. So *i)* I had to do that work anyways. Then I spent

Re: [ANN] garden-watch

2014-02-05 Thread Timothy Washington
Ok, that's fine. Definitely good to have both ways to tackle the problem. But I'm curious. What do you feel is being given up by watching garden files? Thanks Tim Washington Interruptsoftware.com On Wed, Feb 5, 2014 at 11:04 PM, Joel Holdbrooks wrote: > The idea

Re: [ANN] garden-watch

2014-02-06 Thread Timothy Washington
Lol, fair enough :) On Wed, Feb 5, 2014 at 11:44 PM, Joel Holdbrooks wrote: > Clojure. > > On Feb 5, 2014, at 8:42 PM, Timothy Washington wrote: > > Ok, that's fine. Definitely good to have both ways to tackle the problem. > But I'm curious. What do you feel i

Re: [ANN] zcube 0.0.1

2014-02-12 Thread Timothy Washington
+1 I can already think of a few places I'd like to try this. Looks very cool. Tim Washington Interruptsoftware.com On Wed, Feb 12, 2014 at 1:13 PM, Fabien Todescato wrote: > Hi, clojure community. It is my pleasure to announce zcube[1], a Clojure > library all

Re: How to override the default port on 3000?

2014-02-25 Thread Timothy Washington
Try this. *lein ring server-headless ;; port 80 usually requires root permissions* Tim Washington Interruptsoftware.com On Tue, Feb 25, 2014 at 9:21 AM, action wrote: > I do like this: > #lein new compojure-app guestbook > #cd guestbook > #lein ring server >

Re: File and Project organization questions

2014-03-08 Thread Timothy Washington
Hi Brandon, Clojure For the Brave and True has a good guide on project layout and organization. Leiningen also has a guideto creating

Re: Working with big datasets, merging two ordered lists by key

2014-03-09 Thread Timothy Washington
Hey Frank, Try opening up a repl, and running this *for* comprehension. (def user_textfile [[:id1 {:name 'Frank'}] [:id3 {:name 'Tim'}]]) (def user_database [[:id1 {:age 38}] [:id2 {:age 27}] [:id3 {:age 18}] [:id4 {:age 60}]]) (for [i user_textfile j user_database :when (= (firs

Re: Working with big datasets, merging two ordered lists by key

2014-03-09 Thread Timothy Washington
Tim Washington Interruptsoftware.com <http://interruptsoftware.com> On Sun, Mar 9, 2014 at 12:13 PM, Moritz Ulrich wrote: > I think it would be more efficient to read one of the inputs into a > map for random access instead of iterating it every time. > > On Sun, Mar 9, 20

Re: Working with big datasets, merging two ordered lists by key

2014-03-10 Thread Timothy Washington
Hey Frank, Right. So I tried this loop / recur, and it runs, giving a result of *([4 nil] [3 3] [2 nil] [1 1])*. But I'm not sure how that's going to help you (although not discounting the possibility). You can simultaneously iterate through pairs of lists, to compare values. However you cannot g

Re: Adatx - Test driven development... literally.

2014-03-12 Thread Timothy Washington
This looks interesting. I was hammocking a solution that could use that. But on Infoq, I recently watchedWilliam Byrd, describing just this feature in MiniKanren. As such, I expect to see this feature will be in core.logic. Di

Re: Adatx - Test driven development... literally.

2014-03-14 Thread Timothy Washington
Right. Yes, it looks very interesting, and I need to research it too. Well I'm certainly keen on hearing about your results. Tim Washington Interruptsoftware.com On Fri, Mar 14, 2014 at 7:13 AM, Ludwik Grodzki wrote: > Tim. > > Thank you for the William Byrd vi

Re: Garden, Thorn - Looking for contributors

2014-03-26 Thread Timothy Washington
Hi Joel, I think this is a good idea. We've discussed one of my pain points; particularly "*Exploring Garden At Rules*". Our thread basically looked like the below (last few messages ellided). Now, for the moment, I indeed went back to *SCSS*, because *i)* it did what I wanted out of the box and *

Re: Garden, Thorn - Looking for contributors

2014-03-28 Thread Timothy Washington
So there's 2 points that I raised. The main one is getting the *@import*working. And I probably just need to see an example of how to do that in the API. With that, I'd probably move over to hiccup / garden. Wrt garden-watch , I understand and agree with y

  1   2   3   4   >