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
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,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
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
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #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
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










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.