My journey through my second elixir, phoenix app, job hunt, simple CRUD based tool to help aid hunting down jobs or tracking anything you fancy in a stateful, timeline manner

This page summarizes the projects mentioned and recommended in the original post on /r/elixir

InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • clean-webpack-plugin

    A webpack plugin to remove your build folder(s) before building

  • InfluxDB

    Purpose built for real-time analytics at any scale. InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.

    InfluxDB logo
  • Plausible Analytics

    Simple, open source, lightweight (< 1 KB) and privacy-friendly web analytics alternative to Google Analytics.

    defmodule ExWeb.Plugs.ClientIp do require Logger behaviour Plug def init(opts), do: opts def call(conn, _opts) do Logger.metadata(client_ip: get_ip(conn)) conn end # This code is from Plausible Analytics https://github.com/plausible/analytics/blob/3a1c9e67cd67d5cb1fec68a4dee34f8cd0e056fd/lib/plausible\_web/remote\_ip.ex def get_ip(conn) do forwarded_for = List.first(Plug.Conn.get_req_header(conn, "x-forwarded-for")) if forwarded_for do String.split(forwarded_for, ",") |> Enum.map(&String.trim/1) |> List.first() else to_string(:inet_parse.ntoa(conn.remote_ip)) end end end ```

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Austrian DSB: EU-US Data Transfers to Google Analytics Illegal

    2 projects | news.ycombinator.com | 13 Jan 2022
  • I built a new platform, using NextJS, for creating a blog &amp; newsletter (and earning money from your readers). I focused on speed, simplicity, privacy, and beautiful design. I'd love to get some early feedback!

    2 projects | /r/nextjs | 23 Oct 2021
  • I Wrote an Open Source Analytics Platform in full Javascript in less than 30 Days.

    5 projects | /r/javascript | 19 Apr 2021
  • Plausible's "No need for cookie banners" might be incorrect

    1 project | news.ycombinator.com | 20 Aug 2024
  • There's an AI – No Junk, Just Gems

    2 projects | news.ycombinator.com | 17 Aug 2024

Did you konow that Elixir is
the 22nd most popular programming language
based on number of metions?