Using GenAI to Create a SDK from Sample Code / / No Comments I’ve been experimenting more and more with AI-assisted coding (not gonna call it vibe coding, even when I do), and the results have been incredibly interesting. Today, I decided to try something interesting – generating a SDK for an API. There are multiple tools out there that can convert an OpenAPI specification to an SDK (and those tools I’ve seen are pretty darn cool), but I wanted to attempt another route. Earlier this month I blogged about the new Foxit PDF APIs I’m working with. These APIs are all really simple, which is good of course, but when prepping for the release, I wanted to build code samples for every possible operation. I did so, and they’re up in... more → Posted in: JavaScript Tagged with: code, create, from, GenAI, Sample, using
How to Create a Screen Recording with Quicktime / / No Comments Creating screen recordings is an essential skill for web developers. Screen recordings can illustrate new features, bugs, or a variety of other ideas. I’m often asked what app I use to create screen recordings and people are shocked when I tell them Quicktime! Let’s review how to create a screen recording with with Mac’s native Quicktime! In Short: Open Quicktime Choose File -New Screen Recording Record your screen actions Press COMMAND+CONTROL+ESC to stop and save Step 1: Open Quicktime To get started with the process of recording your screen, open the Quicktime app. The Quicktime app will immediately open a dialog to import or play a video — close that dialog as... more → Posted in: JavaScript Tagged with: create, Quicktime, Recording, Screen
How to Create a Diff of Two Images / / No Comments When I was a child, I loved looking for Waldo in the “Where’s Waldo?” book series. These days I’m a sucker for TMZ’s “What’s the Big Frigin Difference” images, where TMZ slightly changes an image and you have to spot the differences between the two. That got me to thinking — how easily could I automate diff’ing two images? This StackOverflow post was gold. To create a diff of two similar images, we’ll use ImageMagick’s convert command line utility with a large host of configurations: convert '(' image1.png -flatten -grayscale Rec709Luminance ')' '(' image2.png -flatten -grayscale Rec709Luminance ')' ... more → Posted in: JavaScript Tagged with: create, Diff, images
Create a Thumbnail From a Video with ffmpeg / / No Comments Creating a thumbnail to represent a video is a frequent task when presenting media on a website. I previously created a shell script to create a preview video from a larger video, much like many adult sites provide. Let’s view how we can create a preview thumbnail from a video! Developers can use `ffmpeg, an incredible open source media utility, to create a thumbnail. To create a thumbnail from the first frame of a video, execute the following command: ffmpeg -i input.webm -vf "select=eq(n\,34)" -vframes 1 thumbnail.png Providing a video thumbnail is a great tool convert images into video views. You don’t need fancy software and manual labor to create thumbnails — use... more → Posted in: JavaScript Tagged with: create, ffmpeg, from, Thumbnail, video
Learn How to Create Asynchronous Programs With JavaScript – MakeUseOf / / No Comments Learn How to Create Asynchronous Programs With JavaScript MakeUseOf “JavaScript” – Google News… more → Posted in: JavaScript Tagged with: Asynchronous, create, JavaScript, Learn, MakeUseOf, programs
How to Create a Skeleton Screen Loading Effect in HTML, CSS, and JavaScript – MakeUseOf / / No Comments How to Create a Skeleton Screen Loading Effect in HTML, CSS, and JavaScript MakeUseOf “JavaScript” – Google News… more → Posted in: JavaScript Tagged with: create, Effect, HTML, JavaScript, Loading, MakeUseOf, Screen, Skeleton
How to Create a Linear Gauge Chart in JavaScript – SitePoint / / No Comments How to Create a Linear Gauge Chart in JavaScript SitePoint “JavaScript” – Google News… more → Posted in: JavaScript Tagged with: Chart, create, Gauge, JavaScript, Linear, SitePoint
How to Create a Digital Clock Using HTML, CSS, and JavaScript – MakeUseOf / / No Comments How to Create a Digital Clock Using HTML, CSS, and JavaScript MakeUseOf “JavaScript” – Google News… more → Posted in: JavaScript Tagged with: Clock, create, digital, HTML, JavaScript, MakeUseOf, using