Re: [ClojureScript] Bundling JavaScript library with CLJS library

2014-12-01 Thread Daniel Compton
Hi Yehonathan I think you’re looking for externs. They allow you to do this very thing. Here are some good articles to get you started: https://developers.google.com/closure/compiler/docs/api-tutorial3 https://developers.google.com/closure/compiler/docs/api-tutorial3

Re: [ClojureScript] Turning off optimization to speed compilation during development

2014-12-01 Thread Daniel Compton
There are a few places where the recommended optimisation settings could be documented better which would save people this confusion in the future:https://github.com/emezeske/lein-cljsbuild/blob/master/README.md- shows a project using whitespace optimisations, doesn’t really talk about the options

Re: [ClojureScript] Clojurescript targetting the browser and node.js interacting with a HTTP resource

2015-04-26 Thread Daniel Compton
I'm not familiar enough with Node to talk about options for sharing code with the browser and common APIs, but there are two options I can think of: 1. Use cljx and create custom rulesets and features for node and the browser, e.g. #+cljs-node and #+cljs-browser, and write your code using cljx

Re: [ClojureScript] Is it possible to check in macro if being compiled in Clojure or Clojurescript?

2015-04-19 Thread Daniel Compton
This use case will be provided by Feature Expressions which are planned to come out in Clojure (JVM) 1.7 and presumably will come in a release of ClojureScript around the same time. You can find more details about this planned feature at http://dev.clojure.org/display/design/Feature+Expressions On

Re: [ClojureScript] Trouble navigating clojars

2015-04-27 Thread Daniel Compton
Hi Mike core.async is released to Maven Central, you can find all of the released versions at: http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22core.async%22 In general Clojure Core releases are in Maven Central, and most community libraries are in Clojars. From

Re: [ClojureScript] Trouble navigating clojars

2015-04-27 Thread Daniel Compton
Sorry, that came off as quite terse, I was dashing off a quick reply. Not coming from a Java background it took me quite a while to understand a lot of things about Clojure dependency management and the surrounding ecosystem. On Mon, 27 Apr 2015 at 8:11 pm Daniel Compton daniel.compton.li

Re: [ClojureScript] ClojureScript, NodeJS, and CLIs

2015-05-01 Thread Daniel Compton
Hi Jeremy You can find more contributing info at http://clojure.org/contributing. If you're having issues with JIRA, then try asking Alex Miller on IRC, or Twitter @puredanger. On Sat, 2 May 2015 at 8:45 am David Nolen dnolen.li...@gmail.com wrote: Clojure projects do not take PRs. You need to

Re: [ClojureScript] Mustache for Clojurescript?

2015-05-11 Thread Daniel Compton
It's not quite what you were looking for, but https://clojars.org/cljsjs/mustache could be an option? On Mon, 11 May 2015 at 6:49 pm Jindřich Mynarz mynarzjindr...@gmail.com wrote: Hi, a quick question: is there a Clojurescript-compatible library for Mustache (https://mustache.github.io/)? I

Re: [ClojureScript] Mustache for Clojurescript?

2015-05-11 Thread Daniel Compton
wrote: Thanks, Daniel. I've already found about cljsjs.mustache and I'm considering it as an alternative if there's no library in Clojurescript. - Jindřich On Monday, 11 May 2015 10:47:33 UTC+2, Daniel Compton wrote: It's not quite what you were looking for, but https://clojars.org

Re: [ClojureScript] sente - parameterising context root

2015-05-28 Thread Daniel Compton
Hi Colin Take a look at https://github.com/ptaoussanis/sente/issues/50, particularly the last few messages. It describes how to set the connection URL. Though it sounds like your issue is more about determining the context root of a cljs app, not specifically about Sente? On Thu, 28 May 2015 at

Re: [ClojureScript] Performance tuning a Reagent/Re-frame application

2015-07-04 Thread Daniel Compton
Are you using Re-com as well? That relies heavily on Flexbox which is only just starting to be optimised in Firefox. I think Firefox 38 from memory was where it started to get better performance, although still not as fast as Chrome. The other tip is to look at the rendering timeline and see which

