Links For You (8/23/26) / / No Comments Greetings, programs. Once again, I’m a bit behind on these posts, but I just got back from two weeks of travel and I’m so happy to be home for a while. My last trip was pretty stressful. On the way out, our plane blew a tire (or tires) which required an emergency landing in Dallas (which is where we were scheduled to stop anyway). Everything ended up fine, but as I said, stressful. Then coming home we were minutes from our destination when the pilot had to turn around due to storms. You can actually see exactly where in the route where they said NOPE: For this, and other reasons, I’m damn happy I’ve got a therapy session tomorrow. So, let’s get to the links. And... more → Posted in: JavaScript Tagged with: 8/23/26, links
Using the Cursor SDK to Build a Project Documenter / / No Comments I’ve shared a few posts recently talking about how I’m using Cursor to learn and employ agentic development. Primarily that work has all been done via our Agent view, but this is just one of the surfaces you can use with the platform. I had a chance recently to try out the SDK and I thought I’d share a little demo I built with it. First – some explanation would be helpful. You can use Cursor with the desktop application, on the web, via CLI, on iOS, even via API. But the SDK lets you use the platform from your code. There’s an SDK for TypeScript, Python, and a bridge that embeds a TypeScript server and lets you use any language. Honestly I’ve never seen that... more → Posted in: JavaScript Tagged with: Build, Cursor, Documenter, project, using
– A simple web component for file previews / / No Comments This was a "I can’t fall asleep and my mind is wondering" type of idea and honestly, I’m surprised at how good it came out. For a while now I’ve shared demos where a user picks an image and … something. It doesn’t matter. But I typically add a preview of the image when it’s selected. This works because once the user selects a file on their local system, JavaScript can then access the bits of that file, making it trivial then to render it. The idea I had, late at night, was simple – what if this could be a web component and expanded to cover different file types? In my imagination, it would look something like this in code: <form> <!--... more → Posted in: JavaScript Tagged with: Component, file, previews, simple
Links For You (8/2/26) / / No Comments Happy August folks. Louisiana is celebrating the approach of Fall by gradually increasing the temperatures to roughly that of the surface of the sun. Last night we saw the new Spider-Man, which was really good, although not as fantastic as "No Way Home". The point of these posts is for me to share content from other folks, but I’ll remind folks of my Youtube channel. This past week I shared a few new videos demonstrating some cool stuff with Cursor so if you’ve not checked them out yet, give me a quick watch and let me know what you think! Web browsing on your gaming console First up is a great post by Vale detailing the capabilities and history of web browsers on game consoles.... more → Posted in: JavaScript Tagged with: 8/2/26, links
Updating my Watch Site for Algolia Support / / No Comments Alright, so I was supposed to share this a bit quicker, but life, work, etc, kept me busy. I’ve had this particular change up for a few days but I’m just now getting around to blogging about it. What changes? Adding Algolia’s MCP to my Cursor environment Using Algolia’s MCP (what worked, what did not) Adding Algolia content as a scheduled service with Netlify Adding a basic search front end to I Watch Watches Before going on, be sure you’ve read the last piece where I talked about agentic development in general, and specifically how I built the site. If you don’t have a log, did it happen? I’ve been doing some work with different profiles and my Cursor... more → Posted in: JavaScript Tagged with: Algolia, Site, Support, Updating, Watch
Building Agentically and Celebrating Watches / / No Comments I’ve shared past experiences with vibe coding and it’s been a fascinating way to experiment and build on a small scale, but while it works well for POCs and other small utilities (I won’t say ‘toys’ as I’ve built useful, if small, things now multiple times), it isn’t really a "process" and not one that would work over a project with a longer time frame. This is where "Agentic Development" comes in. It’s not always referred to as such and it’s a huge topic, but let me give you my opinion on it and then demonstrate how I used it to build my newest project, I Watch Watches. Agentic Development in a Nutshell Vibe coding is... more → Posted in: JavaScript Tagged with: Agentically, building, Celebrating, Watches
Copying HTML Tables as Text, Markdown, and CSV / / No Comments Earlier today and in a non web-related conversation, I saw someone talk about copying tabular data into different formats, like plain text and CSV. It got me thinking – this could be a useful feature for web sites and surely something pretty trivial to do in JavaScript. So I whipped up a quick demo. First, I added a table of course: <table id="table1"> <thead> <tr> <th>Name</th> <th>DOB</th> <th>Gender</th> <th>Breed</th> </tr> </thead> <tbody> <tr><td>Whiskers</td><td>2019-03-14</td><td>Male</td><td>Maine Coon</td></tr>... more → Posted in: JavaScript Tagged with: Copying, HTML, Markdown, Tables, text
Links For You (7/18/26) / / No Comments Good morning, programs. I’m currently at a conference (Day of Data), but thankfully one just down the road. I’ll be back tonight, and thought I’d take a break between sessions to share some links. I’ll be presenting later today one of my favorite talks, "A Beginner’s Guide to Wrangling Asynchronicity in JavaScript". I love the talk, but given I’m up against eight other talks at the same time and I’m not talking AI… well it may be a small personal affair. We shall see. Building a Blog with Astro It’s been a hot minute since I’ve written about Astro. I first started using it since Webflow was a sponsor and found that I really... more → Posted in: JavaScript Tagged with: 7/18/26, links