nrw.social ist einer von vielen unabhängigen Mastodon-Servern, mit dem du dich im Fediverse beteiligen kannst.
Wir sind eine freundliche Mastodon Instanz aus Nordrhein-Westfalen. Ob NRW'ler oder NRW-Sympathifanten, jeder ist hier willkommen.

Serverstatistik:

2,8 Tsd.
aktive Profile

#computerhistory

4 Beiträge4 Beteiligte2 Beiträge heute

Hey there, fellow retro-tech nerds! The @mediaarchaeologylab has posted its open call for practitioners-in-residence in the lab for the next season, which begins in September. Submit your proposal by May 15!

Please boost for reach.

mediaarchaeologylab.ghost.io/p

The theme for the 2025/2026 residency is Counter Computing: Alternative Imaginaries.

Lab director Lori Emerson describes it this way: "We are interested in any form of artistic and/or scholarly practice that engages counter-computational practices, such as glitching, hacking, tinkering, queering, subverting, (un)making and (re)imagining. Through such experimentation, we encourage you to explore how our relation to (and imagination of) technology can be remade to envision alternative pasts, presents and futures."

The lab is asking interested parties to submit a proposal for an up-to-4-week residency that includes full access to the lab and its resources, and logistical support. Residents are expected to produce a public lecture, demo, video, performance, or exhibition as part of the residency. Examples of previous technical reports can be seen at mediaarchaeologylab.com/projec

Get to it, my peeps! We'll see you in the lab starting in the fall.

mediaarchaeologylab · Practitioner-In-Residence Open CallWe forgot about March & so feel less bad about sending out a second bulletin, especially because it is to announce that APPLICATIONS FOR THE 2025/2026 PRACTITIONER-IN-RESIDENCE COHORT ARE NOW OPEN! The theme for our 2025/2026 residency is Counter Computing: Alternative Imaginaries. We would like to see your interpretation
Fortgeführter Thread

Talking with the folks in the local #vintage / #retrocomputing community, they clued me in that the #ThinkPad #RAID is a steaming pile of 💩 and not worth the trouble.

🤷 Oh well. Thanks for cluing me in

So I swapped out the two testing #NVMe drives I was using and reinstalled the original sticks - to have #windoz10 demanding for the #bitlocker recovery key. 🤦‍♂️

Well, time to wipe & install #windoz11 then.

Install went fine, only 4 rando #drivers to find for all #devices to be recognized and working.

Using my #CTT scripts to install the majority of applications, then to remove the #spyware #bloatware and other garbage #micro$oft added to #windows11

Then migrate my #data from my other ThinkPad. Welcome to my #sunday #funday

#siliconValley #SillyValley #sanfrancisco #sanfran #sanfranciscocomputers #sanfrancomputers #sanfranciscovintagecomputers #sanfranvintagecomputers #sanfranciscovintagehardware #sanfranvin-tagehardware
#vintagecomputing #vintagecomputint #vintagecomputer #vintagecomputers #vintagecomputalk
#vintagehardware #computerHistory #retro #VCF #vintageComputerFestival
#retrocomputing #retroComputers #WallOfRetro #retroTech #retroTechnology
#nerdsOfVintage #happyNerding
#computer #tech #computerHardware #laptop #laptops
#IBM #thinkpad #thinkpads #VintageThinkPad #X86 #WindowsVista #IBMhardware #lenovoHard-ware #Thinkpadnium
#upcycle #restore #TechnologyRepair #ThinkPadRepair #WasteNotWantNot #Thinkpadnium
#makeShitMonday #showmewhatyougot

I scored 2 #Thinkpad #X260 laptops at #EFM #electronicsfleamarket in March with a handful of batteries for really cheap.
a i7 2.6Ghz and an i5 2.4Ghz

The i7 is immaculate, and is running great.
The i5 has some issues. Opening it up it was missing the SSD and SODIMM RAM, and I noted some corrosion on the aluminum frame around the SSD slot.

Getting it to moot up, there is this really weird spotting and "worms" with the #LCD that is really distracting. Not sure how this happened - and would love any insights as to the what & why this happened.
I suspect just easier to swap out the 12.5" 1366x768 for something with better resolution?

I did order two 32 GB DDR4 2666 SODIMMs from #aliexpress - the unofficial max #RAM for these X260's - and they work great. Both the i7 & the i5 detect the SODIMMs in the BIOS and in Win11. I initially had some spare 16GB SODIMMs in them, but why not max out the RAM when most apps and browsers are memory hogs lately?

#siliconValley #SillyValley #sanfrancisco #sanfran #sanfranciscocomputers #sanfrancomputers #sanfranciscovintagecomputers #sanfranvintagecomputers #sanfranciscovintagehardware #sanfranvin-tagehardware
#vintagecomputing #vintagecomputint #vintagecomputer #vintagecomputers #vintagecomputalk
#vintagehardware #computerHistory #retro #VCF #vintageComputerFestival
#retrocomputing #retroComputers #WallOfRetro #retroTech #retroTechnology
#nerdsOfVintage #happyNerding
#computer #tech #computerHardware #laptop #laptops
#upcycle #restore #TechnologyRepair #WasteNotWantNot #reuse #RepairReuseRecycle
#makeShitMonday #showmewhatyougot

I have been restructuring Richard Garriott's DND1 code that was written in BASIC. The old kind of BASIC where you had line numbers and did a lot of GOTO a line number.

It is fascinating trying to move it around with more modern eyes and years of programming dogma.

The code only has the concept of global variables. Every variable you make is then in the global space.

You can reuse a bit of code anywhere by just doing a GOTO line number. But it makes it very difficult to reason about because you might think of a stack of lines as a function and want to group them together, but some code somewhere else might just jump right into the middle of it!

Some bit of code might rely on some variable from somwhere else but it is difficult to know if some other bit of code is clobbering it.

Anyhow, this is the restructured version I put together.

codeberg.org/random-wizard/dnd

I moved things into GOSUB sections. Each GOSUB gets 1000 lines (usually it goes by 10s so only 100 lines) and the last line always ends in 999 and is a RETURN. A REM SUBROUTINE means nothing will GOTO in the middle of it.

This way it sort of acts like a traditional function. Still does not have arguments though.

I wonder if there are any companies out there looking for BASIC programmers.

#crpg#ultima#basic

Late 80s, my buddy writes a programme to zoom in on the Mandelbrot set in interpreted GW-BASIC running on a 4.77 MHz Intel 8088 processor. It's glacially slow, hours per picture, but we think it's awesome.

A few months later he gets a floppy disc with a Mandelbrot zoom programme written in hexadecimal machine code and running on a 6 MHz Motorola 68000. It does the same job in seconds.