Re: RFC: spec talk? / spec-like features in other languages?

2020-08-29 Thread Aaron D.
://guides.rubyonrails.org/active_record_validations.html [2] https://write.as/aaron-d/dynamic-validations-in-rails On Friday, August 28, 2020 at 10:05:50 AM UTC-5 ldoc...@gmail.com wrote: > Hello, > > Along with a friend, we are preparing a short talk on spec. > > The main idea is to show some less

Re: Clojars deployment failing

2020-02-23 Thread Aaron D.
b/issues/744. If other folks are > > experiencing the issue, plus let us know on that issue or in #clojars > > on the Clojurians slack. > > > > - Toby > > > > On Thu, Feb 20, 2020 at 6:52 AM Alan Thompson > wrote: > > > > > > I just

Re: Clojars deployment failing

2020-02-19 Thread Aaron D.
Whelp -- Just another data point -- I got two releases through just now successfully. So this is intermittent or something was fixed. On Wednesday, February 19, 2020 at 10:24:47 PM UTC-6, Aaron D. wrote: > > Hey Toby > > > What do you mean by "I disabled :checksum checking

Re: Clojars deployment failing

2020-02-19 Thread Aaron D.
not transfer metadata com.github.atdixon:thurber/maven-metadata.xml from/to releases (https://repo.clojars.org): Failed to transfer file: https://repo.clojars.org/com/github/atdixon/thurber/maven-metadata.xml. Return code is: 400 , ReasonPhrase:Bad Request. On Sunday, February 16, 2020 at 6:2

Clojars deployment failing

2020-02-16 Thread Aaron D.
My gpg creds are as usual (and verified) and I'm deploying in standard fashion but my last attempt at lein deploy fails with 400/Bad Request at the very ened trying to retrieve maven-metadata.xml -- is anyone / has anyone seen this? My last deploy was 10 days ago... The log to error: Created

Re: [ANN] thurber: Clojure on Apache Beam (distributed batch/streaming)

2020-01-22 Thread Aaron D.
Hi Dominic thank you! Are you maintainer/contrib to datasplash, I would be happy to swap notes, synthesize ideas. My org looked at datasplash. The biggest dealbreaker for us was datasplash's AOT-orientation; its AOT packaging meant we couldn't float its dependencies, and didn't like the requi

Re: Guidance on modelling listeners

2015-12-07 Thread Aaron D. Valade
What I’ve done in a similar situation is having a protocol defined like so: (defprotocol Transition (valid? [this world input] “Checks if the transition is valid for this input given the state of the world”) (action! [this world input] “Changes the state of the world based upon