Kyle Carberry

Results 42 issues of Kyle Carberry

`VSCODE_OPTIONS` can be an environment variable providing flags to code-server much like `NODE_OPTIONS`.

feature

This adds OIDC authentication to the product! It doesn't follow the OIDC standards yet. The email and username cannot be used as unique, so we'll have to add an identifier...

Update 7/29/2022: Unfinished items have been carried over and re-prioritized in the August Roadmap https://github.com/coder/coder/issues/3182 This is not a hard commitment to all of the items presented and other items...

Any provisionerd instance should be able to connect without authentication. ----- - [ ] https://github.com/coder/coder/issues/1392 - [ ] https://github.com/coder/coder/issues/1393

epic
backend
needs grooming

I commonly need to warn users about potential issues that aren't fatal. cc: @nhooyr 🔥🔥🔥

``` ================== WARNING: DATA RACE Write at 0x0000017ecc40 by goroutine 57: github.com/chzyer/readline.DefaultOnWidthChanged() /home/runner/go/pkg/mod/github.com/chzyer/[email protected]/utils_unix.go:68 +0x30 github.com/chzyer/readline.NewOperation() /home/runner/go/pkg/mod/github.com/chzyer/[email protected]/operation.go:82 +0x84c github.com/chzyer/readline.(*Terminal).Readline() /home/runner/go/pkg/mod/github.com/chzyer/[email protected]/terminal.go:95 +0x5b github.com/chzyer/readline.NewEx() /home/runner/go/pkg/mod/github.com/chzyer/[email protected]/readline.go:167 +0x41 github.com/manifoldco/promptui.(*Prompt).Run() /home/runner/go/pkg/mod/github.com/kylecarbs/[email protected][119](https://github.com/coder/coder/runs/5152098085?check_suite_focus=true#step:7:119)0244-d8f2159af2b2/prompt.go:142 +0x35a github.com/coder/coder/cli.prompt() /home/runner/work/coder/coder/cli/root.go:178 +0x9b2 github.com/coder/coder/cli.projectCreate.func1()...

This allows a configurable cache path to store postgres archives. Callers can centralize the location of all data stored by this library with this change.

This enables callers to supply their own form of TTY cancellation. We have our own Windows TTY library based on ConPTY, and would like to use it with bubbletea, but...

enhancement

When using paths in `tsconfig.json` to reference files in outer directories, the compiler fails to resolve: ```json { "compilerOptions": { "paths": { "lib/ts/*": ["./lib/ts/*"] } } } ``` ``` error:...

enhancement
typescript

When opening DataChannels in parallel it was possible for multiple to be allocated the same ID since the `generateAndSetDataChannelID` func references the DataChannel ID, which was being set after the...