# Basic Unit Testing In Elixir
One thing that every programmer must do is test their code. Many languages have ways of testing them, some hard to use some easy to use.
One thing that every programmer must do is test their code. Many languages have ways of testing them, some hard to use some easy to use.
On the 21st of November I performed my first talk at a local Elixir meetup. In front of 15 entire people I gave a 14 minute talk on turning a REST endpoint into a GraphQL one.
I currently work on an Elixir/Phoenix API that talks directly to a React frontend. In needing to encode some ecto structs into JSON and pass them to be stored in a JSONB column in Postgres.
Testing Testing testing testing, it’s one of those things that as a graduate you don’t put a tonne of thought into. You’ve had lectures and senior developers tell you it’s important but do you listen?
Ecto has a neat way to create database tables, there called migrations. Migrations simply give the database adapter a schema to follow.
I have been extremely lucky, my first job has been using the bleeding edge in technologies. When I was out looking for a job I just wanted anything and technically I worked part-time at other places…
I’ll preface this by saying no I didn’t actually have a PR merged, yet I still had a great experience nonetheless. I was working on a many_to_many relationship for work, one where if you had an empty…
Elixir does a great job when coupled with phoenix to give you a seamless setup when connecting to Postgres, but how does it actually work? What if I want to connect to a different type of database,…