Adelbert Chang

Results 33 issues of Adelbert Chang

Config parsing is where all the magic happens, currently some places use `Option` (hiding potentially useful error messages), some use unsafe methods, some use `IO` exception throwing. We can do...

theme:technical debt

Nelson currently requires some ceremony to get started, between creating the GitHub app, doing all the authentication bits, and actually deploying Nelson itself. We'll want to figure out a way...

theme:ui

* Feature Name: Nelson routing implementation for Kubernetes backend * Start Date: June 2, 2018 ## Summary Currently the Kubernetes backend for Nelson does not support Nelson's routing function which...

area:routing

Given the template: ```mustache spec: {{#envvars}} env: {{#envvars_list}} {{envvar_name}}: {{envvar_value}} {{/envvars_list}} {{/envvars}} resources: requests: cpu: 1 ``` and environment: ```scala Map( "envvars" -> Map( "envvars_list" -> List(Map("envvar_name" -> "FOO", "envvar_value"...

Would something like this be useful/belong in Cats and if so where would it belong? ``` scala def const[A](a: A): ConstAux[A] = new ConstAux(a) final class ConstAux[A] private[cats](a: A) {...

Currently using the Vundle manager for my Vim setup, and everything I install through Vundle works fine. I added the necessary things to `~/.sbt/0.13/plugins/plugins.sbt`, launched SBT in a project somewhere,...