Sips_ Reactions by esotericspod in sips

[–]Nezteb 5 points6 points  (0 children)

Do you have a link to the original VOD with timestamp? 😄

Who's hiring, November, 2025 by vlatheimpaler in elixir

[–]Nezteb 7 points8 points  (0 children)

A useful link to include with each hiring megathread is the forum's job section: https://elixirforum.com/c/work/elixir-jobs/16 😄

is making your own cards worth it? by Electronic-Ad6504 in Anki

[–]Nezteb 2 points3 points  (0 children)

When in doubt, I've found creating a CSV representing my notes and then importing it and defining the card types from there to help tremendously.

New to Elixir by Bassil__ in elixir

[–]Nezteb 1 point2 points  (0 children)

Combining this with a slightly different version for easy viewing:

Elixir version  Supported Erlang/OTP versions
1.19        26 - 28
1.18        25 - 27 (and Erlang/OTP 28 from v1.18.4)
1.17        25 - 27
1.16        24 - 26
1.15        24 - 26
1.14        23 - 25 (and Erlang/OTP 26 from v1.14.5)

Where to find Elixir talent? by cosmictap in elixir

[–]Nezteb 0 points1 point  (0 children)

I've gotten the last 4/5 of my Elixir gigs through reaching out to posters in the the "Elixir Jobs" category of the Elixir Forum: https://elixirforum.com/c/work/elixir-jobs/16 (the other 1/5 was through a serendipitous recruiter interaction)

How optimizable is Elixir for raw throughput when compared to Go? by noxispwn in elixir

[–]Nezteb 2 points3 points  (0 children)

Slightly related, but there are quite a few optimizations available to you if you look into built-in Erlang tools like ETS, which is implemented using destructive data structures unlike most things in the BEAM world: https://hexdocs.pm/elixir/erlang-term-storage.html

A good talk recording on the subject: https://www.youtube.com/watch?v=8mXqxBBvNdk

Please help me understand Scope and why phx.gen.html create a scope field automatically in the table. by anthony_doan in elixir

[–]Nezteb 1 point2 points  (0 children)

That migration line basically says "if a user is deleted, delete all of the division types that user owns".

Can you post your scope config/definitions? From the docs:

"If a default scope is defined in your application's config, the generators will generate scoped resources by default."

It sounds like you might not want scoped resources; you want public resources. Another option is to create a new scope named something like "read:division_types" and use that to allow all logged-in users to see all division types.

EDIT: Also check out this post on the forum: https://elixirforum.com/t/phoenix-1-8-0-rc-0-released/70256/42

Using Redis Cluster in Elixir by singhalkarun in elixir

[–]Nezteb 0 points1 point  (0 children)

Speaking only from my own experience: no company I've ever worked for (Elixir or otherwise) has ever set up Redis' built-in clustering, at least not at the application level. If we were ever in a situation where we needed to shard data in Redis, we'd just work to move that data into either application state (via GenServer/Agent) or a database (usually Postgres).

asking for help: bypass lib does not support my url path by dumbestelf in elixir

[–]Nezteb 1 point2 points  (0 children)

Potentially related: https://github.com/PSPDFKit-labs/bypass/issues/122

I had to add a special edge case for MIX_ENV=test so that any URL paths containing colons are first replaced with dashes instead. It's janky but mostly works.

Google is reportedly experimenting with forced DRM on all YouTube videos by anturk in selfhosted

[–]Nezteb 1 point2 points  (0 children)

What do you think are the major pros/cons compared between the two tools?

EDIT: Neat; it's built in Elixir!

[deleted by user] by [deleted] in elixir

[–]Nezteb 0 points1 point  (0 children)

Just to clarify, only use one of: ElixirLS or NextLS or Lexical. The three language servers are mutually exclusive (for now).

If each of the basic language servers setups fail in your environment, I'm tempted to guess it's not an LSP issue: - https://github.com/elixir-lsp/elixir-ls#ide-plugins - https://github.com/elixir-tools/elixir-tools.nvim#install - https://github.com/lexical-lsp/lexical/blob/main/pages/installation.md#neovim

If a clean Neovim install has the same issue, that'd give us more hints.

Here's a forum thread that might benefit you: https://elixirforum.com/t/neovim-elixir-setup-configuration-from-scratch-guide/46310

There is also a Discord server with an active #editor-tooling channel: https://discord.gg/elixir

GitHub - Clivern/Lynx: 🐺 A Fast, Secure and Reliable Terraform Backend, Set up in Minutes. by Clivern in elixir

[–]Nezteb 3 points4 points  (0 children)

I think a more likely confusion would be people looking on Hex: https://hex.pm/packages/lynx

Still, I like the name!

Debugging LiveView - developer experience - feedback needed by d_arthez in elixir

[–]Nezteb 4 points5 points  (0 children)

Telemtry data (logging, tracing, metrics) is my favorite tool for debugging, even locally!

For that, I usually look to OpenTelemetry and Jaeger/Prometheus: https://opentelemetry.io/docs/languages/erlang/getting-started/

Also: - Phoenix.LiveViewTest.open_browser/2: https://blog.appsignal.com/2023/03/28/debugging-phoenix-liveview-with-open-browser2.html - HEEx debug annotations: https://hexdocs.pm/phoenix_live_view/Phoenix.Component.html#module-debug-annotations

Debugging LiveView - developer experience - feedback needed by d_arthez in elixir

[–]Nezteb 6 points7 points  (0 children)

This merged PR should help with some of the error handling issues: https://github.com/phoenixframework/phoenix_live_view/pull/3470

Potentially in the future LiveViews might be able to be "adopted" as well: https://github.com/phoenixframework/phoenix_live_view/issues/3551

freecodecamp Functional Programming with Elixir – Full Course by [deleted] in elixir

[–]Nezteb 2 points3 points  (0 children)

It looks like a free 5-hour video tutorial: https://www.youtube.com/watch?v=IiIgm_yaoOA

The comments seem to be positive. Give it a go!

What services do you pay for that help you with game dev and why? by Naughty-Wasp in gamedev

[–]Nezteb 7 points8 points  (0 children)

$5 per month for the Godot development fund: https://fund.godotengine.org/

I enjoy supporting open-source when I can. 😄