Hissssst

Results 43 issues of Hissssst

After reading the code of `tzdata`, I found that ReleaseReader ets tables do contain the zone abbreviations, but Tzdata itself does not provide any functions to fetch timezone information by...

This is a request for comments about initial HTTP1 streaming implementation from ideas in #236

```elixir Mix.install [:plug, :bandit, :finch] defmodule P do @behaviour Plug import Plug.Conn def init(_ \\ []) do {:ok, []} end def call(conn, _) do conn = send_chunked(conn, 200) Enum.reduce(1..1_000_000_000, conn,...