SunPoke04
So, I’ve just ended the “basics” in Elixir and I’d like to test myself, or something like that, with some basic project, so that I know that I can continue. Does anyone have any project ideas?
PS: Please nothing to do with web, it’s just not my cup of tea and not my area of “enjoyment”.
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
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
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 have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
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
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
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
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
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #elixirconf-us
- #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)
Sebb
You should choose something that you have fun doing, best thing would be that you can use it.
The project does not have to be too simple, you do not build the foundation of an empire, code that last for decades. So just make errors and stupid things.
Whats really fun and useful is something embedded:
Don’t be afraid, nerves makes that really easy.
IloSophiep
Not sure if that’s what you’re looking for, but currently there is the Advent of Code where you have to solve small riddles daily. They are quite a fun way to test your brain and your Elixir knowledge without many “dependencies”.
(You can also work through them not daily and can also do past years.)
derek-zhou
For the first project in a new language, I will port some of my old ones. So you don’t need to worry about domain knowledge and can focus on the implementation techniques.
Sebb
Good advice. But beware: I did that with some python code that’s in production and has to stay there. And now I can’t stand working on the original, because the Elixir version is so much better.
derek-zhou
Yeah. On the bright side, you may uncover some obscure bug in the original implementation by doing it in a very different language. I know I did.
SunPoke04
I really don’t have all those needed things in this book. It’s way too much my budget for a “simple”(because it’s not simple) project.
SunPoke04
I’ve already tried Advent of Code, but it’s also too hard. I could only do questions 1 and 2.
SunPoke04
What do you mean by “port”? I dunno the language and the words used here.
derek-zhou
I mean to rewrite some programs you have written in other languages. If you don’t have any then you can discard this advice.
krstfk
I’m guessing that by port they mean, recreate a project you did in a familiar language.
A project that is fun and not that hard would be to send/print messages around in an Erlang cluster.
Also, decoding mp3 headers is very nifty (checkout joe Armstrong’s book). It sounds dorky but it’s basically applicable to any binary format.
Anything embedded is fun if you have a raspberry pi lying around with a couple of sensors (you can use the excellent book about the weather station even without the exact components they advise).
Apart from that there are quite a few great books that could inspire you such as “Elixir in action”, “real time phoenix” (a bit webby, but great), “genetic algorithms in elixir “ and many more. Erlang books (eg “designing for scalability with Erlang and otp”, and of course “Programming Erlang”) are great resources for inspiration.
Chris McCords book about macros is also filled with fun stuff.