Notes on Ballistic Trajectories

We will be talking about primitive mathematical models for the path of objects on ballistic trajectories: There will be ramblings, sample code, and a simple Unity WebGL demo. Definition of ballistic What exactly is something that’s moving ballistically? ballistic bəˈlɪstɪk ) ADJECTIVE Denoting or relating to the flight of projectiles after power has been cut off, moving under their own momentum and …

IK Solver From Scratch In Unity

In this post, we will cover a really simple (CCD) implementation of inverse kinematics. We’ll structure this with the typical format of waxing poetic, then some code samples and an embedded Unity WebGL demo. What is Inverse Kinematics? I’m assuming you’re here because you’re already familiar with the subject. But if not, IK is basically …

Automating Tedious Tome Farming In Lost Ark

Cheesy automation for farming low-level collection quests with simple programming. I don’t play Lost Ark anymore, but this post has been on my TODO for quite a while. Automating the Grind There’s an MMORPG game called Lost Ark. It has a problem in that simple (Tome) collection quests involve grinding for a handful of hours. …

Duct Tales, Updates On My Baggage

Back to writing about barrel bags; because… well, because! Templates So I’ve revisited the ol’ barrel-bag-outa-duct-tape thing. Up until now, the crafting process of these bags has been guided by rough sketches and drawing construction guides directly onto duct tape. This was done using a Sharpie Pen; its ink sticks to the slick side of …

Modifying Windows System Menus in wxWidgets

System menus are those standard menus that open when you click an application’s icon in the top left of its title bar. There doesn’t seem to be a standard way to modify and respond to them in wxWidgets, so I’m going to go over what I did in my wxWidgets WindowsOS applications to modify the …

Probing Stable Diffusion Resolutions with Favelas

Something I’ve noticed is that the resolution size you give to Stable Diffusion doesn’t just change the output image size, but can also change the qualities of what is returned. This can vary depending on what type of content you’re generating. I want to start with exploring a past prompt, but from scratch with text-to-image …