chore: update projects 5f56e9ae
Steve · 2025-09-21 19:45 1 file(s) · +25 −0
src/data/projects.ts +25 −0
24 24
		tags: ["developer tools", "web frameworks"],
25 25
	},
26 26
	{
27 +
		title: "norns",
28 +
		description:
29 +
			"Over the years I've noticed how so many decentralized applications on EVM chains have slowly built up heavy dependency trees. With some of the supplychain hacks occurring on NPM, I decided it would be a good idea to build atomic web components that achieve all the basic functionality needed to build dApps. The result was norns, which is a library + CLI for simple EVM UI components. Much like shadcn/ui you can import the raw code to your framework or vanilla HTML file and they won't ever break since they have zero dependencies or base framework; just JavaScript.",
30 +
		image: "https://norns.so/og.png",
31 +
		link: "https://norns.so",
32 +
		tags: ["blockchain", "developer tools", "web frameworks"],
33 +
	},
34 +
	{
35 +
		title: "Darkmatter",
36 +
		description:
37 +
			"I got tired of seeing so many developer use terminal emulators that required a login or had paywalls, so I put together a quickstart terminal build using Ghostty. The result is a great DX with all the tools you need, and setting you up to customize it yourself. It also brought about a new theme under the same name, which has been ported to Neovim and Zed if you're interested.",
38 +
		image: "https://files.stevedylan.dev/darkmatter-nvim.png",
39 +
		link: "https://github.com/stevedylandev/darkmatter",
40 +
		tags: ["developer tools", "neovim", "terminal"],
41 +
	},
42 +
	{
43 +
		title: "Atlas",
44 +
		description:
45 +
			"A simple yet powerful CLI for ENS queries and utilities. Can resolve different types of records for names or addresses, as well as provide a printed profile, hashes, or ENS contract deployments",
46 +
		image:
47 +
			"https://raw.githubusercontent.com/stevedylandev/atlas/main/cover.png",
48 +
		link: "https://github.com/stevedylandev/atlas",
49 +
		tags: ["developer tools", "ens", "blockchain"],
50 +
	},
51 +
	{
27 52
		title: "IPCM",
28 53
		description:
29 54
			"IPCM (InterPlanetary CID Mapping) is a blockchain approach to solving the problem of dynamic IPFS data. Instead of using a slower solution like IPNS to point to new content, IPCM is a smart contract that is used as the source of truth for a piece of dynamic content. It features a simple state that can only be updated by the owner of the contract but read by anyone, as well as a public version history through Solidity events.",