• 2 Posts
  • 11 Comments
Joined 11 months ago
cake
Cake day: July 28th, 2023

help-circle





  • Should’ve probably included where I’m from, that being Europe, more specifically Finland. As far as I know our index for inflation (HICP) sourced from ECB hasn’t so far taken into account OOHC (owner-occupied housing cost) and has focused more on rents and other costs of living. Proposed roadmaps for changing the official indices would back this understanding, unless I’m interpreting something very incorrectly.

    There’s some rent controls in place in most European countries, so rents aren’t tightly coupled with house prices in many locations. As such, for specific dwellings it can often be cheaper to rent than to own, since rent increases are regulated at least a bit, but cost to purchase the unit altogether is not. In many more expensive cities there’s also the issue of units not being available to rent, since the rents don’t directly reflect the market value of the rented unit.

    Though including OOHC to the calculations will cause some difficulties when you take into account more rural areas, where the value of housing can not only go down, but actually be negative. In rural Finland there are cases where you can actually be paid to get a whole apartment complex out of someone’s hands, since the costs outweigh whatever rent you can get out of the place. People are opening shell companies and selling stock in an apartment complex (a peculiarity of the local system called limited liability housing companies, or asunto-osakeyhtiö) to them at a loss, to get rid of paying for upkeep.





  • If you’re using powdered detergent, make sure yours doesn’t have zeolite as the water softening agent. It will deposit in the machine, and starts eventually covering the fabrics with a talcum-like powdery substance. It gets especially bad if you either have to use a lot of detergent because of hard water, or are overusing the detergent.

    Zeolite was brought in to replace phosphates due to environmental concerns, but it has its own problems with the washing results.

    One other thing that often ruins the freshness of clothes for me is overly scented/perfumed detergent. The smell can get quite overwhelming, and contribute to a chemical-y smell and feel.


  • Just in case someone misreads this, add the vinegar as the softener, so it’s not in the first load that contains the detergent. The detergent is a base, and relies upon that fact to get rid of some of the stains, and vinegar as an acid will neutralize that. Vinegar is meant to be in the rinse cycle when washing laundry, where it can help get rid of any extra detergent by neutralizing it and do any other magic it does.

    Also, though I don’t usually encounter them often, do note that vinegar can wash away zinc and silver oxides used for some sterile clothing, and can supposedly damage lyocell.

    But overall I second these suggestions. Most times the amounts listed for detergent are far too big, and you can often get by with less.


  • And we’ve nowadays taken it even further, in spoken Finnish we’ve even got rid of the “hän” and mostly use “se”, which is the Finnish word for “it”. The same pronoun is used for people in all forms, animals, items, institutions and so on, and in practice the only case for “hän” is people trying to remind others they consider their pets human.

    Context will tell which one it is.


  • My best guess is the dates on which the feature was added, which can also be seen on CanIUse. Firefox added OPFS support in March this year, and much of the userbase (AFAIK e.g. Firefox ESR) is still lacking the feature – in any case it’s a very recent change on Firefox. However, webkit/Safari has had OPFS for over two years by now. I was personally unaware of the support having been added to Firefox as well, last time I checked the discussion they told they weren’t going to implement the API.

    By no means is this an acceptable excuse in my opinion, this kind of check should always be done by checking the existence of the feature, not the UA string. Though it might be that the check is still performed in the correct way as Safari users stuck on older version are also encountering the issue. But if they’re fine with using OPFS, where you need to export the files separately to access them outside the browser context (as the storage is private), there’s no reason to complain about recent Firefox versions that support this feature.

    But, the same point still stands, kind of. The main underlying problem is Google forcing new standards through Chromium, without waiting for industry consensus and a proper standard. Then, as 80% of the userbase already has the feature everyone else is forced to get on board. I still don’t really see Adobe as the main culprit here, despite the apparent incompetence in writing compatibility checks, but Google with their monopolistic practices with the Chromium project. Adobe isn’t innocent and has done the industry a lot of harm in the form of being one of the original pushers of subscription software, but I don’t think this instance should be attributed to malice rather than incompetence.

    Edit: So, a bit of additional advice for someone trying to get this to work: in case the UA spoofing doesn’t help, check the Firefox version in use – it has to be 111 or newer, as 111 was the release where File System API support was added. Firefox ESR probably doesn’t have it available. Also check that FS API / OPFS doesn’t need to be enabled through some flag or configuration parameter, and that it’s not blocked by some plugin.


  • Well, in this case it might even be a technological limitation, which can be solved with a workaround but leads to a poor user experience.

    Firefox, for security reasons, doesn’t allow opening local files for writing. That means, it’s not possible to make a web application that can autosave to your machine after you open a file, meaning you have to download a new version of the file every time you save. You can get around this issue by importing the files in question to the browser’s local storage, or by using cloud storage via an API, but local saving is a feature that people have come to expect and missing it will lead to complaints from the users.

    The missing API is called File System Access API and has been available on Chrome for years. I’ve personally had to write my web apps around this limitation multiple times, since I want to support Firefox. By no means is this a valid reason to exclude Firefox in my opinion, but I can also easily see why a company would want to not bother with user feedback on ctrl+s not working in their web application.