James Darpinian

Results 19 comments of James Darpinian

I'm associating launches from the r/SpaceX API with tracked objects from the space-track.org API. On Sun, May 30, 2021, 10:37 AM Jake Meyer ***@***.***> wrote: > Are you trying to...

I don't see norad IDs in most payloads. For example, Transporter-1 has a single "payload" object with zero entries in the norad_ids array, when it should have at least 143....

Running it in a Git Bash window worked for me.

Out of curiosity I went and tested a bunch of WebGL sites randomly sampled from the "Cool WebGL Stuff" section of the WebGL WG meeting notes. I found that approximately...

The spec seems to be mostly designed for this already. The only obvious thing I saw in skimming the spec was that popErrorScope is specced to reject its promise if...

Registration is live now along with documentation https://developer.tesla.com/docs/fleet-api

Thanks for the data over the years! I made a pull request to update the README so people aren't confused about why the data in the API is stale. https://github.com/r-spacex/SpaceX-API/pull/1329

http://blog.chromium.org/2013/10/connecting-chrome-apps-and-extensions.html An alternative to web sockets for bidirectional communication with native code. Might have better latency properties, though probably still worse than NPAPI.

Handler::on_error is not called

struct WsHandler; impl ws::Handler for WsHandler { fn on_error(&mut self, _ : ws::Error) { panic!("this never happens") } } ws::connect("ws://fail.example.com/404", |_| {WsHandler}).unwrap();