[ClojureScript] Re: [ANN] Clojure 1.7.0-RC1 now available

2015-05-22 Thread Daniel Compton
One of the most significant features of 1.7 are Reader Conditionals. I'm pretty confident after all the discussion that has gone on that we have a good design. However I haven't seen many or any libraries which have gone through the porting process to use Reader Conditionals. I've worked on

Re: [ClojureScript] Namespaces in ClojureScript that begin with clojure

2015-08-16 Thread Daniel Compton
With a version number like 0.1.346.0-17112a-alpha I think this would be the time to harmonise core.async's clojure and clojurescript namespaces before things stabilise too much. However there may be some technical reasons why this isn't possible, and Clojure's stability at all costs philosophy may

Re: [ClojureScript] Pure JS ClojureScript build system?

2015-08-01 Thread Daniel Compton
This FAQ might help clear things up https://github.com/clojure/clojurescript/wiki/Bootstrapped-ClojureScript-FAQ. On Sun, 2 Aug 2015 at 4:47 AM Laurent PETIT laurent.pe...@gmail.com wrote: I encourage everyone not to create a new leiningen or a new boot or anything new. Embrace the host

Re: [ClojureScript] aget of nil

2015-08-05 Thread Daniel Compton
I think what I've seen David Nolen saying recently is that aget is only officially for accessing arrays, and you should use goog.object/get for getting properties from JS objects. I'm pretty sure any use of aget for accessing object properties is not supported (even though it works in some cases).

Re: [ClojureScript] Client-only Applications

2015-07-23 Thread Daniel Compton
Hi Gary You may want to check out Electron as this can give you some of what you need. On Fri, 24 Jul 2015 at 8:09 AM Gary Schiltz gary.schi...@gmail.com wrote: I'm looking for a good overall approach for building a ClojureScript application that runs completely in the browser. My target

Re: [ClojureScript] Re: Re-frame Relay

2015-07-23 Thread Daniel Compton
I'm working (at Day8) on data subscriptions with Re-Frame which will be roughly analogous to GraphQL. I can't say too much more about the design because it's changing all the time, but we hope to have something that's useful for others sometime in the future. On Fri, Jul 24, 2015 at 8:57 AM Marc

Re: [ClojureScript] Re: ANN: ClojureScript 1.7.170, Enhanced Build Pipeline

2015-11-16 Thread Daniel Compton
Can someone explain why it's necessary to manually add a dependency on clojurescript in the :plugins vector? :plugins [[lein-figwheel "0.5.0-SNAPSHOT"] [org.clojure/clojurescript "1.7.170"]] ;; Overrides broken lein-figwheel dependency. Shouldn't the version of ClojureScript specified

Re: [ClojureScript] Re: ANN: ClojureScript 1.7.145

2015-10-13 Thread Daniel Compton
I should mention, not all usages of c.string/replace will break :), but it does change the behaviour when using a function as the replacement value. You can see more details at CLJS-1304 <http://dev.clojure.org/jira/browse/CLJS-1304>. On Wed, Oct 14, 2015 at 5:10 PM Daniel C

[ClojureScript] ANN: re-frame 0.5.0-alpha1 - testing needed

2015-10-16 Thread Daniel Compton
Hi folks re-frame 0.5.0-alpha1 has been released . There are three main improvements in this release: - Dynamic subscriptions. #108 - Use yield

Re: [ClojureScript] Clojurescript async not yeilding for CPU intensive work

2015-08-24 Thread Daniel Compton
Hi Timothy We ran into a similar issue recently as well, see http://dev.clojure.org/jira/browse/ASYNC-137 for more details. I *think* in your case you would need to split your work up into chunks and yield control back to the browser after each chunk of work (with a (timeout 0)). See

Re: [ClojureScript] Re: No regexp groups in Clojurescript clojure.string/replace

