angelsl
angelsl
@Noeliel Did you build the current master or did you use 0.3.1?
Oh, it's a bug... I actually liked it.
@li-kai Sometimes I want to merge multiple timetables into one, etc; the long URL lets me do that easily. Also saving the long URL gives me a bit more security...
Yes, yes, so much yes. This is probably the best thing that's happened in the frontend code-quality wise ever since it was written. Looking forward to seeing this merged :)
This will need quite a bit of time to properly convert all the places in the frontend that make requests to the backend. And we need to make sure the...
Seems to be an issue in webGLrune.js. I'm guessing it's some sort of infinite loop arising from floating point error/insufficient precision causing something to become 0 or NaN.
As part of configuration: ```ex config :ex_aws, access_key_id: "...", secret_access_key: "...", region: "ap-southeast-1" ``` Specifying `service_override` works as a workaround. (Also, I had to use RestQuery instead of JSON.) ```ex...
I'm referring to [this](https://github.com/ex-aws/ex_aws/blob/master/priv/endpoints.exs#L1172). When making an AWS request, you use your access key and secret key to [derive a HMAC key to sign the request](https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html). The credential scope is...
Basically, what should be happening is that ExAws uses the correct credential scope based on the service name specified. The data is even there in `priv/endpoints.exs`—it just doesn't seem to...
> we will waste lambda invocation Could just move the filter to before [here](https://github.com/source-academy/cadet/blob/e1925a36acbf498bb0c05b6d5c8675a217ea7b52/lib/cadet/jobs/autograder/grading_job.ex#L33).