Advertisement · 728 × 90
#
Hashtag
#ElixIR
Advertisement · 728 × 90

New website using Phoenix LiveViews is almost done. Going live by Friday. Hitting 2 birds with 1 stone. Getting a new website AND an authorization system with this work. All the stuff I thought that would be hard was easy. But the reverse is also true too.

#elixir #programming #gamedev #postgres

3 1 0 0
Preview
Perl Weekly Challenge: Conflicting Every Odd | Packy’s Place

Perl Weekly Challenge 367's tasks are "Max Odd Binary" and "Conflict Events". Since my wife won't let me forget I'm part of "the Phil Collins set"1, let's lean into it and say this week's musical theme is Against All Odds.

#PerlWeeklyChallenge #raku #perl #python #elixir

0 0 0 0
Post image Post image Post image Post image

Thank you to everyone who joined us for Braga BEAM #8 last week! 🚀

Great turnout, great talk. It was great hearing António Silva walk through how Remote built MCP servers in Phoenix.

Thanks to the Marmela team for organizing, and everyone who showed up.

Until next time 👋
#BragaBEAM #Elixir

0 0 0 0

What triggers you to extract something into a reusable component?
1️⃣ When I use it more than twice
2️⃣ Parent component got too big
3️⃣ When I need it in 2nd project
4️⃣ I don't have a clear rule

#elixir #liveview #elixirconfeu #phoenix #elixirlang #myelixirstatus

0 0 0 0
More stylised blue lines with white glowing orb spheres over a flowing digital background. 

Blog #0193: Learning and Dreaming
Part 4 of 4. Cross-entropy loss, Adam optimizer, the training loop, and autoregressive sampling. The GPT learns and generates.

More stylised blue lines with white glowing orb spheres over a flowing digital background. Blog #0193: Learning and Dreaming Part 4 of 4. Cross-entropy loss, Adam optimizer, the training loop, and autoregressive sampling. The GPT learns and generates.

Blog #0193: Learning and Dreaming
Part 4 of 4. Cross-entropy loss, Adam optimiser, the training loop, and autoregressive sampling. The GPT learns and generates.

matthewsinclair.com/blog/0193-le...

#blog #braingasm #ai #gpt #elixir #fromscratch

3 3 0 0
Blue, purple, and green stylised swirls on a dark background.

Blog #0192: How Tokens Talk to Each Other
Self-attention, multi-head projections, and KV caching — the core of the transformer

Blue, purple, and green stylised swirls on a dark background. Blog #0192: How Tokens Talk to Each Other Self-attention, multi-head projections, and KV caching — the core of the transformer

Blog #0192: How Tokens Talk to Each Other
Part 3 of 4. Self-attention, multi-head projections, and KV caching — the core of the transformer

matthewsinclair.com/blog/0192-ho...

#blog #braingasm #ai #gpt #elixir #fromscratch

2 3 0 0
Matrix-inspired green hieroglyphs on a dark background.

Blog #0191: From Letters to Logits
Part 2 of 4. Character-level tokenization, linear algebra, softmax, and the complete GPT architecture — all in pure Elixir.

Matrix-inspired green hieroglyphs on a dark background. Blog #0191: From Letters to Logits Part 2 of 4. Character-level tokenization, linear algebra, softmax, and the complete GPT architecture — all in pure Elixir.

Blog #0191: From Letters to Logits
Part 2 of 4. Character-level tokenization, linear algebra, softmax, and the complete GPT architecture — all in pure Elixir.

matthewsinclair.com/blog/0191-fr...

#blog #braingasm #ai #gpt #elixir #fromscratch

2 3 0 0
Stylised graph of blue connected nodes and lines on a dark background.

Blog #0190: What If Numbers Could Remember? Part 1 of a 4-part series on building a GPT from scratch in Elixir. Autograd, computation graphs, and making numbers remember.

Stylised graph of blue connected nodes and lines on a dark background. Blog #0190: What If Numbers Could Remember? Part 1 of a 4-part series on building a GPT from scratch in Elixir. Autograd, computation graphs, and making numbers remember.

Blog #0190: What If Numbers Could Remember?
Part 1 of a 4-part series on building a GPT from scratch in Elixir. Autograd, computation graphs, and making numbers remember.

matthewsinclair.com/blog/0190-wh...

#blog #braingasm #ai #gpt #elixir #fromscratch

2 3 0 0
Stylised purple streaks on a dark digital background.

QFM106: Elixir Reading List - March 2026

Stylised purple streaks on a dark digital background. QFM106: Elixir Reading List - March 2026

QFM106: Elixir Reading List - March 2026
quantumfaxmachine.com/blog/elixir/...

#qfm #blog #quantumfaxmachine #readinglist #elixir #software #beam

2 2 0 0
Preview
Discord Engineers Add Distributed Tracing to Elixir's Actor Model Without Performance Penalty Discord engineering detailed how they added distributed tracing to Elixir's actor model. Their custom Transport library wraps messages with trace context and uses dynamic sampling to handle million-us...

