Daniel Compton

Results 361 comments of Daniel Compton

The goal of re-frame-http-fx has always been to be a very thin wrapper around cljs-ajax that introduces as few new concepts of features as possible, so I would suggest trying...

The trouble as @weavejester has alluded to is that not all DB's support transactional DDL's. e.g. http://stackoverflow.com/questions/4711447/oracle-ddl-and-transaction-rollback http://stackoverflow.com/questions/28197013/transactional-ddl-workflow-for-mysql http://stackoverflow.com/questions/1043598/is-it-possible-to-run-multiple-ddl-statements-inside-a-transaction-within-sql-s AFAICT Postgres is the only major DB that supports this well....

I ran into the same issue with reloading using reloaded.repl and now do this to force a resync: ```clj (do (#'boot.core/sync-user-dirs!) (reset)) ``` [sync-user-dirs!](https://github.com/boot-clj/boot/blob/bdfa952828517b70c1d5e6b329cb138fd7f4aede/boot/core/src/boot/core.clj#L130-L140) doesn't block if it can't take...

> Obviously, you wouldn't use it to archive emails, right? I think what I'd want would be to remove the `@SaneLater` label from the message. That is what Gmail does...

> However, there is no need postfix testnames with -test, since the tests are marked in their meta-data, and the test runner can locate them this way. Clojure does not...

I got a reply from support last year at https://support.github.com/ticket/1792415: > Thanks for writing in! I'm sorry for the delayed reply - it's definitely taken us longer to respond than...

The test commands in `circle.yml` will also need to be uncommented when this fix is released.

@bbatsov Perhaps it's worth bringing this up on the JDK mailing list to see if they would reconsider removing it, perhaps putting it behind a flag?

That was how it was before I took over maintenance of this project, I'm happy to port it all into the README. We're not doing anything too fancy with the...