Kevin Schweikert

Results 11 comments of Kevin Schweikert

@warpdesign you can use `open foo.png | into binary | first 100` 😉

Awesome! Wasn't sure if this is an `rtx` or `asdf plugin` issue. Thanks for the quick response and solution! I opened an issue in the elxir plugin repo: https://github.com/asdf-vm/asdf-elixir/issues/129

Just to add some information. The Elixir Server now fails with: ``` Language server error: Elixir error deserializing latest release ```

I finally fixed it for me by switching back from `rtx` to `asdf`!

Pretty up to date ```shell $ asdf current elixir 1.15.6-otp-26 erlang 26.1 ```

Just wanted to add that I have the same problems with a german keymap (`Option-n`)

Yes, this is the code we're using: ```elixir Instructor.chat_completion( model: "gpt-4-vision-preview", response_model: __MODULE__, max_tokens: 800, max_retries: 3, mode: :md_json, messages: [ %{ role: "user", content: [ %{type: "text", text: data.image_to_text_prompt},...

Awesome idea! I will bring back the `ffmpeg` implementation when `xav` is not available. Thanks for the feedback and suggestions!

```elixir defmodule MyApp.Notifier do import Swoosh.Email require EEx def welcome(assigns) do mjml = """ Hello , Welcome! """ {:ok, html} = EEx.eval_string(mjml, assigns: assigns) |> Mjml.to_html() new() |> to({assigns.first_name "...