reid-rigo
Hello, I’m new to Elixir and created this package, which is the adaptation of some Ruby code I wrote, as a learning exercise: codeowners | Hex
I’m looking for feedback on:
- How to make this code more idiomatic
- More appropriate functions/modules to use
- Best practices for libraries
Feedback is welcome here or in Github
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
RudManusachi
Hi, @reid-rigo
and welcome!
I’d point you to this style guide: GitHub - christopheradams/elixir_style_guide: A community driven style guide for Elixir · GitHub
It might look weird at first (becuase of double underscores and all caps) but it’s very common to refer to the module itself.
al2o3cr
Some thoughts, in no particular order:
rule_for_pathcould be slightly more efficient if theEnum.reversewas moved intobuildto avoid doing the same computation more than oncethe typespec for
Codeowners.Ruleis not satisfied by the default values in thedefstruct.rule_for_pathcan return a struct containing unexpected types in the “no rule matched” case.the use of
File.cwd!inbuildis odd; consider allowing callers to either supply a root directly or as an override. To reduce the need for most callers to pass a root,loadcould do some guessing based on if the supplied file is in adocor.githubdirectory.reid-rigo
I’m not seeing the full benefits of
__MODULE__. It appears to help for future refactoring, but what about all of the references in docs?reid-rigo
I’m really torn on this one. Reversing appears to take a few microseconds, and so for a CODEOWNERS file of significant size, it looks like most of the rule searching time will be spent in
Regex.match?Will ppl be surprised to load their CODEOWNERS and then see all of their rules in reverse order? I could reverse the list again for inspect purposes, but that feels like shenanigans.
Thank you, fixed.
The
!definitely feels gross, though an exception appears to be a truly rare circumstance. I like your idea of doing some ‘guessing’ - Github specifies 3 possible locations for the file so it wouldn’t be hard to figure out which one was used and derive root from that.Edit: Because
Path.expandusesFile.cwd!, I’m not sure there’s anything to be gained here. People should be able to callCodeowners.load(".github/CODEOWNERS")dimitarvp
What problems does using
__MODULE__introduce for you in docs?reid-rigo
Based on a suggestion in another thread I tried
#{__MODULE__}, but that outputsElixir.Codeownerswhen I run mix docs.sodapopcan
For me it’s not about refactoring—a global rename is a global rename—it’s about ease of reading. When I see
If it weren’t for the few legitimate uses cases it has, I wouldn’t be upset if the
__MODULE__I immediately think “local.” Seeing a fully-qualified self-referencing module name always causes a bit of a jarring pause where I have to go and confirm that it is indeed referencing itself. This is indeed on the minor end of readability issues and is not a hill I’d die on. I do, however, vehemently disagree with the advice in that guide to use an alias if you want “a prettier name”:asoption foraliaswere removed from the language.RudManusachi
One of the point you were asking:
So I just pointed to what seemed more idiomatic to me
So it does with any module name, such as:
#{Logger}would print"Elixir.Logger". If you want to nicely disregard the prefixElixir.you couldinspect/1it:See example: elixir/lib/elixir/lib/kernel/utils.ex at c5816a227f5ad295ccbfcc5571308f76190d6bfe · elixir-lang/elixir · GitHub
reid-rigo
Thanks for helping me work through the
__MODULE__stuff. Updated in this commit.reid-rigo
I made a change to accept root as an option in this commit