2015-09-07 Thread Daniel Compton
Which version of ClojureScript are you using Lance? It looks like this difference is resolved in CLJS-1304 https://github.com/clojure/clojurescript/commit/3e146905999f9b9ffb249e139e266f845c4af34c which is part of CLJS 1.7.122 (not a stable release yet). On Tue, Sep 8, 2015 at 6:02 AM Lance

Re: [ClojureScript] weird clojurescript encoding of UUID from transit

2015-09-27 Thread Daniel Compton
“All support tickets are either product bugs or documentation bugs.” - Gwen Shapira Another option if the UUID type is staying the same would be to add a note on this to the Transit-cljs README. It would explicitly point out that a cct UUID

Re: [ClojureScript] weird clojurescript encoding of UUID from transit

2015-09-27 Thread Daniel Compton
I think this is the best discussion I've seen on the two UUID types in Transit https://github.com/cognitect/transit-cljs/pull/10 On Sun, Sep 27, 2015 at 12:14 PM Colin Yates wrote: > Yeah, I wondered that too. Given that cljs.core/uuid was already > established… > > I am

Re: [ClojureScript] Why is "doc" function lost after moving to another namespace?

2015-12-26 Thread Daniel Compton
I’m familar with the CLJS REPL enough to say for sure, but in Clojure, pst, and other functions are part of the clojure.repl namespace. This is automatically required by Leiningen (and others?) when you start a REPL. When you switch namespaces clojure.repl

Re: [ClojureScript] re-frame testing with multiple dispatches

2016-05-25 Thread Daniel Compton
Hi Keegan I think I understand what you’re saying, but just to be clear: > It seems the root of the issue is that dispatch is placing events into a queue via an FSM implementation. This works well in production but it causes all handlers that dispatch subsequent events to fail during tests, as

[ClojureScript] Re: cljsbuild hangs with foreign-libs using letsencrypt

2016-06-13 Thread Daniel Compton
AFAICT cljsbuild doesn’t do anything special with the :foreign-libs key and passes it straight to the compiler. Can you reproduce this issue against the bare ClojureScript compiler? On Tue, Jun 14, 2016 at 4:58 AM Elric Erkose wrote: > Recently I switched my local cdn

Re: [ClojureScript] re-frame testing with multiple dispatches

2016-05-30 Thread Daniel Compton
To be honest, I’m not really sure what the answer is here. Would love to know though. You can hook into the re-frame event queue if you want. I’d probably be leaning towards Selenium/Karma, but I don’t really know enough to say. Would be interested to hear your results! On Fri, May 27, 2016 at

Re: [ClojureScript] Re: ANN: ClojureScript 1.9.14, clojure.spec port

2016-06-01 Thread Daniel Compton
Would it be good to change the namespace for spec from cljs.spec to clojure.spec? This will make CLJC files nicer to write as you won’t need to have reader conditionals for requiring cljs.spec in CLJS and clojure.spec in CLJ. It seems like spec is going to be used by lots of projects, so the

Re: [ClojureScript] Re: ANN: ClojureScript 1.8.34

2016-03-20 Thread Daniel Compton
I may be way off on this, but I would expect :compiler-env, special-fns, warn-on-undeclared to be in figwheel config, not in the compiler config, hence to cause no issues? https://github.com/bhauman/lein-figwheel/tree/v0.5.0-5#client-side-configuration-options On Sat, Mar 19, 2016 at 12:48 PM

Re: [ClojureScript] best editor/IDE with .cljc support?

2016-05-23 Thread Daniel Compton
Hi Georgi Cursive has pretty good cljc support. There are still some places where it is imperfect, mainly in formatting, and resolution, but it still works very well. If you’re already familiar with IntelliJ for Java then it shouldn’t be much of a learning curve to use Cursive. On Sun, May 15,

[ClojureScript] Re: Can anyone recommend a library for saving attachments and images on S3?

