• 0 Posts
  • 17 Comments
Joined 1 year ago
cake
Cake day: June 3rd, 2025

help-circle

  • I hope you’re still around!

    I often play Apple Music on my car, where the phone (17 pro, 26.5.1) is connected through Bluetooth. However, every time one song is playing and another one gets added to the playlist, the Bluetooth playback is interrupted for a tiny bit (around half a second?), and continues afterwards. The same happens when the songs are already added in a playlist, and the automix feature starts mixing the next song, or starts analyzing the next song (?) (around halfway through each song). It’s pretty annoying because it interrupts the playing song, while an extra second in between songs would be much less of an issue.


  • Have a look at DietPi. That is a single-board-computer optimized Linux distribution that, in contradiction to what the name might suggest, runs on (almost) all of the SBC’s out there. It has stripped away all the things you don’t need and only installs and loads what is needed to run the software you choose, resulting in a very lightweight but powerful operating system for these kinds of devices. It has its own software catalog with a broad selection of optimized software, but you can of course install anything you want. Ive been running this on a Raxda Rock4 without any problems, and would definitely suggest this even on a Raspberry over the regular Pi image.


  • As much as I appreciate your honesty in this, I only think you’ll be shooting yourself in the foot. Your website is a tool that serves a purpose: to let people find your business and turn them into customers. And in order to know how useful this tool is, you want to have some insights in how much people visit the website, how long they are browsing each page, what pages are read more than others, and so on. Also, you want to know where people come from in your website: do they come from search engines (with what keywords?), or are they clicking through from your social channels? Once you know, you can optimize your marketing materials (including social posts, website content) for your actual target audience.

    In stead of not using tracking at all, I would suggest to use anonymized tracking. This gives you enough information to measure effectiveness, without compromising the individual’s privacy. European GDPR requires this, so all tracking tools should have GDPR-compliant options. Also, if you inform your users that you use anonymized tracking, you can show that you’re doing the best you can to protect their privacy as well. Last but not least, (almost) every single site on the World Wide Web tracks their users anyway, so they will likely have been tracked multiple times anyway on their path to your website.






  • Dutch books (for children) use the ‘AVI’ system to indicate the reading level. The system is structured: the higher the level, the more difficult the vocabulary in the book. The levels are:

    • avi s/start (learning to read)
    • avi m3 (reading level required in the middle of 3rd grade)
    • avi e3 (reading level required in the end of 3rd grade)
    • avi m4
    • avi e4
    • avi m7
    • avi e7
    • avi p/plus (reading level required in 8th grade, end of primary school)

    For comparison, this is what Avi start looks like, the left page is written on average e5 level.

    I don’t know if you are located in the Netherlands, if so, the libraries have dedicated sections for each of the Avi-levels, the librarians can show you where to find them. Also online you can find many lists of recommended books for each Avi level. Once you are comfortable with one level, move up to the next level until you have reached the end. By the time you are comfortable with e7 or plus, you can safely grab any other book you can find!








  • When working with web components, you will likely also end up with dependencies that you’ll install using npm (eg lit itself). Theoretically, the same supply chain attack can still happen this way and thus introduce malicious code in the web components JavaScript, see for example this article (first search result)

    You could write your own ui-library using whatever technique you deem to be safe, or you can stand on the shoulders of giants and start with a readily available one and adjust as needed. Security-wise I thinking would be better to ensure the frontend and backend are separate projects/applications that could (theoretically) be deployed on different machines and still exchange the necessary information through an api, so you’ll know that even if something happens on one end, the other wouldn’t necessarily be affected as well.