Tony G

Results 17 comments of Tony G

Seems to be a matter of timing? modifying `bindings.js` to add a delay in `NobleBindings.prototype.startScanning` eliminates the issue? ``` setTimeout(() => { this._advertisementWatcher.start(); rt.keepAlive(true); }, 200); ```

Turns out you can also add the delay in your noble code, as opposed to modifying the bindings.js: ``` noble.on('stateChange', (state) => { console.log('BLE stateChange:', state); if (state === 'poweredOn')...

No peers on the torrent?

> Yes, it's listed as "Over-the-Counter(No VIN)", but when you ask about it, they require VIN to purchase. Maybe I'm not going through the proper channel, but hey Tesla doesn't...

Ugh, here is the correct magnet link: `magnet:?xt=urn:btih:0ca4cdb7792d4d484292141a44d7e802bbd147c0&dn=tesla-model-3&tr=udp://open.stealth.si:80&tr=udp://tracker.leechers-paradise.org:6969&tr=udp://tracker.coppersurfer.tk:6969&tr=udp://exodus.desync.com:6969`

This basically makes it impossible to use when including custom code from a shared layer.

What if you have custom code (not an npm package) in a layer that you also want to exclude?

Yeah, this is major issue...whenever the tooltip is bottom aligned, the arrow is always on left. We need a way to make a bottom aligned tooltip, with the arrow on...

It's looking more and more like I am going to need to do this. The same deficiency is in noble_uwp. I could knock this out in JS, but I am...

I am assuming we want to hit peripheral_winrt/getService instead of going directly to the device? getService is a callback pattern. Assuming we want to get each service in series, maybe...