Herwig Hochleitner

Results 29 issues of Herwig Hochleitner

When using `@import` in a css file like ```css @import './modules/base.css' ``` the css reloader doesn't reload changes to `base.css`, even if `modules` is in `:css-dirs`

```cljs > (domkm.silk/decode-query "foo=Greg&bar=Linda&foo=John") {"foo" "John", "bar" "Linda"} ``` Such query-strings are allowed and widely supported [1] [2]. Even ring has some (admittedly dodgy) support for this, where it would...

I'm thinking of a `defview` form, that gets a cql table, like ``` (defview customer-sales (-> (table :customer) (join (table :sales) (where (= :sales.customer :customer.id))))) ``` It creates a view...

proposal
enhancement

Join two tables, aggregate over the join, join onto another table: ``` (join (table :workgroups) (-> (table :employees) (join (table :salaries) :emp_id) (aggregate [:avg/salaries.salary] [:workgroup_id])) :workgroup_id) ``` Expected: Something like...

bug

clojureql-core -- AST clojureql-sql -- SQL translation clojureql-jdbc -- JDBC integration TODO: specify interfaces

proposal
tentative

going off from https://github.com/chuntaro/emacs-promise/pull/6 just fixing the `error` call in promise-done, might miss the actual point of the throw in [js Promise.done](https://github.com/then/promise/blob/44f6d7aee2b89d0173139d140a4d0d8fe51bb7af/src/done.js#L10) This throw in a setTimeout seems to me...

make promise-finally rethrow on error, as per spec

Hi, I've stumbled over your project, when looking for .. well, a CPS transformer for javascript, that does what it should. It's pretty impressive, congrats! I tried to apply it...

Those can't be transpiled away, so it would be nice, if jwacs was able to deal with them. Options include: - Just CPS the etter function and let it trampoline...

See https://github.com/chumsley/jwacs/blob/c25adb3bb31fc2dc6e8c8a58346949ee400633d7/cps-transformation.lisp#L780 Adding an issue for completeness sake.