Albert Lai

Results 20 comments of Albert Lai

Hi I think the setup in https://github.com/duct-framework/duct/wiki/Configuration is outdated too.

I would consider my tests falling into second case, that's why we will have code that's only pick the keys needed. As the example you provided, `seed-database` would be some...

This library provides all the small building blocks for customising the whole package process. It might be a good candidate, if no other pre-build option could fully satisfy the needs....

don't know if this would help the compilation. ```clojure (duct/load-hierarchy) (def config (-> (duct/resource "config.edn") (duct/read-config) (duct/prep-config [:duct.profile/dev :duct.profile/local :duct.profile/prod]))) (defn -main [& args] (let [keys (or (duct/parse-keys args) [:duct/daemon])...

https://github.com/nwjs/chromium.src/blob/df7f8c8582b9a78c806a7fa1e9d3f3ba51f7a698/third_party/WebKit/Source/platform/weborigin/KURL.cpp#L628 https://github.com/nwjs/chromium.src/blob/df7f8c8582b9a78c806a7fa1e9d3f3ba51f7a698/url/url_util.cc#L646 the chromium encode flow is 1. convert string to utf-8 string 2. if ascii char append to output 3. if non-ascii char convert to `%` hex hex and...

Sass code is the current code in cryogen-core. Refactoring it to a plugin would be interesting. The last line of code was the code I want to add to cryogen-core....

This is unrelated to the topic of the issue. If you want to ask questions you might be better go to Clojure Slack. In case you still need it, ```clojure...

is this fn enough to do the checking? ```clojure (defn compatible? [conn-opts] (let [[_ version] (->> (car/wcar conn-opts (car/info :server)) (re-find #"redis_version:([0-9])"))] (>= (parse-long version) 7))) ```

This is why keep-alive not working. The default `idleTimeout` for underlying `package:http` is 15 seconds. However, don't know why `dio` set it to 3 seconds. According to `package:http` [documentation](https://api.flutter.dev/flutter/dart-io/HttpClient/idleTimeout.html). The...

Dio 10 requests with no sleep in between Dio 10 requests with 4s sleep in between `dart:http` 10 requests with 4s sleep in between