w9
w9
I have a simple testing folder: ``` ./ a.js gulpfile.js test.jade ``` a.js ``` javascript console.log('Hello!'); ``` gulpfile.js ``` javascript var gulp = require('gulp'); var jade = require('gulp-jade'); var inlineSouce...
[Currently](https://github.com/replikativ/datahike/blob/9e4e619d5f06feedacc9d31ad13da88ac2f409d2/src/datahike/db.cljc#L1473), multiple `:db.fn/call`'s are executed sequentially. Since these functions are mandated to be [pure](https://docs.datomic.com/on-prem/database-functions.html#text-create-install-transaction-functions), they need not block each other. They should be able to run in parallel. Their results...
In Datomic, the `:tx-data` in a transaction report returned by `d/transact` can be directly used as a data source for a follow-up query. This is very convenient when trying to...
While XFCE support might not be your top priority, I list here the most frequently seen icons specific to XFCE: - [ ] Logo  - [ ] X icons...
Correct me if I'm wrong, but I think there's a quoting option for encoding, but none for decoding? I just encountered a case (TSV) where there are double quote character...
In existing projects there might be components that already has the `theme` prop. Also, sometimes a component only cares about parts of the theme. Maybe provide an option to send...
I really like the fact that `describe-key` says what key I pressed in emacs's kbd syntax ``` runs the command scroll-up-command... ``` Whereas `helpful-key` does not ``` scroll-up-command is an...
https://github.com/cloojure/tupelo/blob/63a34492bdb2d1f7a94050c653ee233ec1211380/src/cljc/tupelo/core.cljc#L1207 See https://cljs.github.io/api/cljs.core/MapEntry Currently, the missing third argument gives a warning when compiled: ``` ------ WARNING #1 - :fn-arity -------------------------------------------------- Resource: tupelo/core.cljc:1200:12 Wrong number of args (2) passed to cljs.core.MapEntry...
For example, when writing an angular app, you can write some `ng-template` in inline: ``` html(data-ng-app="myApp") body script(type="text/ng-template" id="myTemplate") input.form-control(placeholder="Enter your name here") // these two lines button.btn.btn-default OK! //...
I find the following functions useful that are currently not in the package. They are useful for building simple interactive loops. ``` haskell repeatM :: Monad m => m a...