lud
Hello,
I just extracted the boilerplate management code that I used to work with in previous years:
It is yet another generic input downloader (with cache), solution module generator, test generator, and commands to work with any year/day combination, promoting TDD practices.
If you have your own boilerplate or helper code, post it below, people may be interested.
Happy coding!
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
The obligatory hello world thread!
Who are you and where are you from? :stuck_out_tongue:
New
@chrismccord : I just saw the Extract AGENTS.md from Phoenix.new into phx.new generator commit to the phoenix project.
My initial shotgu...
New
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog
It says that Fly is going all-in on sprites, which is a worry ...
New
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
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
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Chat & Discussions>Discussions
Latest on Elixir Forum
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
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 10 of 13 Posts
lud
If found this one too that looks pretty nice:
https://github.com/mhanberg/advent-of-code-elixir-starter
Aetherus
I just use
kino_aocin my livebook.Here’s the link: GitHub - ljgago/kino_aoc: A helper for Advent of Code (a smart cell) for Elixir Livebook · GitHub
stevensonmt
I decided to roll my own AoC framework/helper this year but started a day too late. I’m still trying to polish it up but pleased with it so far. I’ll try to remember to post it here once it’s done. I’m curious about how people feel about configuration for this sort of tool. I’m setting it up for myself so it’s getting the session cookie from a hard coded ENV variable and the default paths are non-configurable (though passing non-default paths is available at runtime). Is this how most people do it or would it be better to have config options setup for everything?
lud
Well a variable or two for path prefixes with sane defaults are not hard to setup.
But few people will use our tools, maybe nobody will ; there is no need for fully configurable stuff here, it’s not like a genral purpose application framework.
I do some of the days in Rust and I use a boilerplate, I don’t really care where the files are, I just do what the README tells me because I just want to solve the problems. The “app” does not need to be deployed somewhere, it just needs to compile and be called from the console.
lud
Hello everyone,
I’ve added more helpers and documentation for my Advent Of Code library.
It’s still just a bunch of helpers to ease fetching and caching inputs, and generate boilerplate code and tests.
But I also updated the README file to be a comprehensive guide on how to use it and solve your first AoC puzzle. This is intended for Elixir beginners and/or AoC beginners.
For more seasoned alchemist elves, I still think the library adds value (I made it for myself after all). There is a TL;DR section in the README and a documentation for all the available commands.
Tell me if you find that useful, and if you have any idea to improve it!
adamu
Personally I go with a script I just copy/paste each time. Works with no dependencies and hopefully will continue to do so for many years!
https://git.adamu.jp/adam/AdventOfCode/src/branch/main/dayN.exs
ken-kost
Trying out your library for this year.
So far enjoy it. 
lud
Nice! Thank you. Good luck for the challenges
ken-kost
One suggestion:
trim: trueinInput.stream/2should be default. wdyt?edit: Also question, how to have multiple days in
.aoc.defaults? I made a PR for each day and now I’m merging day 2 but the files conflict, how do I resolve this? Maybe I should just git ignore it.lud
I am not sure trimming would be the default. The
Inputmodule should be as close as possible toFile.stream!because without this library you can just callFile.stream!on your input path and it should work as normal. There is a lot of puzzles where blank lines and indentation are meaningful, so discarding them by default does not seem a good idea to me.Yeah you should just ignore that file. But I wonder why you use it anyway. I am not sure if the docs are clear enough but the
aoc.setcommand is intended for working on another year, or extending your work on some day when you are not finished in time.If you just remove the defaults file, the commands will pull the input for the current day, and generate the code for the current day as well.