Srijan Choudhary's Articles and Notes Feed for tag: erlang
Also available as an RSS feed here.
Quick note for me to generate #Emacs TAGS file for an #Erlang project:
find {src,apps,_build/default,$(dirname $(which erl))/../lib} -name "*.[he]rl" | xargs realpath --relative-to="$(pwd)" | etags.emacs -o TAGS -
The relative path ensures that this works over tramp as well.
25 Apr 2021
Erlang: Dialyzer HTML Reports using rebar3
How I made a custom rebar3 plugin to generate HTML reports for dialyzer warnings

28 Mar 2021
Erlang: find cross-app calls using xref
Using xref magic to query compiled beam files and find cross-application function calls in Erlang

15 Apr 2016
Clean boot in erlang relx release
Booting Erlang release in clean or safe mode
3 Aug 2013
Basic Implementation of A* in Erlang
Implementing the path finding algorithm A* in Erlang
20 Feb 2013