ByronBecker
ByronBecker
@Nadrieril What type of a lift would this look like in order to complete this feature. I'm looking to use dhall for github package management in some of my private...
For reference I'm pretty new to both Dhall and Rust, so I appreciate both of your quick responses in helping to unblock me and find a solution. @Nadrieril Thanks for...
Likewise, one can install that specific version in pipenv like so -> `pipenv install mlbgame~=2.5.0`
@krpeacock For anyone else that runs into this issue, this solution fixed the error for me. https://forum.dfinity.org/t/using-dfinity-agent-in-node-js/6169/69
No problem Ryan - we actually just moved the comment to directly above the generics. You can label this as a super low priority issue. Enjoy the holidays!
@kentosugama @crusso Would love to see this merged in - sometimes just need a count aware iterator without needing to provide a function (like in `Iter.iterate`)
Maybe keep `append` deprecated, but just rename it to `concat` which imo is a better name for the joining of two arrays (most people won't use it to append just...
Right, I could totally test out the LinkedList - the only issue is that I also would like performant lookups, as I expect the database to be more read-heavy than...
Now I understand a bit better what you were saying - that would be a good comparison to see also if the canister heap size has any impact on what...
@crusso This is where the canister gets spun up https://github.com/canscale/CanDB/blob/auto-scaling-poc/src/CanDB.mo#L173 ``` func scaleCanister(db: DB): async () { let indexCanister = actor(db.scalingOptions.autoScalingCanisterId): actor { createAdditionalCanisterForPK: shared (pk: Text) -> async Text...