Nikita Prokopov

Results 814 comments of Nikita Prokopov

not sure if good idea or not. Black really works because it’s hard to miss, and that’s the point of the notification in the first place. Will give it some...

Hi! I updated the theme expecting https://github.com/atom/language-clojure/pull/75 would be merged (VS Code consumes Atom language definitions), but it still haven’t. I’ll see what I can do

Video of package at work https://twitter.com/nikitonsky/status/1557889757212016641

Anything I can do to speed it up? It’s not a large package by any means, and the most complicated parts are copied from `Default/exec.py`. Basically it just extends what...

Well, for status notifier to work, it’s better to have explicit different callbacks on “build finisher without warnings”, “build finisher with warnings”, “build haven’t finished”. As far as I remember,...

> This does make accessing request headers with single values slightly more laborious: (first (get-in request [:headers "content-type"])) If you are already using `get-in`, it’s still simple: ``` (get-in request...

Great spec, all changes very solid and timely!

The only objection I have to this is that potentially it might inflate binary size too much. Can you run a comparison?

Take a look at reflection warnings, they might give you a hint. E.g. try `(int-array [0xffffff 0x923423])` instead of `[0xffffff 0x923423]`? Also try `(.drawPaint canvas paint)` instead of `(.drawPaint paint)`

Interesting! Normally you need to close windows explicitly by calling `.close` method. Just losing the reference might not be a good idea, although freezing is a weird side effect either...