DelphiX
@delphix4855.bsky.social
420 followers 1.5K following 300 posts
CRT nerd, Minecraft player for over a decade, furry. Australian, 19y/o, he/him Discord: delphix4855 Minecraft: DelphiX
Posts Media Videos Starter Packs
Reposted by DelphiX
delphix4855.bsky.social
i too love burning my retinas while trying to watch tv
delphix4855.bsky.social
Ultra 64 was the original name planned for the Nintendo 64. As for the Famicom, I don’t know why the controllers have transparent plastic. Either it’s a clone console, or modern replacement controller shells have been swapped in
delphix4855.bsky.social
it takes about a minute to finish filling in
delphix4855.bsky.social
had some fun with PRINT and GOTO on the Apple IIgs
delphix4855.bsky.social
the Apple IIc’s monitor had a bad component that would cause near-complete horizontal and vertical deflection collapse after a few minutes of being switched on. turning it off for a bit would temporarily resolve the issue. I spent much of my time keeping an eye on the monitor for when it did this.
delphix4855.bsky.social
thread of photos and videos I took at PAX
I spent most of my time in the classic games area so I only took photos of stuff there

see alt text
Display cabinet with an Ultra 64 (early name for the Nintendo 64). There’s a label on the top of the console that reads “Property of Nintendo”.

To the left of the Ultra 64 is a Famicom with transparent controllers.
On the shelf underneath are two Apple Pippins, one beige and one charcoal grey.

On top of the display cabinet is a printed sign:

Ultra 64 1995, Nintendo, Japan Development/pre-release console which preceded the final release of the Nintendo 64 in 1996, going by the name "Nintendo 64 Ultra"
Possibly the ONLY complete working system in the world?
Owned by Last Gamer Sharp Famicom Titler. Also some novelty LCD game watches at the top and right edges of the image Sign for the Sharp Famicom Titler, reading:

Sharp Famicom tiler AN-510 - 1989, Sharp (Nintendo Licenced), Japan
The Famicom Titler (ファミコンタイトラー)、AKA: TheFamicom Editor (編集ファミコン,Henshuu Famicom), is a
Nintendo-licensed Famicom-compatible device produced by Sharp Corporation in 1989.
Released exclusively in Japan at a retail price of 43,000 yen ($428.50 AUD /)
The system was the only consumer-level Famicom to internally generate RGB video. The system also functioned as a subtitle-generator and it could be used in combination with a RF-video camera to create and edit gameplay videos and demos.
Character input was made upon a small touch-sensitive tablet mounted into the console. A stylus was included as attached to the body, and audio additions to the demo could be made using the included microphone. Flipping the switch back would superimpose the video and subtitles on the console.
----
Game Watches
Collection of watches from mid 1980's to 1990's with game playable features.
Ranging from 1-3 games per device. Display cabinet with various boxed PC games - including Doom, Prince of Persia, Diskworld, and a sealed copy of Quake! There’s a few other games in there too.
Reposted by DelphiX
pepverbsnouns.bsky.social
"Bluesky is boring."

Social media *should* be boring. Being algorithm and dopamine poisoned is bad, actually.

When your feed dries up for the day, that's your cue to go do something else until new stuff shows up later.
delphix4855.bsky.social
7 COLOR= I: PLOT PX,PY: PLOT PX,47 - PY

8 NEXT PX: NEXT PY

9 GET K$: TEXT
delphix4855.bsky.social
Code by [email protected]:

1 GR : POKE 49234,0: CALL - 1998

2 FOR PY = 0 TO 23: FOR PX = 0 TO 39

3 X0 = (PX - 31) * .066:Y0 = (PY - 23) * .05:X = 0:Y = 0:X2 = 0:Y2 = 0

4 FOR I = 1 TO 15:Y = (X + X) * Y + Y0:X = X2 - Y2 + X0:X2 = X * X:Y2 = Y * Y

5 IF X2 + Y2 > 4 GOTO 7

6 NEXT I: GOTO 8