Ian Clarke
Ian Clarke
Just wanted to check to see if this issue had been resolved. Thank you.
Very nice, it pretty-much worked exactly as described (just need to add `--path` to some of the `cargo` commands per other comments): ``` ~/c/f/f/c/a/f/app cli-cleanup freenet-ping 2024-05-13T16:49:34.339318Z...
I think it belongs in the `client_api` module, perhaps for now in a `client_api.simple` module. So something like: ```rust let api = client_api.simple.API::new(ws_port); let contract_state : Vec = api.get(contract_address).await; ```...
Shoebox could use a better way to do this, but for now something like this should work (I haven't tested this code): ```kotlin val lists = Shoebox(dir.resolve("lists")) val allLists =...
FYI - I asked a question about this on r/java - https://www.reddit.com/r/java/comments/604rfj/is_there_a_reliable_crossplatform_java_library/ Based on what I've learned so-far, I'm concerned that there may not be a sufficiently reliable and efficient...
[Tape](http://square.github.io/tape/) might be an option for logging changes to a file and allowing multiple Shoebox instances to listen for changes.
This will likely require extraction of an OrderedViewSet superclass with subclasses that can be backed by a View or another OrderedViewSet.
I think the problem with unique nicknames is how to enforce this in a decentralized way, and also preventing abuse, something like a person automatically registering every word in the...
I'm worried that enforcing uniqueness could get very complicated, and raises a lot of questions. How do we prevent people from just grabbing millions of nicknames? What if someone forgets...
Note that sessions are created dynamically, which is why all session implementations must currently take the same constructor parameters. One option might be to make TrSessionManager smarter, behaving more like...