Minigugus

Results 31 comments of Minigugus

Indeed, recordings only last for 7 days without an account. When I chose asciinema, I thought Github would render the recording interactively but no, it's just an image. Then, maybe...

First of all, thanks for the support :) I originally planed to explain why I designed `bazx` this way in the README, but let's do this here. I tried to...

Ok, I see what you mean. I had to do things like `(await stdout($`git branch`)).stdout` since only returning a string loose the exit code information :confused: In bash it's not...

> I would like to make the error handling a little easier. Actually the fact that non-0 status code throws is intended to be configurable, but configuration is not implemented...

> Regarding to error handling, I'll try to read bazx code and think about another solution. Nice :+1: Currently, errors are thrown here: https://github.com/Minigugus/bazx/blob/25ded302cac9a679f3562c22541325acb67db870/src/bazx.ts#L42-L48 I couldn't find the time to...

> Wow! That is just what I wanted to say! (Thank you for reading my mind) Not on purpose ^^' Maybe we just share the same goal ;) > I...

> It is a little difficult to understand when an error is thrown (B) and when it is not (A). The idea is that it depends on where the `await`...

> There may not be much need to be concerned about complying with the standard Response interface strictly. What we need are just ok and status. I just wrote a...

> Deno requires boring boilerplate codes. https://deno.land/[email protected]/io/bufio.ts#L701-L719 + https://deno.land/[email protected]/io/streams.ts#L74-L94 = ```ts import { readLines, readerFromStreamReader } from 'https://deno.land/[email protected]/io/mod.ts'; import $ from 'https://raw.githubusercontent.com/Minigugus/bazx/71767d812c7f759d3160bc7f6834c0330876e4b7/deno.ts'; const lines = []; for await (const line...

> Also I mostly did copy and paste from the changes and I fixed breaking stuff, didn't really fix any unhandled or stuff like that, that the original repo have....