Michael

Results 22 comments of Michael

It seems there's a couples things going on here: 1. Non-enumerable properties: Some properties are explicitly defined as non-enumerable, so `for (var key in obj)` won't pick them up, but...

Some other notes: - `goog.object` has a function `getAllPropertyNames` that enumerates properties/methods up the prototype chain - At the very least, we should be including non-enumerable properties with `Object.getOwnPropertyNames` -...

@smogg thanks for the report. Interesting, I guess the correct JS is: ``` javascript Quill['imports']['formats/list/item'].prototype = { ... ``` but I don't think this is valid in an extern. In...

I've fixed the invalid format in https://github.com/jmmk/javascript-externs-generator/commit/0fcc0df8a08d5dfd6760a10d9885bed11033cba9 instance methods are still not handled

It works when I run it without advanced compilation, so I'm not sure what's going on there. I found a potential fix - replacing the ClojureScript set (`#{}`) with an...

@mrmonday I've made a rough example of adding a bpf filter using the bpf backend: https://gist.github.com/jmmk/5c8055fce40f018b27138c9b77214049. It works on macOS for the `packetdump` example Notes: - It requires linking `libpcap`...

Here's a small example of what I'm doing at the moment in my own code: https://gist.github.com/jmmk/d6c42375ac1471a1773a601d9c9dd341 I have some wrappers around `libpcap` C functions (not using `pcap` crate) and then...

@jcodagnone You can see the full thing at https://github.com/Traackr/gnip4j/blob/powertrack-v2/core/src/main/java/com/zaubersoftware/gnip4j/api/impl/PowerTrackV2ReplayUriStrategy.java The empty constructor is for adding/removing Rules, and the one accepting `from` and `to` dates for use with a Replay Stream....

One other requirement for Replay Streams - when a replay stream finishes it sends a message that looks like (See [the docs](http://support.gnip.com/apis/replay2.0/api_reference.html#Stream) for more information): ``` json { "info": {...

There's a pretty good benchmark suite at https://github.com/krausest/js-framework-benchmark that compares a lot of implementations. I added one for `fable-arch-virtualdom` and `fable-arch-react` in the `fable-arch` branch here: https://github.com/jmmk/js-framework-benchmark/tree/fable-arch Here are the...