© 2022 Hashnode
#elixir
What is Phoenix framework ? Is this a new meta framework line Nextjs or Remix.run (https://remix.run/) ? Answer is No. Phoenix is similar to Ruby on Rails, but has been built on top of elixir programm…
Many early client-server systems were stateful. Servers kept working state in memory. They passed messages back and forth with their clients over persistent connections. Think of a banking system with…
This blog is about adding a Toaster message in the Phoenix LiveView application. We are going to implement this with a combination of Elixir and Javascript. Before, starting to build a toaster let's f…
A good user experience happens when an application is easy to use and with intuitive UI feedback. Nav menu bar is one the most important element in web applications, it helps users to navigate to diff…
In my previous blog, I explained how to query Graphql API using Neuron. Throughout the blog, I explained the working of Neuron on page 0. Whereas, there will be scenarios where users can have multiple…
Last time we saw how to send our metrics to Prometheus. This time, we'll send them to a StatsD server. What's StatsD? StatsD is a network daemon that listens for statistics, like counters and timers, …
If you're looking to learn a new programming language, we recommend checking out Elixir. Elixir is a process-oriented, functional programming language that runs on the Erlang virtual machine (BEAM). T…
Process create a file named hollow_diamond.ex write the code pyramid = fn number -> for i <- 1..number do # for printing spaces spaces = for j when j <= number - i <- 1..number do …
Recently while creating my personal portfolio website abulasar.dev, I added a blog page. For that, I had fetched hashnode blogs on the page. Hashnode has exposed its blog through API. You can visit ap…
We've all been there. We set out to complete one task and find ourselves working on something completely unrelated and unexpected a short while later. I'm also keen on learning something new every d…