José Valim
José Valim
That's good to know. I think for now the ability to iterate is more important and once the format is stable enough we can reach out to pandoc.
Today the notebook only has one type of user, and this type of user can do anything. For now, we are not going to change it. So any user who...
You can use inputs to parameterized Livebook and fill those in the UI. Because our inputs use the IO API, they also work when the notebooks run in the CLI...
Yes, you can search previous issues on the topic but the regex is not meant to be a complete validation of the e-mail because it is much more complex than...
@michalmuskala I would say whatever timex is doing, is what timex should continue to do in terms of backwards compatibility. Of course, there is nothing stopping a separate library from...
For reference, after Erlang/OTP 20 is out, I will send a proposal to OTP and the community to unify how documentation is shared across BEAM languages. The goal is to...
> I'm also still pretty keen on markdown for docs in block comments but I think we'll need some sort of annotations in them to make them really useful. FWIW,...
Pry is most likely starting a separate process and that is causing excessive copying? Does the issue happen if you spawn a task and then access the meeseeks document inside?...
Yes, you are correct. Here is a simple test I wrote: ```elixir IO.inspect :erlang.memory() data = List.duplicate('a', 1_000_000) IO.inspect :erlang.memory() list = List.duplicate(data, 100) Task.await(Task.async fn -> List.flatten(list) IO.inspect :erlang.memory...
What is your Windows, Elixir and Erlang versions? I am confident Poolboy works on Windows, so we need to identify what is missing in your setup. On Wednesday, September 14,...