2017-02-05 Thread Daniel Compton
On Friday, February 3, 2017 at 2:05:55 PM UTC+13, Hari Krishnan wrote: > Hello, > > Can anyone recommend a CarrierWave (for Ruby on Rails) like library for > Clojure/Clojurescript, for S3 and Datomic? Much appreciated. > > What is the good practice? Any thoughts? > > Thanks in advance. >

Re: [ClojureScript] What are key use cases for clojurescript?

2017-01-30 Thread Daniel Compton
ClojureScript is well suited to rich client-side web applications and server applications under Node. My rough intuition is that the most common use case for ClojureScript in industry are rich B2B or B2C webapps, often using Om, Reagent, re-frame, or another React wrapper. ClojureScript would be

Re: [ClojureScript] Running clojurescript's own test suite

2017-02-21 Thread Daniel Compton
You probably want to run $ script/bootstrap # to set stuff up $ script/test # to test the ClojureScript std lib IIRC, lein test tests the compiler, which would be why you wouldn’t see your ClojureScript test failing. There is also https://github.com/clojure/clojurescript/wiki/Developers and

Re: [ClojureScript] Re: js->clj keywords

2017-02-26 Thread Daniel Compton
What version of CLJS are you using? The patch was introduced in CLJS 1.9.183. Running on Planck this seems to work: cljs.user=> (js->clj (clj->js {"a" 1}) :keywordize-keys true) {:a 1} I have a vague memory that some of the types in the DOM API behave like JS objects, but aren’t actually JS

Re: [ClojureScript] [ANN] beta.clojars.org: new Clojars infrastructure that needs testing

2016-09-25 Thread Daniel Compton
Hi folks We have completed migration of the production server (clojars.org) from Linode to Rackspace. Everything seems to have transferred across smoothly. Please let us know if you have any issues. Thanks On Fri, Sep 23, 2016 at 9:26 AM Daniel Compton < daniel.compton.li...@gmail.com>

Re: [ClojureScript] [ANN] beta.clojars.org: new Clojars infrastructure that needs testing

2016-09-25 Thread Daniel Compton
Oh, one more thing, a big thanks to lvh <https://www.lvh.io>, and Rackspace for sponsoring Clojars. We really appreciate it! On Mon, Sep 26, 2016 at 4:24 PM Daniel Compton < daniel.compton.li...@gmail.com> wrote: > Hi folks > > We have completed migration of the productio

Re: [ClojureScript] sourcemaps require main.out?

2016-10-06 Thread Daniel Compton
Hi Luke You’re spot on here, and this is something that took me a little while to figure out as well. Sourcemaps don’t necessarily have to include the cljs/js sources, they just have a mapping from the generated JS to the original source file. For a browser (or exception tracker) to be able to

Re: [ClojureScript] [ANN] beta.clojars.org: new Clojars infrastructure that needs testing

2016-09-22 Thread Daniel Compton
; On Tue, Sep 20, 2016 at 4:17 PM, Daniel Compton < > daniel.compton.li...@gmail.com> wrote: > >> Hi folks >> >> We’re moving the Clojars infrastructure from Linode to the very kind >> folks at Rackspace. We’re getting close, and have a test server setup at &g

[ClojureScript] [ANN] beta.clojars.org: new Clojars infrastructure that needs testing

2016-09-20 Thread Daniel Compton
Hi folks We’re moving the Clojars infrastructure from Linode to the very kind folks at Rackspace. We’re getting close, and have a test server setup at beta.clojars.org. It has a copy of the live database as of a day ago, and is mirroring JARs from the live server. We’ve done testing of what we

[ClojureScript] Re: [ANN] beta.clojars.org: new Clojars infrastructure that needs testing

2016-09-21 Thread Daniel Compton
> > Thanks, sounds like a lot of work. Any particular reasons for the switch? > > Yep it was :) One more reason for moving is that we’re not comfortable with Linode’s security. -- — Daniel -- Note that posts from new members are moderated - please be patient with your first post. --- You

Re: [ClojureScript] INTERNAL COMPILER ERROR starting with Cljs >= 1.8.51

