Steve Sims

Results 42 issues of Steve Sims

create monochrome bitmaps using graphics foreground colour also fixes logic for working out width in bytes of monochrome bitmaps. bitmaps are assumed to have a complete number of bytes per...

I've moved the AgonConsole8 fork of agon-vdp to use semantic versioning. There's several reasons why. On other projects I've used CI tooling that will do things like automatically increment version...

fixes an issue for the emulator where the cursor rapidly flashed as it runs on hardware faster than an ESP32

enhancement

When MOS makes a call to the faffs's `f_findfirst` function, passing in a pattern of `""` (i.e. an empty string) and providing a path to a valid directory, the expected...

Attempting to open a file where the filename includes a space using either the `LOAD` or `CHAIN` keywords will fail reporting `Could not find file`. For instance `LOAD "prog file.bas"`...

In an HTML form, a `select` element placed inside a `fieldset` with a `disabled` attribute will inherit that attribute and be disabled. A radix-themes `Select` component placed inside a disabled...

In an HTML form, a `button` element placed inside a `fieldset` with a `disabled` attribute will inherit that attribute and be disabled, without needing to explicitly also set `disabled` on...

The following is a fairly common pattern to use with a `select` element within a form: ``` - Red Green Blue ``` Using an option with an empty string for...

A `Select` component can be used in a form, and if the `Select.Trigger` is given an `id` then a `label` element with `htmlFor` set to that `id` will cause the...

I am using the Conform library for form management including form validation. My form has been set up with `shouldRevalidate: "onBlur"`, leaving the `shouldValidate` setting as the default value`"onSubmit"`. These...