Discord shared how they added distributed tracing to their Elixir infrastructure at scale. The challenge: Elixir's actor model lacks a built-in metadata layer for trace context, such as HTTP headers. #elixir #distributedsystems #observability #opentelemetry #discord www.infoq.com/news/2026/03...

3 1 0 0

Getting comfortable with Phoenix LiveView! I'm enjoying it. Definitely a new side of Elixir for me. I am not a huge fan of the directory structure of a project but its not a huge deal. I'd rather it be opinionated.

#elixir #programming #webdev

2 0 1 0
A photo of a laptop screen showing a code editor with the contents of a CHANGELOG.md.

Contents shown as follows:

### Added

- `Atex.Crypto` module for performing AT Protocol-related cryptographic operations.
- `Atex.PLC` module for interacting with a did:plc directory API.
- `Atex.ServiceAuth` module for validating inter-service authentication tokens.
- Various improvements to `Atex.Did.Document`
  - Add `Atex.DID.Document.Service` and `Atex.DID.Document.VerificationMethod` sub-structs.
  - Add `to_json/1` methods and `JSON.Encoder` protocols for easy conversion to camelCase JSON.
- `Atex.XRPC.Router` module with `query/3` and `procedure/3` macros for easily building XRPC server routes inside a `Plug.Router`, with built-in service auth validation and validation if passed the name of a module using `deflexicon`.
- `deflexicon` now emits `content_type/0` functions (on `Input` submodules for typed JSON bodies, otherwise on the root module) for procedures.
- `Atex.XRPC.ServiceAuthClient` module for making requests to other atproto services using a service auth token.

### Fixed

- Fix a problem where generated `%<LexiconId>.Params` structs could not be passed to an XRPC call due to not having the Enumerable protocol implemented.
- Correctly generate `Input`/`Output` submodules with `from_json` methods for queries and procedures that use `ref` or `union` types.

A photo of a laptop screen showing a code editor with the contents of a CHANGELOG.md. Contents shown as follows: ### Added - `Atex.Crypto` module for performing AT Protocol-related cryptographic operations. - `Atex.PLC` module for interacting with a did:plc directory API. - `Atex.ServiceAuth` module for validating inter-service authentication tokens. - Various improvements to `Atex.Did.Document` - Add `Atex.DID.Document.Service` and `Atex.DID.Document.VerificationMethod` sub-structs. - Add `to_json/1` methods and `JSON.Encoder` protocols for easy conversion to camelCase JSON. - `Atex.XRPC.Router` module with `query/3` and `procedure/3` macros for easily building XRPC server routes inside a `Plug.Router`, with built-in service auth validation and validation if passed the name of a module using `deflexicon`. - `deflexicon` now emits `content_type/0` functions (on `Input` submodules for typed JSON bodies, otherwise on the root module) for procedures. - `Atex.XRPC.ServiceAuthClient` module for making requests to other atproto services using a service auth token. ### Fixed - Fix a problem where generated `%<LexiconId>.Params` structs could not be passed to an XRPC call due to not having the Enumerable protocol implemented. - Correctly generate `Input`/`Output` submodules with `from_json` methods for queries and procedures that use `ref` or `union` types.

atex v0.8 is shaping up to be a chonky one 👀

#Elixir #atproto #ATmosphereConf

11 1 0 1
Preview
Tidewave Changed How I Feel About AI-Assisted Coding I've never been a fan of coding with AI, but Tidewave is a game changer.

🚨 New blog post alert: Tidewave Changed How I Feel About AI-Assisted Coding

fabrithedev.com/posts/2026/3...

#elixirlang #elixir #tidewave #phoenix #ai #programming #dev #webdev

15 2 1 0
Hologram gets official VS Code extension

Hologram gets official VS Code extension

Elixir devs who use VS Code - this one's for you! Hologram just got its official VS Code extension! 🧩

Full syntax highlighting for HOLO templates: ~HOLO sigils in .ex files and standalone .holo template files.

More here: hologram.page/blog/hologra...

#Hologram #Elixir #ElixirLang #BEAM #WebDev

9 3 0 0

BBUG #8 is tomorrow 🚀

António Silva from Remote on MCP servers in Phoenix.

Food & drinks at Subvisual, Braga. Free.

Thu Mar 26, 18:00
meetup.com/bragabeam/events/313666565

#BragaBEAM #Elixir

0 1 0 0
Preview
Syncron Launches New Functional Beverages ELIXIR and HYDRATE for Performance Enhancements Syncron introduces two new functional drinks, ELIXIR and HYDRATE, aimed at enhancing energy, hydration, and recovery for athletes and active individuals.

Syncron Launches New Functional Beverages ELIXIR and HYDRATE for Performance Enhancements #USA #Torrance #Syncron #Elixir #Hydrate

0 0 0 0
Preview
Perl Weekly Challenge: The Times They Are A-Countin’ | Packy’s Place

