I ported thousands of apps to Windows 95 [video]
1–10 of 27 posts
Re: I ported thousands of apps to Windows 95 [video]
#2The technical content is really engaging (the "joy"/"frustration" of digging in some ancient technology for no easily justifiable reason--though in this case...) and there's been a heap of work put into merging the technical deep dive with a cinematic narrative that helps communicate some of the experience of what it feels like when you're three days in trying to find a piece of a puzzle someone probably hasn't cared about in 20+ years. :)
Re: I ported thousands of apps to Windows 95 [video]
#3Re: I ported thousands of apps to Windows 95 [video]
#4At first I thought no way I'm going to spend almost an hour watching this, but I'm happy I did it haha.
There are many funny gems, like that whiteboard analysis at https://youtu.be/CTUMNtKQLl8?t=2343
Re: I ported thousands of apps to Windows 95 [video]
#5Re: I ported thousands of apps to Windows 95 [video]
#6This is a great video, with a cool technical story that is well told. Too bad it didn’t make the front page!
Re: I ported thousands of apps to Windows 95 [video]
#7Re: I ported thousands of apps to Windows 95 [video]
#8Re: I ported thousands of apps to Windows 95 [video]
#9 // Reimplemented
LONG WINAPI CORKEL32_InterlockedCompareExchange(LONG *dest, LONG xchg, LONG compare)
{
LONG temp = *dest;
Trace(TRACE_FORCE_DONT_PRINT, "InterlockedCompareExchange");
if (compare == *dest) {
*dest = xchg;
}
return temp;
}
Not very interlocked at all :)