d3VwsX
No user record in our sample, but d3VwsX has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
No user record in our sample, but d3VwsX has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
Pretty sure water was just a teleporter? You may be thinking about the mirror effect? I think that was a kind of a portal effect. You had to make a large empty section behind each mirror that was used by the engine to…
I had to see an eye doctor at the hospital when I was ~7 and I got to do some exercises, but I never learned to cross my eyes, and then it was like it probably wasn't very important since I did not have to go to the…
Sweden had a series of disasters like that in recent years. A few months ago one region tried to switch from their old healthcare system to something delivered by Oracle, but quickly had to roll back to the old system.…
I never bought that excuse for walled-garden consoles, since home computer games continued to do just fine after 1983 without locking down platforms.
The java 4k contest was fun (make a java applet game that is at most a 4096 bytes JAR, including all assets the game needs). Unfortunately I only discovered it shortly before it shut down (when no browsers supported…
I never was a big fan of Lua and that was something that kept me from looking closer at Löve, but a few months ago I discovered fennel (Lisp-like that transpiles to Lua) and that you can use that to write Löve games.…
Yes, https://www.love2d.org/ has links to both iOS and Android SDKs. For Android you can also install the stand-alone LÖVE Loader app that can open .love files to play. Some games on itch.io comes with a .love-download…
I am not sure in what way the state described is immutable at all? It just seems like mutable state hidden behind some access methods?
If I understand the distinction correctly, I run llamafile as a backend. I start it with the filename of a model on the command-line (might need a -M flag or something) and it will start up a chat-prompt for interaction…
I have a somewhat common firstname.lastname@gmail.com and others with the same name use it pretty often. Surprisingly often it seems as if sites allow accounts to exist without email confirmation. I estimate at least…
My personal observation, even if this is similar to what others already said: I found that in some (two? three?) big Java-based projects I worked on, where almost everyone used a IDE, the codebase became almost…
There is a mention of the Glitch assets, but I did not see any link? Looks like this is a good place to look: https://archive.org/details/glitch-public-domain-game-art I remember downloading everything when it was…
That is why I mentioned DOSBox. That is just one possibility, but probably currently the best one. DOS(Box) remains a fixed, known, target. Windows, even if it has impressive backwards compatibility, breaks older games…
Alley Cat was one of very few old PC games that ran at a fixed speed, making it playable on higher end later PCs without having to use tools like MOSLO. Too bad the new version was not completed for MS-DOS. If it was it…
I searched boardgamegeek for games published in 1929. The only thing that grabbed my attention was Shambattle, the first published American miniatures wargame. It is an early, possibly the first, modern miniature…
Two 16-bit numbers could be combined to form a 32-bit pointer. Used as segment<<4+offset they just form a 20-bit pointer. Feels like wasting 12 bits to me.
To keep things simple maybe just handle that using emulator save-states instead?
A bit confused by the goto and skip instructions. Why multiply by 4 in one, but not the other? Sounds reasonable that both keep the target address a valid instruction pointer (aligned to 4 words)? Adding two words to…
I read an article about humanoid robots yesterday and it scared me that it seemed like the expectation is still that the robot will be 24/7 online and "thinking" using some cloud brain. The current models described more…
Ctrl-w and ctrl-u in a default emacs do not even do the same things as in readline. C-w is (usually) kill-region (similar to what most editors call "cut"). C-u is universal-argument, that is used as a prefix for other…
There is a workaround I saw used by wcd, a tool for changing directories. To install it you have to add a wrapper function in your shell that executes the actual wcd binary, and after possibly interacting with the user…
Some applications print usage information (e.g. with --help flag) to stderr. That is a bit annoying when there is a lot of output and I just want to grep for some flag, since the first attempt will fail and then I have…
Some nice things have been introduced to Sweden, definitely, but unfortunately also garlic+onion has gone completely out of control. For instance going to France or Greece or India, countries known for their garlic, and…
I can not find any recent updates, but this one (from 29/11, in Swedish) mentions ongoing discussions with China making progress on reaching an agreement to allow the Swedish navy to board the ship:…
You could use Godot (has a nice set of GUI widgets in addition to the game-specific stuff) or Lazarus (Free Pascal IDE) for instance. I did not use Lazarus much, but Free Pascal as a compiler and the language is nice…