Hey Cursor community! ![]()
I’ve been using Cursor AI heavily to build a bunch of practical tools — from infrastructure ops dashboards to AR plugins for Even Realities G2 smart glasses. Everything from ideation, code generation, debugging, and even READMEs/docs was powered by Cursor. It’s been an absolute game-changer for rapid prototyping.
Go check out the GitHub Repositories under my profile btstevens1984az
A few highlights:**
Even-G2-Network-Scanner (Standout Project)**An Even Realities G2 plugin that displays live network info on your glasses HUD and pops up alerts when new devices join your LAN.
- Real-time network overview on glasses
- ARP + ping based scanning (server component)
- WebSocket push to G2 for instant alerts
- Phone companion UI for connection control
Perfect for home labs, IT pros, or anyone who wants to “see” their network in AR.
Same Wi-Fi required for scanner + phone + glasses.
Fully open source repos
How it works snippet (TypeScript main logic):
// Simplified alert on new device
if (newDevices.length > 0) {
displayAlert({
title: "!! ALERT !!",
lines: [
"NEW DEVICE",
newDevices[0].hostname || "Unknown",
newDevices[0].ip,
newDevices[0].mac
]
});
}
