
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@techandsoftware/teletext-plugin-smooth-mosaic
Advanced tools
Plugin for @techandsoftware/teletext - render mosaic graphics smoothly using hqx
This is a plugin for @techandsoftware/teletext, which uses a pixel art scaling algorithm to create a smooth rendition of teletext mosaic graphics. The scaling algorithm used is hqx.
The following image shows a page from Ceefax with normal rendering and with smoothed graphics on the right:

See https://teletextmoduledemo.tech-and-software.ltd.uk/ . Press 'p' or click the button marked with 'p' to load the plugin.
See the docs directory in the repo for an SVG created with the plugin.
The easiest option is to use jsdelivr:
const module = await import('https://cdn.jsdelivr.net/npm/@techandsoftware/teletext-plugin-smooth-mosaic@latest/dist/teletext-plugin-smooth-mosaic.min.js');
// teletext is the @techandsoftware/teletext instance
teletext.registerViewPlugin(module.SmoothMosaicPlugin);
If installing from npm, you'll also need to use tooling like rollup to resolve the dependency for your browser.
import { SmoothMosaicPlugin } from '@techandsoftware/teletext-plugin-smooth-mosaic';
teletext.registerViewPlugin(SmoothMosaicPlugin);
As the module is fairly large, you could import dynamically:
const module = await import('@techandsoftware/teletext-plugin-smooth-mosaic');
teletext.registerViewPlugin(module.SmoothMosaicPlugin);
If you want to support browsers that can't use ES6 modules, a UMD version is also available in the dist directory for importing with <script>. It exports the module in the global ttxsmooth. It's likely you'll also need to transpile the code for your target browsers.
FAQs
Plugin for @techandsoftware/teletext - render mosaic graphics smoothly using hqx
We found that @techandsoftware/teletext-plugin-smooth-mosaic demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.