2016-10-18 Thread Daniel Compton
Hi Peter I've had good luck in the past doing a git bisect on ClojureScript to track down exactly which commit introduced the bug. That might help in this case? For those who haven't used git bisect, you give it a good commit and a bad commit. git will then do a binary search through the commits

Re: [ClojureScript] When to use dynamic vars in ClojureScript?

2016-10-18 Thread Daniel Compton
> I'd really think twice before requiring your users to insert matching pairs of mutation in their code. It goes against the grain of clojure and is error-prone. > Why can’t on-jsload (is that figwheel's?) just run the update within a (binding [*warn-on-overwrite* false] ...)? The (simplified)

[ClojureScript] [ANN] re-frame 0.9.0-alpha1

2016-11-28 Thread Daniel Compton
re-frame 0.9.0-alpha1 is released. Please give it a try in your projects and give us any feedback if there are any issues. If not, then we will likely release 0.9.0 shortly. You can see the full list of changes at CHANGES.md

Re: [ClojureScript] Re: Variant macros with reader conditionals?

2016-11-27 Thread Daniel Compton
Is this behaviour guaranteed/safe to rely on in future ClojureScript releases? On Sat, Nov 26, 2016 at 12:17 PM mars0i wrote: > On Friday, November 25, 2016 at 10:27:19 AM UTC-6, Tommi Reiman wrote: > > Hi, > > > > Bumped into the same while writing spec-tools macros for

[ClojureScript] When to use dynamic vars in ClojureScript?

2016-10-16 Thread Daniel Compton
When figwheel reloads re-frame code, there are some warnings that I would like to turn off, as they are expected. In the part of the code which logs a warning, I have defined **warn-on-overwrite** as a dynamic var and check if it is true before emitting a warning. In my figwheel config, I have

[ClojureScript] [ANN] re-frame 0.9.0 is released

2016-12-14 Thread Daniel Compton
Hi folks re-frame 0.9.0 has been released. The headlining features are vastly improved docs, and making it OK to use subscribe inside form-1 Reagent components. You can see the full changelog here:

Re: [ClojureScript] What is clojurescript 1.9.495?

2017-03-30 Thread Daniel Compton
lein ancient is checking the Maven repositories for the latest version. 1.9.495 has been released to Maven Central, but isn’t marked as an ‘official’ release on GitHub. You can see the tag here: https://github.com/clojure/clojurescript/releases/tag/r1.9.495. In general, ClojureScript often does

Re: [ClojureScript] secure cljs eval of user generated code

2017-07-16 Thread Daniel Compton
Hi Dustin Where are you wanting to evaluate this? Something like https://github.com/google/caja or http://www.adsafe.org/ may be useful. We probably need to know a bit more about the usage scenario to give more specific advice. -- Daniel. On Sun, Jul 16, 2017 at 10:30 AM Dustin Getz

[ClojureScript] Warning: breaking behaviour change of seqable? in CLJS 1.9.456

2017-05-31 Thread Daniel Compton
Hi folks We ran into issues in production yesterday after upgrading to ClojureScript 1.9.456, and I haven't seen anyone else mention this so I thought I'd point it out for anyone upgrading. In versions prior to CLJS 1.9.456, seqable? tested only for the ISeqable protocol, i.e. collections. In

Re: [ClojureScript] Warning: breaking behaviour change of seqable? in CLJS 1.9.456

2017-05-31 Thread Daniel Compton
wrote: > Thanks for the report. That's unfortunate but I think in this case > consolidating the behavior with Clojure is best. > > David > > On Wed, May 31, 2017 at 4:28 PM, Daniel Compton < > daniel.compton.li...@gmail.com> wrote: > >> Hi folks >> >

Re: [ClojureScript] Re: Day8/Reframe Subscription Refactor

2017-09-07 Thread Daniel Compton
Hi Jakub You might already know this, but rather than creating the subscriptions manually, you can also use syntactic sugar to specify them as a dependency. For example:

[ClojureScript] ANN: Clojurists Together - Funding critical Clojure open source projects

