Elektrine
EN
Log in Register
Paige Chat Timeline Communities Gallery Videos Email DNS VPN Uptime Kairo
Back to Timeline
Remote

Andrew

@arx@tech.lgbt
  • Open on tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

0 Followers
0 Following
26 Posts
Joined January 02, 2023

Posts

Open post
arx
Andrew @arx@tech.lgbt · Aug 05, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt
Replying to @trib@aus.social
@trib@aus.social Immediate fuss and treats required.
0
0
0
0
Open post
arx
Andrew @arx@tech.lgbt · Jun 27, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt
Replying to @Flowermob@mastodon.social
@Flowermob@mastodon.social Humanity tends to bend reality to suit itself, not the other way around.
0
0
1
0
Open post
arx
Andrew @arx@tech.lgbt · May 24, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt

Away from the PC, I’m having a bash at designing an ASCII font whose printable characters all leave the most and least significant bits clear, so that they can be used as colour attributes when required. Imagine the BBC Micro’s mode 0 but with four colours selectable per line per character. Handy for 80-column program listing with highlighted keywords and errors.

Characters 0-31 will hold the values 0-255, because the bitmapped graphics mode will be a special case of character mode comprising 256 x 1-byte characters whose values equal their codes. These values also conveniently double as an identity table for synthesising extra opcodes, which the system can guarantee available to software, and ensures the whole 2KB are useful.

1
0
1
0
Open post
arx
Andrew @arx@tech.lgbt · May 23, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt

Viewer discretion advised: Today’s crappy world reflects the attitudes and standards of its time.

3
0
1
0
Open post
arx
Andrew @arx@tech.lgbt · May 22, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt

Masters of the Uwuniverse.

2
1
0
0
Open post
arx
Andrew @arx@tech.lgbt · May 21, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt

A sound chip that reads tracker-like data from memory all by itself, in between the CPU cycles.

0
1
0
0
Open post
arx
Andrew @arx@tech.lgbt · May 20, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt

Summat like this would be handy, if I could do it.

0
0
0
0
Open post
arx
Andrew @arx@tech.lgbt · May 17, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt

Right, let's do this properly. Apparently these programmable logic devices prefer clock enable signals that are high only for the duration of a master clock cycle, because power, synchronisation, ease of synthesis etc. That's why I kept seeing that design pattern in all the other retro computer Verilog projects I've been studying. So here we are with the beginnings of my own custom video display generator, creating all the clock signals for driving the CPU and system bus, as well as the 2, 3, 4, 6 or 8 pixels per byte I want for my video shifter.

1
0
0
0
Open post
arx
Andrew @arx@tech.lgbt · May 17, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt

Symmetry happens when you have more dimensions to fill than you have information to go around, so you have to reuse at least one bit of it. The first step of intelligence is to figure out what it is that’s being reused.

0
0
0
0
Open post
arx
Andrew @arx@tech.lgbt · May 15, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt

How quickly could a proof of P=NP be verified? Would it necessarily reference itself?

5
1
2
0
Open post
arx
Andrew @arx@tech.lgbt · May 13, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt

Thinking I adapt the Beeb’s hardware design a tad, ditching the shadow RAM concept in favour of making the video memory just a special case of sideways RAM. Reducing the screen to 200 logical lines will make it fit within 16kB. Line doubling will make it 400, within a 640x480 at 25MHz VGA.

Line doubling how exactly? Well… I could alternate between character codes and character definitions on even and odd lines, using an 80 byte buffer. No need for badlines that freeze the CPU, provided I run the CPU and VDC at 3.125MHz and the memory at 6.25MHz. NMI response times protected.

The added beauty is that an all-points-addressable bitmapped graphics mode is actually a special type of character mode in which every character is 1 logical line in height and whose definition equals its code. The identity function. So, all I’d need to do is support a configurable character height. The 256 x 1 byte identity will fit within the 384 bytes free in the 16kB after the (640/8)*200 ‘character codes’ have had their fill.

1
0
0
0
Open post
arx
Andrew @arx@tech.lgbt · May 10, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt

I wonder what this is. Track inspection gizmotronics?

0
1
0
0
Open post
arx
Andrew @arx@tech.lgbt · May 09, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt

Lookit the dog menu. <3

0
0
0
0
Open post
arx
Andrew @arx@tech.lgbt · May 09, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt

The newly discovered Clayhill Vineyard in Althorne.

