Conan
Conan
Makes no difference to tab appearance, no changes to any settings make any difference. As a result, doesn't allow for sorting tabs with similarly-named files based on their filename. Installed...
Cheshire has support for lazily parsing JSON files containing large numbers of objects, but not for parsing large objects themselves. For example: ``` {"stars" : [ {"name" : "Betelgeuse", "magnitude"...
When using Chrome's dev tools, if I click the icon to open the device toolbar (the one that pretends you're using a phone, next to the CSS pointy tool) and...
I've tried using both jetty and httpkit, in both cases my request maps contain `nil` values for the optional keys `:body` and `:query-string`; this is not compliant with the [`:ring/request`](https://github.com/ring-clojure/ring-spec/blob/master/src/ring/core/spec.clj#L115)...
``` aws lambda update-function-configuration --role arn:aws:iam::14:role/cljs-lambda-default --runtime nodejs8.10 --memory-size 1024 --timeout 6 --handler index.referralbot_core_SLASH_refer --function-name referralbot-slash-command --vpc-config SubnetIds=[],SecurityGroupIds=[] --dead-letter-config TargetArn= --environment Variables={} usage: aws [options] [ ...] [parameters] To see...
The second time I run `lein cljs-lambda deploy` I always get this error: ``` Caused by: com.fasterxml.jackson.core.JsonParseException: Unexpected character ('X' (code 88)): expected a valid value (number, String, array, object,...
Currently Amazonica [converts](https://github.com/mcohen01/amazonica#conversion-of-returned-types) `java.util.Date`s to `org.joda.time.DateTime`s. Now that we have the time API from Java 8, and [good support](https://github.com/dm3/clojure.java-time) for it in clojure, it would be great to have an...
This was a fun one! The friendly functions in next.jdbc expect [table names as keywords](https://github.com/seancorfield/next-jdbc/blob/v1.2.790/doc/friendly-sql-functions.md#insert), but [Migratus passes them as strings](https://github.com/yogthos/migratus/blob/master/src/migratus/database.clj#L29). Normally this is fine, because the friendly functions delegate...