2017-11-13 Thread Daniel Compton
ts Together Committee <https://clojuriststogether.org/team/>: Toby Crawley, Bridget Hilyer, Maria Geller, Devin Walters, Daniel Solano Gómez, Larry Staton Jr., Daniel Compton. -- Note that posts from new members are moderated - please be patient with your first post. --- You received this

[ClojureScript] ANN: Deps Versions - Add badges to spot when your dependencies are out of date

2017-11-13 Thread Daniel Compton
Hi folks I’m pleased to announce Deps Versions (https://versions.deps.co/). Deps Versions is a service that shows you when your dependencies are outdated. You can add badges to your OSS Clojure/ClojureScript GitHub projects that will check if your dependencies are up to date. I hope to add

Re: [ClojureScript] lein, clojurescript, and Java 9?

2017-12-06 Thread Daniel Compton
Hi Rob I've written up some upgrade notes here on what you need to do to use Java 9: https://www.deps.co/blog/how-to-upgrade-your-clojure-projects-to-use-java-9/. That might be useful to you, or other readers looking to upgrade to Java 9. -- Daniel. On Wed, Dec 6, 2017 at 3:23 PM Alex Miller

Re: [ClojureScript] Looking for Reagent-based framework/library suggestions

2018-01-29 Thread Daniel Compton
Hi Jonathon I'll put my cards on the table up-front, I work at Day8 and do a lot of work developing re-frame apps and working on re-frame + Day8's re-frame libraries. I think re-frame is a great UI framework, and we have had success building and maintaining large (50,000 LOC) applications with

[ClojureScript] Clojurists Together Q2 2018 Call for Proposals

2018-04-10 Thread Daniel Compton
Hi folks Clojurists Together is an organisation dedicated to funding critical open source Clojure projects. We fund projects on a 3-month cycle. Funding varies based on member support, but in our current cycle we were able to fund clj-http and Figwheel $1800USD/mo each for three months. Both

[ClojureScript] [ANN] re-frame-10x 0.3.1

2018-04-05 Thread Daniel Compton
Today we announce v0.3.1 of re-frame-10x. It contains three headline features, plus a few smaller fixes and quality of life improvements. *Demo App * Want to see it in action easily? Run TodoMVC with re-frame-10x attached:

[ClojureScript] Re: [ANN] re-frame-10x 0.3.1

2018-04-09 Thread Daniel Compton
ta structure. This should result in a big performance boost on apps which have a lot of data in app-db. Let us know if you have any issues or questions, either here, on #re-frame in Clojurians Slack, or on GitHub. On Thu, Apr 5, 2018 at 8:43 PM Daniel Compton < daniel.compton.li...@gmail.com>

[ClojureScript] Re: Clojurists Together Q2 2018 Call for Proposals

2018-04-19 Thread Daniel Compton
Thanks, Daniel. On Wed, Apr 11, 2018 at 9:16 AM Daniel Compton < daniel.compton.li...@gmail.com> wrote: > Hi folks > > Clojurists Together is an organisation dedicated to funding critical open > source Clojure projects. We fund projects on a 3-month cycle. Funding > var

[ClojureScript] Clojurists Together Call For Funding Proposals: November 2018 - January 2019

2018-10-03 Thread Daniel Compton
Hi folks Clojurists Together is soon going to be evaluating proposals for our Q4 funding round of November 2018 - January 2019. If you maintain a Clojure/Script open source project/service/something else, please consider applying for funding. We

[ClojureScript] [ANN] re-frame-10x 0.4.0

2019-03-30 Thread Daniel Compton
Hi folks re-frame-10x 0.4.0 is out now. re-frame-10x is a debugging tool for re-frame applications. It lets you inspect the inner workings of your application, pull out data from your app-db, trace code execution, and travel through (your

[ClojureScript] Clojurists Together wants to fund you to work on your open source Clojure project

2019-07-11 Thread Daniel Compton
Hi folks Clojurists Together is about to award another round of funding to support open source Clojure projects. *Applications close on Wednesday, July 17th, 2019 at 11:59pm PST.* Clojurists Together is an

[ClojureScript] [ANN] Clojurists Together Q2 2019 funding round - $9,000 over three months to work on your Clojure project

2019-04-10 Thread Daniel Compton
Hi folks Clojurists Together is an organisation dedicated to funding critical open source Clojure projects. We fund projects on a 3-month cycle. In the past we have funded projects like Figwheel, Shadow CLJS, Kaocha, Datascript, cljdoc, and lots more

[ClojureScript] Re: Clojurists Together wants to fund you to work on your open source Clojure project

2019-08-07 Thread Daniel Compton
-announcement/. Thanks to all of the Clojurists Together members who helped make this happen. -- Daniel. On Fri, Jul 12, 2019 at 9:23 AM Daniel Compton < daniel.compton.li...@gmail.com> wrote: > Hi folks > > Clojurists Together <https://www.clojuriststogether.org> is abo

[ClojureScript] Re: Clojurists Together funding round for Q4 2019

2019-10-22 Thread Daniel Compton
Sorry, this should have said *Applications <https://www.clojuriststogether.org/open-source/> close on Saturday, October 26th, 2019 at 11:59pm PST.* On Tue, Oct 22, 2019 at 9:02 PM Daniel Compton < daniel.compton.li...@gmail.com> wrote: > Hi folks > > Cloju

[ClojureScript] Clojurists Together funding round for Q4 2019

2019-10-22 Thread Daniel Compton
Hi folks Clojurists Together is about to award another round of funding to support open source Clojure projects. *Applications close on Saturday, July 26th, 2019 at 11:59pm PST.* Clojurists Together is an

[ClojureScript] Re: Clojurists Together call for proposals (4 projects $9,000 each)

2020-01-26 Thread Daniel Compton
member <https://www.clojuriststogether.org/companies/>, or a developer member <https://www.clojuriststogether.org/developers/>. You can now use a credit card instead of PayPal, and we can accept bank transfers for annual memberships. Thanks, Daniel. On Wed, Jan 15, 2020 at 5:39

[ClojureScript] Clojurists Together call for proposals (4 projects $9,000 each)

2020-01-08 Thread Daniel Compton
Hi folks Clojurists Together is going to be funding 4 Clojure open source projects from February - April. If you maintain an open source project that could use some funding, please consider applying. Applications close in a week on 15th January 11:59pm PST. The main things our members were

[ClojureScript] Re: Clojurists Together call for proposals (4 projects $9,000 each)

2020-01-14 Thread Daniel Compton
funding rounds). I'm happy to review application drafts if people want some guidance or are not sure if their application fits our funding structure. Thanks, Daniel. On Thu, Jan 9, 2020 at 8:26 PM Daniel Compton < daniel.compton.li...@gmail.com> wrote: > Hi folks > > Cloj

[ClojureScript] Clojurists Together wants to fund you to work on your open source Clojure project from May-July 2020

2020-04-03 Thread Daniel Compton
Hi folks Clojurists Together is about to award another round of funding to support open source Clojure projects. *Applications close on Thursday, April 9th at 11:59pm PST.* Clojurists Together is an

[ClojureScript] Re: Clojurists Together wants to fund you to work on your open source Clojure project from May-July 2020

2020-04-22 Thread Daniel Compton
://www.clojuriststogether.org/news/q2-2020-funding-announcement/. Thanks to all of our members <https://www.clojuriststogether.org/members/> for your support, we couldn't do it without you. Daniel and the Clojurists Together committee On Fri, Apr 3, 2020 at 8:37 PM Daniel Compton < daniel.c

[ClojureScript] Clojurists Together wants to fund you to work on your open source Clojure project from August-October 2020

2020-07-23 Thread Daniel Compton
Hi folks Clojurists Together is about to award another round of funding to support open source Clojure projects. *Applications close on Tuesday 28th July.* Clojurists Together is an organisation, dedicated to