raylu

Results 55 comments of raylu

it looks like the patch mixes hard and soft tabs

sorry, I realize now my desc is a bit confusing. `ReservedConcurrentExecutions`'s default is -1, which means use unreserved (not-per-function) concurrency. I defaulted `Concurrency` to -1, so this should just be...

the account-wide (unreserved) concurrency limit applies to all lambda functions running in that AWS account, so it's unlikely you'd want to control concurrency there (also you can't really lower it)

hi! do you need me to rebase to handle the conflicts?

for bonus points, implement `man -w` yourself. most of the logic is in `guess_manpath`: https://git.savannah.gnu.org/cgit/man-db.git/tree/src/manp.c#n665 you can see it in action via `man -wd`

you don't need to handle most of the cases (like when `PATH` is empty or unset). just 1. read `/etc/manpath.config` 2. build a `PATH` → `MANPATH` dict 3. search the...

integrating a GUI app written in a different language with a webapp is an insane amount of work. I wouldn't count on this happening anytime soon... or ever. it is...

the question mark after the field means it's optional. those are fields in the responses to `/api/guilds/:id`, not the member list. I think it's optional because the websocket gateway won't...