The plugin is a stylized generative and glowing effect designed to create ghostly, layered, fractal noise outlines. Inspired by the visual aesthetic of supernatural phenomena, volumetric energy fields, and paranormal auras, Ecto generates a multi-layered fractal noise that is color-mapped to give your source footage, text, or shapes an organic, glowing, and continuously animated look.
The Erlang Virtual Machine (BEAM) supports for this purpose. However, writing NIFs directly using the Erlang C API is notoriously difficult, tedious, and error-prone, requiring you to manually parse and construct Erlang terms. This is where Unifex excels.
Propose your specific focus area, and we can build out the exact code patterns you need. Share public link uni ecto plugin
Injects boilerplate fields, types, and functions directly into your schema modules.
Are you ready to simplify your Ecto workflow? Give UniEcto a try in your next Phoenix project! AI responses may include mistakes. Learn more The plugin is a stylized generative and glowing
mix ecto.gen.migration add_unique_email_index_to_users
At compile time, Uni.Ecto.Plugin rewrites the schema module to: However, writing NIFs directly using the Erlang C
defmodule UniEctoPlugin.SoftDelete do import Ecto.Query defmacro __using__(_opts) do quote do field :deleted_at, :utc_datetime end end def exclude_deleted(query) do from q in query, where: is_nil(q.deleted_at) end def soft_delete(struct, repo) do struct |> Ecto.Changeset.change(deleted_at: DateTime.utc_now()) |> repo.update() end end Use code with caution. Automated Data Anonymization / Encryption