Joshua Wise

Results 106 comments of Joshua Wise

I wrote a promise library that features a fluid streaming library. It might be useful for `bluebird` to take some inspiration from it. The promises have a `Promise#stream()` method, which...

(oh wait, is this thread talking about pull streams? mine is a push stream...)

Changing the theme to `"predawn-DEV.sublime-theme"` also changes the style of the quick panel. How can I fix this issue without changing the style from the familiar predawn theme that I...

This is very important. What's the point of using TypeScript if there's no type checking? 🤦

We are running into this issue here at Postman, forcing us to use the old v2 SDK.

I don't have an M1 mac, but maybe we should incorporate @quanglam2807's feedback before merging?

Any updates on this functionality? I have a use-case where I need to parse a proto file, rewrite the import statements, and then de-compile the modified AST into a new...

So here's the thing. The `iterate()` function is supposed to work as your describe in your *first* example. However, some of the memory that's allocated is managed by the JavaScript...

For the same reason as in #203, it's currently disabled. But in a future version there might be an "expert mode" that can be turned on, for people with these...

Since `better-sqlite3` exposes features that only exist in modern versions of SQLite, such as [`db.serialize`](https://github.com/WiseLibs/better-sqlite3/blob/master/docs/api.md#serializeoptions---buffer), older versions won't work. You would need to fork `better-sqlite3` and remove all features that...