Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)MY
Posts
2
Comments
152
Joined
2 yr. ago

  • Same as others, convenience. You can entirely live without it, but after some learning curve it's not much to maintain.

    I've got opening sensors on all doors and windows so my heating turns off if something is open for a few minutes.

    I've got a dark hallway with some movement sensors and smart bulbs so the lights can turn on when someone walks there, with the lights being dimmed if it's late at night or not turning on if it's super late or the luminosity sensor considers it already usable (e.g. on sunny days when there's enough light bleeding in)

    I've got smart bulbs in most rooms we use a lot which change the color temperature from warm to cold to warm over the course of the day depending on the sun position/time (it's a dark country, we often need lights even during the day, especially during winter)

    All in all, for me it was definitely worth the price and the investment, I'd not want to go back to not having them but I imagine for someone who hasn't experienced it, it might seem superfluous or gimmicky.

  • Another option you could consider is rather than running the VPN on the pi and downloading through that, to run the VPN on your media server as you planned and instead use the pi (or your router if you can run openwrt) as the remote access point. Then you only need to worry about the performance needed for remote access

    I'm not sure how tailscale works, but this is what I do with zerotier (i.e. run it on my router).

  • I definitely agree that the situation as it is is unacceptable, no 1 country should have so much power over the entire EU. As a Hungarian, I think it's incredibly shameful how much damage fidesz causes even outside the country.

    I think it'd be better to remove the unlimited veto's from the EU though (which would obviously not happen as it'd be veto'd sadly). Hungary has been the bad guy for some years, but don't forget that other countries do use their veto powers in a similar fashion, just so happens that recently they were more aligned (e.g. Russia bad)

    I wish the EU had a way to enforce that a country follows basic democratic rules after joining too, e.g. free media. I hope they find a way to support Ukraine without giving Hungary with this corrupt government.

  • Everyone is free to vote, but there has been 10+ years of unbound propaganda since fidesz first won a super majority and basically centralised what the news broadcasts say in the country, controlled by a government appointed agency.

    The country is also full of massive government funded billboards with propaganda, blaming the EU for every bad thing and praising Orbán for protecting Hungary.

    Unfortunately these 2 work incredibly well on the majority of the population in the countryside, elderly people and everyone else who primarily get their information from TV and radio, most of whom don't speak English to even check foreign sources even if they wanted to.

    I'm not sure if ejecting Hungary would "fix" the issue, but I also don't know what could be done at this point to get the country back on track. It'd be nice to maybe require more like a 90% support for motions to carry in the EU rather than a tiny country like Hungary being able to hold the entire continent hostage.

    http://medialaws.ceu.hu/public_service_media_more.html https://rsf.org/en/hungary-s-sovereignty-law-viktor-orban-s-new-dangerous-provocation-targeting-independent-media

  • OpenAI chief scientist Ilya Sutskever, who reportedly led the push to remove Altman, noted on X (formerly Twitter) that he had some regrets about the weekend of chaos inside OpenAI. “I deeply regret my participation in the board’s actions. I never intended to harm OpenAI,” said Sutskever. “I love everything we’ve built together and I will do everything I can to reunite the company.” Bizarrely, Sutskever’s name is on the list of resignations, too.

    "I'll do anything to reunite the company... in Microsoft."

  • I understand that, but just because I'm capable of working with a less friendly system doesn't mean it's a good thing. If anything I'd still list it as a negative aspect that it requires more knowledge and research.

    If there was a question with an answer like "I'm looking for a challenge" it'd make sense that it's listed as a positive.

  • It's worth listening to their podcast (fake doctors real friends). Zach and Donald rewatch it episode by episode and talk about the background of it. They also have a lot of other cast members as guests.

    Lots of fun trivia in there.

  • I think I understood what you were suggesting: try disabling the script tags one by one on a website until either we tried them all or we got through the paywall.

    My point is that it's very unlikely to be feasible on most modern websites.

    I mention files because very few bits of functionality tend to be inline scripts these days, 90-95% of JavaScript will be loaded from separate .js files the script tags reference.

    In modern webapps the JavaScript usually goes through some sort of build system, like webpack, which does a number of things but the important one for this case is that it re-structures how the code is distributed into .js files which are referenced from script tags in the html. This makes it very difficult to explicitly target a specific bit of functionality to be disabled, since the code for paywall is likely loaded from the same file as a hundred other bits of code which make other features work - hence my point that the sites would actively have to go out of their way to make their build process separate their paywall code from other bits of functionality in their codebase, which is probably not something they would do.

    On top of this, the same build system may output differently named files after the build since they're often named after some hashing of the content, so if any code changes in any of the sources the output file name changes as well in an unpredictable way. This would likely be a much smaller issue since I can't imagine them actively working on all parts of their codebase all the time.

    Lastly, if the way a website works is that it loads the content and then some JavaScript hides it behind a paywall then it's much simpler to either hide the elements in front of it or make the content visible again just by using CSS and HTML - i.e. the way adblockers remove the entire ad element from the pages.

  • It would only work if they specifically bundle the functions which cause the paywall in a separate file (it is very unlikely for this to be the case), and also relies on the assumption that the paywall is entirely front-end side, as well as the "default" content to be without paywall (as opposed to the default content being paywalled and requiring JavaScript to load the actual content).