

Love me a good <MARQUEE>!
I’m a technical kinda guy, doing technical kinda stuff.


Love me a good <MARQUEE>!


Is the ✨sparkly emoji✨ the <BLINK> of the 21st century? Discuss.


I think it’s becoming a play store requirement for apps to use various “notification channels” or whatever it’s called, so hopefully the all or nothing behaviour will disappear in time.
Orrrr as you say apps get totally silenced / uninstalled, I don’t have the patience for that kind of stuff anymore.


But it’s definitely not perfect and tends to add unnecessary changes, I constantly have to review and add new rules.
This is the bit that bugs me. I spend a bit of time to create a relatively simple application in C# with it, and it’s constantly tacking on new features and four extra command line arguments and it’s frothing at the mouth to add Cool Feature X, “just say the word and I’ll do it”.
Just do what I asked. No more. That’s enough. There’s enough mangled code and logic errors lurking in there already, I don’t need any more “features” clouding the water.


And newer versions of Android have notification categories for each app.
So if the developer does their homework I can turn off particular notification types and let others through, and that way you can -gasp!- actually have a messaging app that only notifies you of actual messages, instead of constantly begging for your attention for a bunch of superfluous crap.

And if I go to the notification settings for that app and it doesn’t have a category I can easily drop, it either gets completely silenced, or it gets uninstalled.


Oh lawdy, a budget phone shipping with an OS SEVEN WHOLE MONTHS out of date at time of publication. Will the horrors ever end!?
Quick, someone bring me my fainting chair!


I’ve worked in mines in the desert in South Australia where temps semi regularly hit 46-47 degrees.
It’s OK (ish) because the humidity is low. But you can drink a litre an hour all day (11+ hours) and not need to pee. All that water goes somewhere.
The underground workings are often more dangerous, with lower temperatures but higher humidity. Once wet bulb temps get above 34 degrees underground personnel need to retreat from the area and the only work that can be done there then is work to fix the ventilation.
There’s heat stress meters that measure wet and dry bulb temperatures and airflow, and can basically compute cooling power in watts. Not enough cooling power -> everyone out.


Podcast Addict works well with Android Auto.
Revert to a version of nova launcher from a few years back.
All the features I needed from it were finalised years ago, so why update?
The usual nebulous comments like “bug fixes and performance improvements” in the changelogs isn’t really a strong reason for me.
Considering that some extra trackers were just added in this company’s first release, it doesn’t seem like it’s going to be great.


And then find the app in your installed app list in Google Play and untick “install updates automatically” in the three dot menu.
Maxbotix make robust ultrasonic sensors that range out to 6m, they have a 3/4" pipe fitting on the back for mounting them.
So with that you can get a few lengths of 3/4" pipe and an elbow and have an easy way of mounting it a little ways into your well.
A little on the expensive side but simple to use and easy to weatherproof.


Having a need for a “valid travel document” to cover for your perceived ethnicity stinks of “papers, please” and I am alarmed that you cannot see that connection.


It is a valid travel document for land and sea travel within North America and the Caribbean.
The way you’ve phrased it sounds quite dystopian.


Ugh , once you know how to spot LLM phrasing you see it everywhere.


Are you doing chmod with the recursive option? You could list a few subfolders with “ls -la” and see who owns them and what permissions they have.
It’s also possible that your distribution mounts that drive with fixed permissions that override whatever you’re trying to set. Checking with “mount” and seeing what it spits out for the mount options for that device might give a clue.


Well, they used to be trained on Stack Overflow.
In the future they’ll be trained on all your code, as per the end user licence agreement you clicked through.


Perhaps the pressure difference between a column of fresh water and the equivalent height of salty water is enough to tip the scales.


There is a FreeRTOS option for Arduino which is pretty much the next step when you want to do multitasking.
Basically, you create tasks in your setup routine by pointing to various self contained functions - each function becomes a task - and your “loop” becomes the task that runs when everything else is idle.
Your functions have their own loops so they never exit, and then when you kick-start the tasks the task scheduler in FreeRTOS does all the heavy lifting of timeslicing the various functions so that they all appear to be running at once.
If you share resources, like an I2C bus, you can add locking around it so that tasks that need the resource wait until other tasks are finished with it so you don’t get tasks treading on each other’s toes.
FreeRTOS is in the Arduino libraries so you can just add it to a blank project and then have a play running two tasks at once.
Neither are people. Human “multitasking” is basically fast task switching.
Desktops provide a convenient method of task switching using a flat area and windows, phones have a slightly different method of task switching using full screen panels. Both allow you to focus on the task at hand and switch to another task.