0
0
0
0
Open post
arx
Andrew @arx@tech.lgbt · May 01, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt
Replying to @Cookies@mstdn.social
@Cookies@mstdn.social Those names. <3
1
0
0
0
Open post
arx
Andrew @arx@tech.lgbt · Mar 13, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt
Replying to @pheonix@hachyderm.io
@pheonix The civilised way is never try to sell anyone anything unless you think they’ll willingly come back for more. So yeah, that principle is being increasingly violated and it’s especially problematic when no-one at all wants or has to follow it any more. That’s when the race to the bottom is complete. Enshittification.
1
0
0
0
Open post
arx
Andrew @arx@tech.lgbt · Jan 04, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt
Replying to @MarkHoltom@mastodonapp.uk
@MarkHoltom@mastodonapp.uk The very bestest. <3
0
0
0
0
Open post
arx
Andrew @arx@tech.lgbt · Jan 03, 2026
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt
Replying to @whophd@mastodon.social
@whophd@mastodon.social @cstross@wandering.shop @HunterAnton@mastodon.social @fesshole@mastodon.social That depends on how much they bother to test these days. Nothing to see here, folks, keep shopping.
0
1
0
0
Open post
arx
Andrew @arx@tech.lgbt · Dec 29, 2025
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt
Replying to @cmconseils__dup_986@mastodon.social
@cmconseils@mastodon.social Hi Laura, This post has been flagged and recorded in our resolutions system as a policy violation requiring enhanced correction. Please remain in place while a messaging squad is despatched to your location moving forward going forward. Best Hernia Deakin Head of Resource
0
1
0
0
Open post
arx
Andrew @arx@tech.lgbt · Dec 04, 2025
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt
Replying to @mcrocker@indieweb.social
@mcrocker@indieweb.social @iode@mastodon.online And for those customers experiencing excessive anxiety over the state of this world, tell your pharmacist about Xanax XS Max. From only $899 per month. Minimum 12 month contract. 10% discount available for Platinum Pro Plus 360 365 Luxe Edition Extreme health subscribers. Because we care.
0
0
0
0
Open post
arx
Andrew @arx@tech.lgbt · Nov 30, 2025
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt
Replying to @iode@mastodon.online
@iode@mastodon.online Yeay, personalised extortion. And if we manage somehow not to give them all our data, then we’ll probably be charged the worst prices all the time. I’d like to incentivise my boot up their asses.
0
1
0
0
Open post
arx
Andrew @arx@tech.lgbt · Nov 12, 2025
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt
Replying to @appassionato@mastodon.social
@appassionato@mastodon.social Which reality is that and how do I go there?
0
1
0
0
Open post
arx
Andrew @arx@tech.lgbt · Sep 22, 2025
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt
Replying to @cstross@wandering.shop
@cstross@wandering.shop Same reason many people imagine there’s a person-like God… sheer projection. At the most fundamental level, the mind is solipsistic and self-obsessed, only able to interpret and (literally) characterise the world in terms of itself. A tendency that is especially strong when emotions run high.
0
0
0
0
Open post
arx
Andrew @arx@tech.lgbt · Aug 15, 2025
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt
Replying to @xgranade@wandering.shop
@xgranade@wandering.shop Yup. This. https://tech.lgbt/@arx/114989832932385942
1
0
0
0
Open post
arx
Andrew @arx@tech.lgbt · May 23, 2025
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt
Replying to @luigirenna@infosec.exchange
@luigirenna@infosec.exchange Suits him right down to the ground!
0
0
0
0
Open post
arx
Andrew @arx@tech.lgbt · Nov 14, 2024
Andrew
@arx@tech.lgbt

Manchester, music, retro technology (especially BBC Micro), comedy, sci-fi, animation, snooker/pool, fluffy animals, trying to be a vegetarian but not in a preachy way. private static void.

tech.lgbt
Replying to @alexkidman@aus.social
@alexkidman@aus.social She’s a little princess. <3
0
0
0
0

Remote instance

tech.lgbt
Open on original server

Media

313k7r1n3
Elektrine

Tor hidden service

elekhj7afj4qnrr4yd3bkzslsyo5jgfxw3orgjkhlcxifueodybyiiad.onion

Platform

  • Email
  • Chat
  • Timeline
  • Communities
  • VPN
  • DNS

Company

  • About
  • Contact
  • FAQ

Legal

  • Terms of Service
  • Privacy Policy
  • Warrant Canary
  • Lite (no JS)
  • VPN Policy
  • Source code

Support

  • support@elektrine.com
  • Report Security Issue
Mail client setup IMAP mail.elektrine.com:993 POP3 mail.elektrine.com:995 SMTP mail.elektrine.com:465
© 2026 Elektrine. All rights reserved. Server: 00:35:45 UTC