Graham P
Graham P
It would be really useful to only get notifications after a certain number of confirmations. Most of us are waiting for a transaction to reach the transaction threshold required by...
Consider this example: ``` g2 = new graphlib.Graph({directed: true}); g2.setNode("1"); g2.setNode("2"); g2.setNode("3"); g2.setEdge("1", "2"); g2.setEdge("2", "3"); g2.setEdge("3", "1"); graphlib.alg.findCycles(g2); // [ [ '3', '2', '1' ] ] g2.setNode("4"); g2.setEdge("3", "4");...
During debugging, I find I often have to restart Meteor just to run a specific test again in order to follow along with it in the debugger. I tried `var...
I'm using the CLI in conjunction with "aws s3 sync" which looks at the file timestamp to decide whether to upload. It would be great if I could somehow preserve...
I just got this back from Apple after my app submission: > ITMS-90809: Deprecated API Usage - New apps that use UIWebView are no longer accepted. Instead, use WKWebView for...
Hi, I lost some Bitcoins on an old phone that used Bitcoin Wallet (https://github.com/schildbach/bitcoin-wallet) by doing "Settings > Reset". I tried using this app to find them by dumping the...
Most users expect to be able to use the back gesture in apps. My app really felt 2nd-class until I enabled this. I wasn't able to figure out how through...
Recent versions of iOS block access to localhost when web content is restricted by Screen Time. Since Meteor uses http://localhost to serve Cordova content, users see this error page when...
This method iterates over `this.queries` from a static list of keys (`Object.keys(this.queries)`): ``` for (const qid of Object.keys(this.queries)) { const query = this.queries[qid]; if (query.dirty) { continue; } // keys...