Jake O'Shannessy

Results 25 comments of Jake O'Shannessy

This plot may be informative too: ![plot](https://user-images.githubusercontent.com/1982652/77174902-acded480-6ab9-11ea-9b64-7370f8b91630.png) The plot uses the following data: ```rust let data_points: Vec = vec![(0.0_f32, 100.0_f32), (50.0_f32, 50.0_f32), (100.0_f32, 0.0_f32)]; chart.draw_series(LineSeries::new(data_points.into_iter(), &BLUE))?; let data_points2: Vec =...

That's more or less the same conclusion I came to. There are two ways to approach it: - Modify the data series or elements to fit the chart. - Apply...

I agree, and would go as far as to say that the act of clipping (especially rectilinearly) is very cheap. There will be bounds checks on the memory buffer when...

Well on the upside, it sounds like we're all one the same page!

This all works in #191. That is: - The user creates a new project via `cap9-cli new --acl`. - The user changes to the project directory. - The user deploys...

Added error messages that should cover most if not all problems that might occur in this workflow and offer guidance on how to fix it.

Added execution of arbitrary procedures via the admin procedure. Added tests to execute new procedures via this process.

I added a script to the root of the cap9-cli package to step through all of these things with the right commands. I've reproduced it here: ```sh cargo run --bin...

This issue is completed with #191.

I have a solution for this. We can use the same mechanism as `cap9_syscall_low` and introduce `cap9_maxgas_call_code` and the like. In the same way we can control the exact instructions...