Paul Liu

Results 18 issues of Paul Liu

When using the derived `TryInto/TryFrom` instances, if the result is an `Error`, the original value is consumed (if it is not a reference). This prevents the valid use case of...

Right now the lowering from Domain IR to Parallel IR and optimizations at Parallel IR level are in the same pass, which has to deal with nested processing in a...

enhancement

Currently CGen produces C program using identifier names that come from Julia without much modification. However, there could be potential conflict with existing identifiers or keywords in C, or with...

The following currently fails: ``` julia using ParallelAccelerator @acc test_leftdiv(n) = eye(n, n) \ ones(n, n) test_leftdiv(10) ``` The error right now is in the attempt to translate a `typeof`...

feature-request

- [x] Single player game - [x] Frontend for single player - [x] Make backend multi-player - [x] Make frontend multi-player - [x] Landing page: enter username, choose opponents, start...

Now that the game is playable on both desktop & mobile, the user experience of switching browsers is not great, because dfx uses browser's localstorage to store user identity (keypairs),...

Just want to make a note that using [ring::signature::Ed25519KeyPair::generate_pkcs8()](https://docs.rs/ring/0.16.20/ring/signature/struct.Ed25519KeyPair.html#method.generate_pkcs8) has a bug that creates wrongly formatted pkcs8 strings or PEMs. See this thread for more details https://github.com/briansmith/ring/issues/1464. What it means...

The previous design of cycle deposit process was synchronized with other cycle related activities (e.g. canister top-up or other deposits) because we had no easy way of calculating how much...

**Problem** At the moment canister list is not sorted, lacks pagination, and there is no basic search by name (or id). **Plan** 1. Allow the list to be sorted by...

feature