OPEN SOURCE

Built in the Open

Not everything needs a marketing page. These are the smaller tools, libraries, and utilities that come out of the CodeLifter workshop — built to scratch an itch, shared because someone else probably has the same one.

FEATURED

Iconizit

Stop hunting through FontAwesome docs every time you need an icon class name. Iconizit provides strongly-typed constants for every FontAwesome icon, giving you IntelliSense autocomplete, compile-time safety, and zero typos. Just reference the icon you want and move on.

.NETFontAwesomeIconsNuGet
C#MIT
View on GitHub
IconizitExample.cs
// Before: typo-prone string literals
var icon = "fa-solid fa-houes"; // oops
// After: strongly-typed with Iconizit
var icon = FA.Solid.House; // done
// IntelliSense shows every icon
var arrow = FA.Solid.ArrowRight;
var star = FA.Regular.Star;
var github = FA.Brands.Github;

The Workshop Philosophy

Some engineers build a thing because it saves them 20 minutes. I share mine so I can save lots of people like you 20 minutes.

Not every project needs to be a product. That's the whole idea here.

Found a bug? Got a feature request? PRs are always welcome. These projects are MIT licensed and built to be useful — not precious.