Marcel Lindig's Avatar

Marcel Lindig

@nullpilot.eurosky.social

Software engineer. Elixir/Phoenix, Vue/Nuxt.

65
Followers
169
Following
16
Posts
09.10.2024
Joined
Posts Following

Latest posts by Marcel Lindig @nullpilot.eurosky.social

Simple enough! Did you have to reset your password, as well?

03.03.2026 21:47 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

I will definitely use more of your wonderful color magic! πŸ˜ƒ Poline was fun to work with already, and I am not even using its full potential yet.

25.02.2026 10:07 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Hah yeah, it doesn't have any filter logic yet for this sort of proximity. There is a lot I want to do with it, but when it served my immediate needs I moved on to other projects.

I definitely want to go back and give it a well deserved overhaul.

25.02.2026 08:22 πŸ‘ 3 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0
Tint - Nimble Color Tools

Coolors is great the first time you use it, and then gets more frustrating the more often you return to it. I started building tint.lol last year to scratch my own itch. It uses poline to generate palettes! It's pretty scuffed and needs some love, though..

24.02.2026 20:16 πŸ‘ 14 πŸ” 1 πŸ’¬ 1 πŸ“Œ 0

Leider relatable

10.01.2026 13:31 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

If that doesn't justify a $20 billion invest round, what does!?

08.01.2026 19:58 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

I can't wait for an AI powered revival of Pocket! /s

17.12.2025 01:19 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Preview
a screenshot of a video game that says hey yo just drop in we all hangin out Alt: A clip from the game GTA San Andreas, with three of the characters on bikes, about to head out.
03.12.2025 06:32 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

I assume there are a lot of people who know exactly one package author by name.

03.12.2025 06:22 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Lack of purpose, lacking sense of community, constant mental and emotional overstimulation and an outlet for anger, frustration and blame.

More people every day are exhausted by a complex, abstract and impersonal world with endless nuance and a barrage of information one can do little about.

19.09.2025 12:26 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

There are at least 12 of us!

13.08.2025 21:24 πŸ‘ 2 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

ΰ² _ΰ² 

07.08.2025 13:54 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Great week for #ElixirLang. Phoenix 1.8 released, elixir-hub.com by @curiosum.bsky.social and now another great resource. Good times!

07.08.2025 09:51 πŸ‘ 3 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

I have yet to find something that makes the lapwork of deploying projects to your own machines less of a pain. Is Kamal the best option?

07.08.2025 08:38 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

And stop logging me out all the time, please

02.08.2025 06:25 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image

ITS HAPPENING

Firefox 127 shipped today making it the first browser to support Temporal - the new API for working with Dates, times, timezones + durations

27.05.2025 22:22 πŸ‘ 518 πŸ” 81 πŸ’¬ 17 πŸ“Œ 14
Preview
GitHub - smartrent/quokka Contribute to smartrent/quokka development by creating an account on GitHub.

TIL that SmartRent forked the #ElixirLang Styler project to actually make it configurable. Quokka is the Credo-but-just-fix-it-for-me that I've wanted for 6 years of doing Elixir. 😍 😍 😍

27.05.2025 12:38 πŸ‘ 51 πŸ” 13 πŸ’¬ 2 πŸ“Œ 0
Post image

πŸŽ‰ Celebrating 10 years of Stable Rust with a FREE ebook!

All STM32 blog posts compiled into one self-contained edition of Simplified Embedded Rust.

Just subscribe & share The Embedded Rustacean newsletter to get it!

23.05.2025 14:56 πŸ‘ 15 πŸ” 3 πŸ’¬ 1 πŸ“Œ 0
An Elixir module with contents:

defmodule ColocatedDemoWeb.Markdown do
  @behaviour Phoenix.Component.MacroComponent

  @impl true
  def transform({"pre", attrs, children}, _meta) do
    markdown = Phoenix.Component.MacroComponent.AST.to_string(children)
    {:ok, html_doc, _} = Earmark.as_html(markdown)

    {"div", attrs, [html_doc]}
  end
end

An Elixir module with contents: defmodule ColocatedDemoWeb.Markdown do @behaviour Phoenix.Component.MacroComponent @impl true def transform({"pre", attrs, children}, _meta) do markdown = Phoenix.Component.MacroComponent.AST.to_string(children) {:ok, html_doc, _} = Earmark.as_html(markdown) {"div", attrs, [html_doc]} end end

A LiveView render function with contents:

  def render(assigns) do
    ~H"""
    <pre :type={ColocatedDemoWeb.Markdown} class="prose mt-8">
    ## Hello World

    This is some markdown!

    ```elixir
    defmodule Hello do
      def world do
        IO.puts "Hello, world!"
      end
    end
    ```

    ```html
    <h2>Hey</h2>
    ```
    </pre>
    """
  end

A LiveView render function with contents: def render(assigns) do ~H""" <pre :type={ColocatedDemoWeb.Markdown} class="prose mt-8"> ## Hello World This is some markdown! ```elixir defmodule Hello do def world do IO.puts "Hello, world!" end end ``` ```html <h2>Hey</h2> ``` </pre> """ end

A webpage with the rendered markdown content.

A webpage with the rendered markdown content.

While working on Colocated Hooks in LiveView, we also found some other cool things you can do, such as rendering markdown at compile time πŸ‘€ #MyElixirStatus #ElixirLang #PhoenixLiveView

23.05.2025 08:04 πŸ‘ 53 πŸ” 12 πŸ’¬ 2 πŸ“Œ 1
Preview
Exploring Rectangle Subdivisions Last week, I saw a talk on Vuntra City, a procedurally generated city with a fully explorable city. Developer Larissa Davidova explained that she settled on using Recursive Subdivision for the city…

Back to classic proc gen today. What ways are there of subdividing a rectangle? I enumerate the *irreducible* subdivisions, which imho are the most visually interesting.

www.boristhebrave.com/2025/05/03/e...

03.05.2025 11:43 πŸ‘ 50 πŸ” 11 πŸ’¬ 3 πŸ“Œ 1

Hey friends! πŸŽ‰
We've implemented basic accessibility ♿️ across all our components!
You can now access it in version 0.0.5-alpha.12. ✨
Plus, we've squashed a lot of bugs! πŸ› βœ…
Go ahead and update! πŸ”₯
Doc: mishka.tools/chelekom
#Elixir #ElixirLang #phoenix

26.04.2025 05:58 πŸ‘ 15 πŸ” 2 πŸ’¬ 0 πŸ“Œ 0
Preview
HTMHell Advent Calendar 2024 - HTMHell An article, talk, or tool that focuses on HTML every day until Christmas.

htmhell.dev/adventcalend... you need to read it

07.12.2024 18:14 πŸ‘ 5 πŸ” 2 πŸ’¬ 0 πŸ“Œ 0

Twitter started feeling like LinkedIn at some point. That's when it's not populist garbage and bots.

I'm glad there's an alternative.

06.12.2024 22:18 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0