added more recent projects 0a9f19a4
Steve · 2024-10-27 12:47 1 file(s) · +21 −2
src/data/projects.ts +21 −2
8 8
9 9
export const projects: ProjectItem[] = [
10 10
	{
11 +
		title: "Mast",
12 +
		description:
13 +
			"A simple TUI used for sending casts on Farcaster written in Go. I wanted a project to try out the Bubbletea TUI framework from Charm.sh and this fit the bill perfectly. It's authorized using your own custody signers (can be created through castkeys.xyz) and allows the user to set their own Farcaster hub.",
14 +
		image:
15 +
			"https://cdn.stevedylan.dev/files/bafkreigqnynyjfax3loj5maiwnvv3qqxotpoajiq4p6r6glmt6pjmowjke",
16 +
		link: "https://github.com/stevedylandev/mast-cli",
17 +
		tags: ["farcaster", "developer tools"],
18 +
	},
19 +
	{
20 +
		title: "Cast Keys",
21 +
		description:
22 +
			"A tool and example for Farcaster developers that need to create signers for their account. Signers are ED25519 keypair that are signed by the primary wallet of a user, and they operate like API keys that can be revoked down the road. They are crucial to the Farcaster ecosystem as they allow users to 'sign-in' to other Farcaster apps and interact with the protocol. This small web app makes it easy to generate a signer for your account, but the code is also FOSS as an educational tool for new Farcaster devs.",
23 +
		image: "https://castkeys.xyz/og.png",
24 +
		link: "https://castkeys.xyz",
25 +
		tags: ["farcaster", "developer tools"],
26 +
	},
27 +
	{
11 28
		title: "Pi-Widget",
12 29
		description:
13 30
			"A small server written in Go that you can run on your Raspberry Pi to display vitals in real time. For my particular Pi it displays IPFS repo stats and system stats, with more updates on the way",
53 70
		title: "Raycaster Extension",
54 71
		description:
55 72
			"The fastest way to send a cast on Farcaster. A Raycast extension that allows you to sign into your Farcaster account and send casts with optional images via IPFS. ",
56 -
		image: "https://dweb.mypinata.cloud/ipfs/QmSsY6QnhdwbWunrgzTDkpvRd7oWx5nUp8v7UiMeGRFeZ1",
73 +
		image:
74 +
			"https://dweb.mypinata.cloud/ipfs/QmSsY6QnhdwbWunrgzTDkpvRd7oWx5nUp8v7UiMeGRFeZ1",
57 75
		link: "https://www.raycast.com/stevedylandev/raycaster",
58 76
		tags: ["raycast", "developer tools", "productivity"],
59 77
	},
78 96
		title: "Pinata-go-cli",
79 97
		description:
80 98
			"A Go rewrite of the Node.js CLI for Pinata, allows fast and extensive uploads to Pinata. Also includes helpful features for listing files and other API functionalities. ",
81 -
		image: "https://dweb.mypinata.cloud/ipfs/QmasHAZJ2kb9k3AqkQP4yzYbZn8zxFGsrygNv6HBdMn1uE",
99 +
		image:
100 +
			"https://dweb.mypinata.cloud/ipfs/QmasHAZJ2kb9k3AqkQP4yzYbZn8zxFGsrygNv6HBdMn1uE",
82 101
		link: "https://github.com/PinataCloud/pinata-go-cli",
83 102
		tags: ["developer tools", "ipfs"],
84 103
	},