Latest #iex Threads 
How is the proper way to get information about the running app from iex?
Should I trust Mix.Project info? is it always relliable or is t...
New
Recently, I’ve been working with Nx/Axon. Training a model can take quite a long time, so I often return to the same IEx session later.
...
New
Recently I noticed that when I save a source file from my editor while having an IEx session running, the latter automatically recompiles...
New
Is there any way to avoid the Hologram compiler running when using iex? It seems like the front-end code could potentially be disregarded...
New
Hello,
Im using IEx with MacOS. I can type a module name and press [TAB] key to get an autocompletion list like follows. Is there any wa...
New
Hello,
So I have learnt a new thing recently, processes spawned in an IEx shell are not terminated after IEx exists, not even if they we...
New
Hello – Elixir newbee here.
Today I’ve learned about the user-switch-command (IEx — IEx v1.18.4), and doing an s iex fails with an error...
New
I’m using Elixir on Arch Linux, and a recent update destroyed the capability of iex to retrieve earlier lines using the up arrow or the a...
New
I just came across: GitHub - a3lem/replink: A handy CLI for executing code in a REPL in a separate pane and thought it would be cool if w...
New
I am currently enrolled in the Pragmatic Studio Elixir & OTP course and have just completed the section on module attributes. I have ...
New
This Week's Trending
This Month's Trending
How is the proper way to get information about the running app from iex?
Should I trust Mix.Project info? is it always relliable or is t...
New
This Year's Trending
On my development VM (specs see below) - starting an elixir / erlang container takes up 2G of physical memory while running iex locally o...
New
How could I send an EOF/EOT inside an input in iex?
Say inside
iex> IO.read :all
Usually we do it by pressing ctrl+D on other shell...
New
Hello,
So I have learnt a new thing recently, processes spawned in an IEx shell are not terminated after IEx exists, not even if they we...
New
Recently I noticed that when I save a source file from my editor while having an IEx session running, the latter automatically recompiles...
New
Hello,
Im using IEx with MacOS. I can type a module name and press [TAB] key to get an autocompletion list like follows. Is there any wa...
New
Recently, I’ve been working with Nx/Axon. Training a model can take quite a long time, so I often return to the same IEx session later.
...
New
Is there any way to avoid the Hologram compiler running when using iex? It seems like the front-end code could potentially be disregarded...
New
Hello – Elixir newbee here.
Today I’ve learned about the user-switch-command (IEx — IEx v1.18.4), and doing an s iex fails with an error...
New
Last Three Year's Trending
What is the proper way to load a module from a file in to IEX?
In the python world, doing something like this pretty standard:
from ....
New
We have an elixir app running in prod. I can SSH onto this box, but is it possible to connect to the app with an iex session? When I r...
New
Is there a known issue with :observer with Elixir 1.15 that I’m unaware of? I’ve added :observer to :extra_applications but it gives this...
New
Hey guys,
I just installed Elixir 1.10 on my Arch Linux and I am starting to learn this nice language.
I am experiencing some problems ...
New
Iex not working in windows terminal,when i typed iex only a blank space appeared,i have correctly added the environmental variables.That ...
New
I’d like to add some custom helper functions to iex. I use .iex.exs and can define a module there with my custom functions. But I can’t...
New
Hey everybody,
I get a response from a (pretty funky) API, and am trying to decode it with HTTPoison.
It fails with something like this...
New
Hello,
I am trying to pry some code and the request continues without entering pry(1)> prompt. I use require IEx; IEx.pry or dbg with...
New
For anyone who’s worked on a terminal interface in Elixir, you may be excited to know that raw mode is coming to OTP 28: Implement lazy-r...
New
Gigalixir lets us start a remote shell, similar to iex --remsh. The command is:
gigalixir ps:remote_console -a my-app
Does anyone know ...
New
I’m writing a small CLI application using Burrito. Per its README, I set up an application with a mod entrypoint in mix.exs; the module l...
New
Is there a way to make an equivalent for .iex.exs for releases, where a handful of modules are aliased or imported that are useful for th...
New
Hello,
I am going through the Phoenix tutorial. I am currently looking at controllers and trying to open a REPL session like I would wit...
New
Hello my fellow elixir enthusiasts!
I want to start iex in a port then shut it down and I want to do so gracefully. Here is my attempt w...
New
How do I configure IEx colorization, complete with syntax coloring, as shown in the examples in the Elixir Guides (Introduction — Elixir ...
New
Trending Over Three Years
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
When I run the Plug and I recompile I wind up having to use Ctrl C to quit iex and start again. Witht the help of rlwrap I can use the cu...
New
Background
I have an application :myapp and I am trying to add some web functionality to it from zero using Plug. However, even though I ...
New
Can anyone provide please an example how to add, lets say purple color, to console logger backend? I tried to redo the same what I've fou...
New
Hello everybody,
Hope everyone is good!
TL;DR: I’m running a Phoenix app as a release where I didn’t defined anything about node config...
New
What is the indication of async-threads when starting iex?
I couldn’t found anything on the web. I have 8 cores on my machine
and when ...
New
Hi, I have been experiencing some problems using on Windows regarding iex output coloring.
Since I’ve been using CMDER as my main consol...
New
iex> 75000 / 12.5
6.0e3
iex(14)> 75000 / 12.5 |> Float.to_string
"6.0e3"
It is kind of weird that Elixir...
New
I'm on Windows 10 and Elixir development is alright on Windows, but I miss only one thing. When I type a module name on Ubuntu or Mac and...
New
In Elixir we are continuously trying to improve the experience for developers learning the language. However, there are still common road...
New
Hi everybody,
I wanted to know if it’s possible to configure the cwd (current working directory) path of the mix.exs file (which is the ...
New
I have a piece of code that gets executed on successful user signin, and everything seems to work fine, except that one of my assigned va...
New
Is there a way to stop the iex truncating long outputs?
I’m wanting to print about 200 lines of a list but it’s only printing about 50 l...
New
Hi
I wrote a app for my backend and run in bare-metal .
How config to use iex ( shell ) with my app ??
I want use it for add/remove ...
New
I just noticed this in Iex:
iex(1)> [1,2,3,4,5,6,7,8,9,10]
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
iex(2)> [7,8,9]
'\a\b\t'
iex(3)> [7]...
New
Latest on Elixir Forum
Get money off!
The Pragmatic Bookshelf
35% off any eBook
Manning Publications
45% off any item
ElixirCasts
10% off for life
The Pragmatic Studio
20% off any course
AppSignal
10% off for 12 months
Honeybadger
10% off for 12 months
Simply use coupon code "devtalk.com" or "elixirforum" at checkout!
Filter by Type:
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #exunit
- #elixirconf
- #discussion
- #javascript
- #podcasts
- #code-sync
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #api
- #processes
- #forms
- #metaprogramming
- #security
- #performance
- #hex







