AstonJ
Most Liked
Qqwy
TypeCheck Core Team
Zen Coding/Emmet. Plugins that add its features exist for many text editors and IDEs.
The idea is simple: You write a very short CSS-path-like statement, and then press Tab (or whatever makes sense for the editor you’re using) to have it expand to a full HTML tree. It feels really nice to just type table.mytable>thead+(th*4)>tbody>tr>(td*4) and have it expand to
<table class="mytable">
<thead></thead>
<th></th>
<th></th>
<th></th>
<th></th>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
Or, if you are using HAML
%table.mytable
%thead
%th
%th
%th
%th
%tbody
%tr
%td
%td
%td
%td
et cetera!
This has saved so much time
.
3
KronicDeth
IdeaVIM for the JetBrains IDEs.
2
sotojuan
I usually use Sublime, but I use Atom for Elixir. The atom-elixir plugin is very good!
1
Popular in Dev Env & Tools
These past few days, I’ve tried switching from Neovim to Helix, and so far the experience has been great. Compared to neovim, which requi...
New
I was about to reply to Why doesn’t Phoenix use Conventional Commit prefixes? - #41 by sodapopcan with some git aliases that I use for th...
New
Code agents work best in Elixir because it’s a functional language with minimal implicit configurations and conventions.
The code you se...
New
Hey folks,
I have been looking for an alternative to good old VsCode for a while. Have tried some vim and emacs editors with their plugi...
New
Hello everyone, today I created a simple Neovim plugin to check for new versions of packages used in the project, not sure if it is usefu...
New
Welcome to our thread for Windows users :smiley:
Mac users please use this thread
Linux users please use this thread
For those who dis...
New
I shared an Elixir Architect skill for Claude Code which proves that
Elixir is the best LLM friendly language (@josevalim )
https://git...
New
Has anyone managed to get Codex (the cloud version, as seen here) to work for Elixir?
I tried to setup the dependencies but mix deps.get...
New
Just noticed mine has gotten quite unwieldy and should probably be split into multiple files - but curious how big everyone else’s is!
(...
New
I am author of SpaceVim, As you know SpaceVim is a vim config which provide layer feature.
I want to improve the elixir layer in Space...
New
Other popular topics
How to set Jason to encode all fields in ecto schema, I don’t care about security and implementing only is taking long list of attributes...
New
As a follow up to my earlier question:
I have the code compiling and running but not getting a successful login from the rest server. ...
New
As many of you may have realized by now (sorry for all the posts here) I’ve been working on a db problem where I’m trying to aggregate a ...
New
I wanted to check elixir version in phoenix because i found that my elixir is 1.5 but when i use Enum.chunk_by it said the function is un...
New
If I have a string “1000 cfu/ml” . I want to remove the characters and / and space . So the string is like this
"1000"
What is the ...
New
Could someone help me? I'm making my first elixir program, number guessing game. I can't figure out how to convert the user's guess from ...
New
After calling mix ecto.create I get this error:
17:00:32.162 [error] GenServer #PID<0.412.0> terminating
** (Postgrex.Error) FATAL...
New
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
Hi everyone,
One of the features added to Elixir early on to help integration with Erlang code was the idea of overridable function defi...
New
Hi everyone!
I need implement if…else if…else condition from my elixir code, and anymore of this control flow structures not work proper...
New








