Isaac Yonemoto

Results 169 issues of Isaac Yonemoto

I'm leaving this issue here to notate that there's some work being done in an experimental branch of annex. A few things that Jason and I talked about @ elixirconf:...

### Environment Erlang/OTP 24 [erts-12.0.2] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [jit] Elixir 1.12.0 (compiled with Erlang/OTP 24) phoenix 1.5.9 (Hex package) (mix) ### Steps to reproduce. ``` mix phx.new yolo...

kind:enhancement

Is there some reason why the normal Ecto migration mix tasks can't be used instead?

kousa

I have been mocking a (poorly written) HTTP request by a coworker and after a lot of debugging found that the request was failing to emit a content-type header, it...

feature

For FFIs which use C ABI as a least common denominator, but I'm sure also some header-only C libraries, may not use any stdlib externs, but might still need accoutrements...

proposal

For keeping track of user online state. This information doesn't really need to live in the database, and having frequent read/write events to the db on this content will eventually...

kousa

Currently, the module and directories organization is very unconventional. Elixir doesn't care (for most things) but it does make it hard for experienced Elixir Devs to navigate. Happy to PR...

kousa

typically one expects postgres column names to be in snake_case, to avoid confusion in case you should decide to port the code to an SQL that has... different casing rules....

kousa

I think it should be able to be set via some sort of precomputed function in postgres, I will look into that. (low prio)

kousa

adding the dependency in a rebar3 project using: ``` {plugins, [rebar_mix]}. {provider_hooks, [ {post, [{compile, {mix, consolidate_protocols}}]} ]}. {deps, [jason]}. ``` fails due to the error: `Dep decimal has invalid...