Tan Jay Jun

Results 31 comments of Tan Jay Jun

To clarify, the Rambo shim crashes by design but Rambo inside Elixir still returns gracefully with `{:error, "rambo exited with 101"}`. So two other options are, 1. Crash inside Elixir...

Can you paste a UTF-8 binary that doesn’t work for me to try out? I do use Rambo to print fancy characters daily without issues.

Thanks for the detailed investigations! Here’s how I reproduced it. ```elixir iex> Rambo.run("echo", [String.duplicate(".", 64) "💣"], log: :stdout) ................................................................💣 iex> Rambo.run("echo", [String.duplicate(".", 63) "💣"], log: :stdout) ** (ArgumentError) argument error...

Wonderful, would really appreciate that! I have my eye on using `Unicode.String.split` for separators since you’ve done that, but figured I’ll do this update in one shot.

If you check my [`icu`](https://github.com/jayjun/slugify/blob/icu/c_src/slug.c#L61-L64) branch, transliterating `Any-Latin` first then `Latin-ASCII` works. I’m not sure how `Any` is implemented though. The `Any-Latin; Latin-ASCII; Lower` compound transform exactly describes what this...

@tarzan The example assumes `MyApp.Guardian.encode_and_sign/1` is free from side effects. If we extend that function to skip callbacks, we can avoid Guardian.DB issues. ```elixir MyApp.Guardian.encode_and_sign(resource, claims, skip_callback: true) ``` Also,...

Actually, it no longer resolves for me either.

#388 implies that config variables are available during Docker builds, but that's [certainly untrue](https://github.com/deis/dockerbuilder/blob/034e35c89501e9f742ef8a9db5f260aa41f61f97/Makefile#L9). However, naively passing all config variables to `--build-args` probably isn't wise. Docker discourages, > [using build-time...

@bacongobbler Yes, config variables are [mapped](https://github.com/deis/builder/blob/master/pkg/gitreceive/build.go#L180) to the build pod's env variables. But running `docker build` doesn't automatically inject the surrounding pod's env variables into the app container that it's...