Yunyu Lin

Results 10 comments of Yunyu Lin

@ghosh Nope, but it seems to happen with some other fonts (which make the height/width of the :after an odd number).

I think a workaround would be to add some classes that make the paddings in half pixels

Had to switch to TablePlus due to the absence of this feature :(

Are there any updates on this? It would be a pretty nifty feature to have...

@til-schneider Minor note, it looks like the generated code isn't compatible with `--strictNullChecks` (with the aforementioned @types/pbf issue): Would you mind me PRing a fix to your repo?

I am using gSwitch: https://github.com/CodySchrank/gSwitch

This doesn't seem to be supported by the SockJS client library with the WebSocket transport: https://github.com/sockjs/sockjs-client/blob/master/lib/transport/websocket.js#L61 Setting a timeout for WebSocket send() isn't part of the standard, and is likely...

To me, this looks like https://github.com/wtfaremyinitials/osa2/blob/master/index.js#L6 outputting ES6, which is presumably not supported by osascript. It looks like changing all the arrow functions to `function ()` (and possibly changing all...

I had to explicitly call `MapReduceDocumentsChain.combine_docs` for this to work. Also the async version `acombine_docs` doesn't work – needed to wrap it in `asyncio.run_in_thread` to simulate async.

I worked around this by extending the Select component, overriding the `select(v)` method, and calling `this.$emit('select', v);` before calling the superclass method, then using `@select` instead.