Keenan G

Results 38 issues of Keenan G

Before this change: ![image](https://user-images.githubusercontent.com/41458184/158681473-c277987d-f281-45da-91f9-bedd21031834.png) After: ![image](https://user-images.githubusercontent.com/41458184/158681522-b519de1c-dcc2-4331-89f0-a55d5c9bcae7.png)

What we probably want to do here is have a default when we are in docker. Right now, if the model_file exists, the default is completely ignored.

Although it's nonsense to spawn a judge without a model_file, it's also nonsense to parse these args in this try, because it leads to useless error messages. Specifically, the judge...

The previous code was a bit hard to follow.

We should compare `projected` with `real` instead of `normalized`. This is because if our file is `/proc/self/maps`, the projected will be `/proc/getpid()/maps`, and the real path is `/proc/getpid()/maps`. We do...

We rely on the `fs` being a list in order to add it to other lists, so we should type it accordingly. MyPy complains about typing in some executors unless...

We can declare the proc directory earlier in the code and use it. We intentionally add a trailing slash on line 352, in case for instance, the process PID is...

On things like contests and submissions, relative times are given. Unfortunately, they aren't that precise. "2 hours ago" can mean anything from 1:30 to 2:30. I was going to PR...

enhancement
good first issue

Depends on #1886. Lots of code was refactored in order for this change to not be horrible to implement. This is a hefty change, so testing from others would be...