For the best experience on desktop, install the Chrome extension to track your reading on news.ycombinator.com
Hacker Newsnew | past | comments | ask | show | jobs | submit | history | more stephankoelle's commentsregister

Podman is really a nice piece of software, we are using it successfully on debinan 10.


By accident I bought: Conquests of the Longbow: The Legend of Robin Hood [ https://en.wikipedia.org/wiki/Conquests_of_the_Longbow:_The_... ]

Didn't know what "an adventure game" is, at that time. So many good memories.

What a great game.


My perception has always been that that game was under-appreciated. Nice to run into a fellow appreciator. I think it's also the only DRM[0] I've ever encountered that was a genuine pleasure to use (not that it would work today).

[0] - Conquests of the Longbow required you to use the book that came with it to look up lore like coats of arms, to identify plants by their leaves, find out about superstitions around gemstones, etc in order to solve the puzzles in the game. At the time, people generally pirated by passing around floppy disks, none of the kids pirating had access to xerox machines, and the information in the manual was obscure, so you really kinda needed to have the manual. But if you did have it, it almost felt like a natural part of the game, and the information was fun to learn. Of course, now you can easily find it online: http://www.sierrahelp.com/Documents/Manuals/Conquests_of_the...


The BBC game Exile had a "novella" that came with it - the story of how things came to be before the player arrives. The copy protection had you look up a page number, line number, word number to proceed. Fun stuff. (I just found the text! http://inventivity.co.uk/exileami/novella.htm) (And the game! http://bbcmicro.co.uk//jsbeeb/play.php?autoboot&disc=http://...)

In fact, how they squeezed what they did out of the BBC B is amazing.


I definitely encountered other games for which you had to look up stuff in the manual, and maybe it wasn't done as well because I always hated it.


I enjoyed it for Ultima VII, where the manual was written as a holy book / biography of the main religious figure (antagonist) of the setting. You needed to answer questions from the book to be allowed out of the starting town.


I think in King's Quest it was looking up some specific code word in a random grid or something, before it would let you launch a boat?


King's Quest 5's copy protection (floppy version only) was enforced with a requirement to use a magic wand to cast a "spell" at various points in the game, where the "spell" is a series of letters that the player matches to symbols in the printed manual. Launching the boat was one of the points in the game where this was required.

https://kingsquest.fandom.com/wiki/Crispin%27s_wand#Behind_t...


Yup, CotL was uniquely well done.


Wing Commander made you look up ship schematics to answer trivia. I was maybe 10 years old and got a copy from the son of a family friend but he only gave me photocopies of a few of the pages, so it sometimes took a while before I could get in!


Loved that part too, was really confusing at first, because I was not aware that the manual might have a use at all. I think the files are on the game creators webpage, there was even a photo of her at the back of the box.


Some people might not be aware that dolphin is pretty good split window file manager.


I have to agree. As a heavy user of Total Commander and fighting the Krusader as well as Double Commander clones for some time, I switched to Dolphin after setting up a KDE-based Linux distribution. Its been years, since I did it the last time and I was quite reluctant. But it worked out much better than I thought in the beginning.


It's not allowed to keep state of the user without asking (under GDPR). No technical hack changes that, no not even an SPA or running a webpage in an iframe. If you have state for one purpose, you are not allowed to share state for another purpose.

I know that's bad. I don't know how many things we are used to should work in such en environment, where users are trained to NOT consent to anything, cause consent is only needed for bad things they do NOT want.

You are event not allowed to tell a user: this will not work without consent.

I'm perplexed how any complex thing should work.


> It's not allowed to keep state of the user without asking (under GDPR). Why would that be? The GDPR only covers personally identifiable data, a todo list that stores everything in local storage can keep state without any problems. You can store things like language settings, dark mode theme, etc. perfectly fine.

You can also use state for multiple purposes as long as you clearly list and identify those beforehand. You can't gather personal data and then suddenly sell or analyze it if you didn't tell your customers you'd be doing that with data. However, saying "we use this email address for (a) sending you news letters (b) letting you recover your password" is perfectly fine.

From my reading of the GDPR, you can even gather personal data without explicit informed consent if the data is absolutely necessary for your system to work. You do need to provide ways to update, delete or obtain all information in human-readable form, but explicit consent for something that anyone can understand is absolutely required for the thing to work can be collected. You can keep track of the contents of a shopping cart on a web shop, for example, but you can't submit the contents of that cart to your analytics backend without consent. You can, however, track the cart contents in your backend and link it to the users' account; only when you start processing the data in a way not strictly necessary will you need the user to provide informed consent.

The problem with GDPR is that most people encounter it in the form of tracking cookies and advertising, both of which are not absolutely necessary for any application to work, which is why they need informed consent. People think all cookies are now banned until further notice and that the mere existence of a database is now punishable by law, which is not the case. GDPR sucks, but only if you're in the business of collecting a lot of extraneous information about your customers and/or selling it (through analytics or ads, for example). Which, in my opinion, is a good thing.


> The GDPR only covers personally identifiable data

some data protection officers think any two linked clicks are personally identifiable.

If have read the full cookie ruling, in some passages it's about "saving" (in all senses) any data without consent - yes it sometimes talks about personally identifiable but the "saving" part doesn't care.

To be clear, I don't think that, but it's hard to make our service comply if the customers (think webshop) data protection officers follows that semi official guideline


GDPR is about personal data. A user name (not an email) and a password are not personal data so their not in the domain of GDPR. A cart full of products is not personal data. It becomes personal data when we add a street address for delivery, an email or phone number for sending alerts, a credit card number for payment. However if delivery is to a PO Box (or an Amazon locker) and the credit card and customer name never touch the ecommerce site (a third party authorizes the transaction), then a fully anonymous ecommerce becomes possible. No GDPR and yet it keeps state and tracks orders.


> It's not allowed to keep state of the user without asking

I don't think this claim is correct. GDPR requires complete transparency with how personal data is used and stored. Asking for permission just happens to be the safest/laziest way to be compliant.


What's a way to get consent without asking?


There's no way to get consent without asking (informed, freely given, opt-in affirmative action) but consent is just one of the paragraphs that give a legal basis for processing private data - it's legitimate to use data that's needed to fulfil the contract (e.g. the adress to deliver goods), comply with legal obligations (e.g. KYC in banking), for legitimate interests that don't conflict with freedoms of the user, for public interest (e.g. news reporting), etc (see Article 6 https://gdpr-info.eu/art-6-gdpr/), and all these use cases can be carried out without the user's consent. However, in some cases where the data processor could assert some other basis for processing, it may be simpler to just ask for consent.

But for the particular case of sharing data with thousands of third parties so that they can use it to target ads, consent seems to be the only one that applies. Direct marketing is one of the very few use cases explicitly listed in the GDPR, e.g. in the 21.2 'the right to object' - "Where personal data are processed for direct marketing purposes, the data subject shall have the right to object at any time to processing of personal data concerning him or her for such marketing, which includes profiling to the extent that it is related to such direct marketing."


You realize that's an un-question, right? It doesn't even parse out.

You can't have consent without the assumption that there is a choice to be made, and that the choice is not yours to make, and that the one giving consent is aware of the choice. Anything with the characteristic of producing an implied voluntary choice without the chooser being aware the choice is being made is very specifically not consent.


Sure, possibly with a contract signed before using the web service. Example: I sign a contract with a utility, maybe on paper in a shop in a mall, then I use their website to check my bills. If that's included in the contract I don't have to give consent again in the website.


> It's not allowed to keep state of the user without asking (under GDPR).

False. You're not allowed to store data about the user for any amount of time longer than is required to provide the session/service.

Session cookies are explicitly allowed without consent. Even though many cookie consent popups imply that they are not ("cookies are required for this site to function"), that is a lie by the adtech industry (and ignorant webdevelopers).

Remember: They are NOT asking for permission to store session cookies--they don't need it. Every cookie consent popup is literally asking for permission to share tracking data with third parties. Even if they word it obscurely.


If they only had reasonable pricing


Can confirm, europe was up until then


pal never had them


So was there an Nintendo in PAL format?

(PAL tvs had 100 more lines and refreshed a little lower 25, vs NTSC's 30 frames per second)

Seems like it would be a pain to make that work. Knowing the pain of PAL <-> NTSC tv conversion.


The NES (and most early consoles) ran at 50/60fps, not 25/30fps. It achieved this by ignoring the PAL/NTSC spec and sending all the fields at the same polarity instead of alternating odd/even fields. This halves the resolution but gives you double framerate progressive scan video, which is a good tradeoff for games.


The traditional game console solution for PAL consoles was to just have letterboxing with the extra 100 lines blank, with everything vertically squashed a little. Games usually didn't compensate for the lower framerate, so just ran slower.

PAL console gaming was a GREAT experience, as you can imagine.

Things got better from the Dreamcast onwards as they could software switch to 525 line / 60Hz modes (usually with PAL encoded colour for composite video, except for the PS2 which used pure NTSC), and it's all now moot with HD.


Not all moot with HD; we have new and exciting problems! Now we have issues with poor-quality cables not being able to negotiate 4K 60hz 4:4:4 chroma, the Vizio 2016 P series negotiating 4:4:4 but actually doing 4:2:2 internally ( https://hardforum.com/threads/2016-vizio-p-series.1896948/ // http://www.rtings.com/tv/reviews/vizio/p-series-2016 if you're curious , there is also a long thread on AVSForum), etc. Good times.


Here's a comparision of Super Mario Bros 1 NTSC vs PAL.

https://www.youtube.com/watch?v=mUI5xFEW_tg

They show more graphics at the top and bottom, probably nothing that affects actual gameplay, but it's nice it's not just black regions.


It's probably better to emulate NTCS as PAL games very often ran slower when compared to the NTSC versions of the same game.


Pretty hard to translate, most jokes are lost in translation.


I wonder if this works on aws lambda?


In '97 they sold 500 Mhz PC (Alpha CPU) with 64 MByte RAM für about 7000 DM (Windows NT had Alpha Support)


Consider applying for YC's Summer 2026 batch! Applications are open till May 4

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search:

HN For You