Perl Weekly Challenge 366's tasks are "Count Prefixes" and "Valid Times". When I looked at the second task, and I saw how the times were changin', I needed to listen to some Robert Allen Zimmerman.

#PerlWeeklyChallenge #raku #perl #python #elixir

1 0 0 0
Post image Post image

AshTypescript 0.16.0 is finally out, with a long-awaited feature: Typed Channels 🎉

Clients can now subscribe to any broadcasted changes from your ash resources, with auto-generated and ready to use Typescript ofc 😎

Read more here: hexdocs.pm/ash_typescri...

#Elixir #Ash #AshFramework #Typescript

25 4 0 1
Post image Post image

Product link: afterdarktreasures.com/products/eli...

#AfterDarkTreasures #Elixir #CoolingGel #PersonalCare #SelfCareProducts #WellnessProducts #LifestyleAccessories #SmoothFormula #EverydayEssentials #DiscreetShipping #TrustedBrands #ExploreMore #ComfortDesign #QualityProducts #CareRoutine

2 0 0 0
Yutaka Kikuchi speaking about custom Nerves hardware his team built for power plants in Japan.

Yutaka Kikuchi speaking about custom Nerves hardware his team built for power plants in Japan.

Yutaka Kikuchi, professor at Kochi University of Technology, uses Zenoh to migrate running processes globally-distributed Nerves devices! #Elixir #Nerves #CodeBEAM

9 7 1 0

BBUG #8 is this Thursday.

António Silva (Remote) on MCP servers in Phoenix, the real production version.

Food & drinks at Subvisual, Braga. Free.

Thu Mar 26, doors at 18:00
meetup.com/bragabeam/events/313666565

#BragaBEAM #Elixir

0 0 0 1
Preview
Cooking with functions If you start coding as a kid, you can experience a lot of time where you're wrong about programming because you aren't ready to understand fundamental concepts. Especially if, like me, you learn how t...

Let functions cook: world.hey.com/ricardo.tava...

#javascript #elixir #clojure #fsharp #scala

0 0 0 0

TIEN$ UNE LULU
Reprise de Volée
une deux avec la TOUR #ELIXIR #Paris en face d' #Impulstar
#lucarna pour ceux qui suivent
Le GROS CUL DE ROMI
#JBLACKTYRA
⚽🍑🦖🖤
#€POUVANTE_MILLIARD$10+
#ACTUALITESMILLIARD$

4 0 0 0
Preview
Scout Scout continually tracks down N+1 database queries, sources of memory bloat, performance abnormalities, and more.

The latest update for #ScoutAPM includes "Error #Monitoring for #Elixir: Now in Scout #APM" and "Monitoring Phoenix LiveView Performance With Scout APM".

#devops #observability https://opsmtrs.com/3iSdf3y

2 0 0 0
Preview
Release v0.7.0-alpha.0 · atomvm/AtomVM v0.7.0-alpha.0 release This is an alpha release, the first pre-release on the road to v0.7.0. It represents over two year of development and introduces several groundbreaking features. While we hav...

AtomVM v0.7.0-alpha.0 is out: github.com/atomvm/AtomVM/releases/t...

Biggest release yet: distributed Erlang, JIT, crypto, ETS, big integers, OTP-28/29 support, new chips, and much more.

#AtomVM #Erlang #Elixir #Gleam #LFE #ESP32 #RaspberryPi #STM32

19 5 2 0

🚀 New releases from the Ontogen and RDF on Elixir ecosystem! 🧵

Two new projects and a major update to RDF.ex:

🔹 DCAT-R
🔹 Gno
🔹 RDF.ex 3.0

Many thanks to the NLnet foundation for the continued support! 🙏

ontogen.io/blog/dcat-r-...

#RDF #LinkedData #SemanticWeb #KnowledgeGraph #Elixir

0 0 1 0

TIL that Erlang's `+sbt tnnps` stands for "thread_no_node_processor_spread". It gave us +34% NUTS sampling throughput on a dual-socket Xeon: #elixir #myelixirstatus #erlang #numa
github.com/borodark/eXM...

2 0 0 0
The Ultimate Personal AI Running on Your Own Infrastructure! Meet the Elixir-Powered Autonomous Agent The Ultimate Personal AI Running on Your Own Infrastructure! Meet the Elixir-Powered Autonomous Agent

[JP] 自分のインフラで動く究極の個人用AI!Elixir製自律エージェント「AlexClaw」登場
[EN] The Ultimate Personal AI Running on Your Own Infrastructure! Meet the Elixir-Powered Autonomous Agent

ai-minor.com/blog/en/2026-03-19-17739...

#Elixir #AIエージェント #オープンソース #Tech

1 0 0 0
GitHub - amplifiedai/amplified_pubsub: A protocol-based PubSub abstraction for Phoenix LiveView. A protocol-based PubSub abstraction for Phoenix LiveView. - amplifiedai/amplified_pubsub

This is up on Hex today. One of my colleagues put it together and it's been a real QoL improvement for us. github.com/amplifiedai/... #ElixirLang #Elixir

19 3 1 0