Rano | Ranadeep
Rano | Ranadeep
https://github.com/tomaka/2018-rustrush-demo/blob/634b750cac5d741c4a77d32ae3abdf2406542d93/src/main.rs#L95-L96 Is this node still live? I am not able to connect two peers from different networks.
In outside-access docker-compose, I need to access `vpn:8000` within a local network. https://github.com/0xcaff/docker-openvpn-client/blob/258069bba415e2d2fd0e57a918dfbf022eeaba66/examples/outside-access/docker-compose.yml#L54 I can access it from host by `vpn`'s ip, like `172.17.0.2:8000` if I publish port on `vpn`...
Looks like they made their source code private. https://github.com/cosmos/chain-registry/blob/6a82418682d3e3196aadb1cba16b233849192a63/oraichain/chain.json#L23-L32 IPFS link for the binary does not work anymore. Though, their tendermint RPC and REST API endpoints are live. https://github.com/cosmos/chain-registry/blob/6a82418682d3e3196aadb1cba16b233849192a63/oraichain/chain.json#L84-L97
I understand the need of JSON. But the chain information are maintained manually. Probably better if we use YAML (or something similar as TOML) for readability and compile and serve...
[ping.pub](https://ping.pub)'s REST API endpoints are listed at [their repo publicly](https://github.com/ping-pub/explorer/tree/master/src/chains). Would be nice to if we can auto-include them.
Support for password-protected rooms and multiple rooms would be great. I feel the API can be built over chat commands. Valid commands for admin ``` /create roomname [password] /listrooms /delete...
I was trying to implement password-protected rooms and I noticed, you promote users to admin a bit insecurely. https://github.com/Zibbp/Radium/blob/4a2fdd444285e479dbb9f09dd61f12203d23351a/components/Chat.vue#L87-L108 https://github.com/Zibbp/Radium/blob/4a2fdd444285e479dbb9f09dd61f12203d23351a/io/index.js#L70-L74 I am not a Nodejs expert. but it seems, from...
Shouldn't all the `executeBatch()` be called out of these if-blocks? https://github.com/oltpbenchmark/oltpbench/blob/dc32a26a2dc308c3ca75a7176b997d3a7b30b5c2/src/com/oltpbenchmark/benchmarks/tpcc/TPCCLoader.java#L200-L205 https://github.com/oltpbenchmark/oltpbench/blob/dc32a26a2dc308c3ca75a7176b997d3a7b30b5c2/src/com/oltpbenchmark/benchmarks/tpcc/TPCCLoader.java#L334-L338 https://github.com/oltpbenchmark/oltpbench/blob/dc32a26a2dc308c3ca75a7176b997d3a7b30b5c2/src/com/oltpbenchmark/benchmarks/tpcc/TPCCLoader.java#L509-L515 https://github.com/oltpbenchmark/oltpbench/blob/dc32a26a2dc308c3ca75a7176b997d3a7b30b5c2/src/com/oltpbenchmark/benchmarks/tpcc/TPCCLoader.java#L655-L667 Because when this `commit()` is called in the end, the prepared statements in the last turns,...
How does it perform on a CNN? I have a `.mat` file containing the weights for a standard MNIST CNN classifier. ``` cnn = Sequential([ MIPVerify.get_conv_params(w_dict, "00-Conv2D", (3,3,1,32)), ReLU(), MIPVerify.get_conv_params(w_dict,...
Protobuf `bytes` should [be deserialized to base64 strings](https://github.com/protocolbuffers/protobuf/issues/2801#issuecomment-285812695). Right now all `Vec` are deserialized as they are. The `Vec` case should be handled differently.