window.onload = function() {
var images = document.getElementsByTagName('img');
for (var i = 0; i < images.length; i++) {
var image = images[i];
if (image.alt.length === 0) {
continue;
}
image.parentNode.classList.add("imagelink");
var altText = document.createElement('p');
altText.textContent = "🌐 " + image.alt;
image.parentNode.insertBefore(altText, image.nextSibling);
}
};
</script>
Back to overview
Retro Coding Like It's 1999: My Journey into creating a Palm OS MiniGolf Game
Gameplay video
Level Creation video
Game download and in-browser emulator
The Palm OS Programmer Companion (part of the Palm OS SDK)
Palm OS Programming Bible
Captain's MiniGolf source code
@rxpz@social.linux.pizza
Back to the overview
📰 Subscribe to RSS feed 📰
text/html; charset=utf-8
This content has been proxied by September (ba2dc).