

In my nearly half century on this planet and having dealt with many a drug dealer in my younger days, absolutely none of them have been this pushy 😆
I’m beautiful and tough like a diamond…or beef jerky in a ball gown.


In my nearly half century on this planet and having dealt with many a drug dealer in my younger days, absolutely none of them have been this pushy 😆


“Does it piss you off when Google/whatever does [blank]? Yeah, me too. So I run my own versions to not have to deal with that crap. Would you like me to set you up an account on my stuff?”


Best I can offer is https://github.com/searxng/searxng
I run it at home and have configured it as the default search engine in all my browsers.


At best, it’s JARVIS from Iron Man 3 when he went all buggy and crashed Tony in the boondocks. lol
A database can be used to plug into any number of applications that run on top of it as well as be easily shared by multiple people and centrally backed up. Auditing, logging, and row and table level access controls, and other measures can be easily added.
Excel files (or even MS Access files) as “databases” are often just people emailing around a file or accessing it from a shared drive. You end up with a split-brain situation at best and at worst you’re dealing with constant file corruption from multiple people thinking they can access it from a shared drive at the same time.
Then you get vendor lock in and are forced to keep MS Office professional licenses because Shawn created some stupid Access “app” 10 years ago which is “THE DATABASE” and no one understands how it works.


To me it is the ultimate gamble with one’s own thought autonomy, and an abandonment of truth in favor of false comfort.
So, like church? lol
No wonder there’s so much worrying overlap between religion and AI.


I’m about that same age but am so glad we’ve largely abandoned the “www” for websites.
On my personal project website, I have a custom listener setup to redirect people to “aarp.org” if they enter it with “www” instead of just the base domain. 😆
server {
    listen              443 ssl;
    http2		        on;
    server_name         www.mydomain.xyz;
    ssl_certificate     /etc/letsencrypt/live/mydomain.xyz/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/mydomain.xyz/privkey.pem;
    ssl_dhparam         /etc/nginx/conf.d/tls/shared/dhparam.pem;
    ssl_protocols       TLSv1.2 TLSv1.3;
    ssl_session_cache   shared:SSL:10m;
    ssl_session_timeout 15m;
  
    ...
    
    location ~* {
      return 301 https://aarp.org/;
    }
}


The only one I didn’t hate was the jingle:
🎵 "F-R-E-E that spells "free"
credit report dot com, baby". 🎵
😆


Yeah, but they should take that pissing contest out of the UX.


I was an adult during that time, and I don’t recall it being anywhere near as annoying. Well, except the TV and radio adverts spelling at you like “…or visit our website at double-you double-you double-you dot Company dot com. Again, that’s double-you double-you double-you dot C-O-M-P-A-N-Y dot com.”
YMMV, but it didn’t get annoying until apps entered the picture and the only way to deal with certain companies was through their app. That, of if they did offer comparable capabilities on their website but kept a persistent banner pushing you toward their app.


My X1 Carbon does now. But it used to drain to empty after a day or two even if it was turned all the way off. Drove me crazy.
The problem ended up being the always-on USB setting in the BIOS. For some reason, even with nothing connected, that would drain the battery until it was completely flat. Once I turned that off, it’ll sleep for weeks like you said.
OP, maybe check the BIOS settings for “Always on USB” or similar and disable that?


Not that I’d own a smart fridge, but if I did and they started shoving ads on it, it’d look like this later that day:



I predate both of those events by multiple decades lol.
Printers were well established even on the Trash-80 I grew up with. The bloatware drivers aren’t really what I’m talking about. I suppose Clippy could be considered prior art to the whole “shoving AI in your face” but at the time I was a WordPerfect fanboy.


I learned a long time ago to never install manufacturer printer drivers.  Or, at least, never install them from the provided Setup.exe.
They’ve always installed a bunch of bloatware (HP has always been the worst but other brands are just as bad).
If you look in the setup folder, there’s usually the raw drivers you can install from Device Manager.  If the driver package is just a single .exe file, you can usually unpack it with 7zip and get at its inner contents.
If that fails, the system-included HP LaserJet 4200 PCL driver is about as close to a universal print driver as you can find lol.


Been playing with a Raspberry Pi Zero clone (Orange Pi Zero 2W) to make a portable travel router + app server + party box + development environment. Basically seeing what all I can cram into four 1.5 GHz cores and 4 GB of RAM in a Pi Zero form factor.
Its primary upstream is wifi (but can use ethernet or USB tethering with some reconfiguring) and also presents an access point. AP, ethernet, and USB ethernet gadget interfaces are bridged into the “LAN” segment.
Has multiple VPNs (one for privacy and one for connecting to my internal stack), PiHole for DHCP services and ad blocking, PairDrop for sharing files, CodeServer for development, MPD and Snapcast for listening to music (plus another Pi Zero to act as a satellite speaker), Kiwix with the full 120 GB dump of Wikipedia and pretty much every dev doc I could load, Calibre Web with most of my book collection loaded, and Searx-NG to provide a portable search engine that’s not infested with AI and SEO slop.
It’s also running Nginx with real Let’s Encrypt certs so all the web apps it hosts are properly running behind HTTPS.
Still working out some kinks / hardware quirks and don’t have the scripting automation complete to cast from Bluetooth to Snapcast server, but that does work on the bench.
I call it the “Quirky Turkey”.





I think the point of 11h is to achieve that kind of range without directional antennas. Basically as a higher-bandwidth version of LoRa.


Very nice. Could definitely use that. I’ve got the same Ender as pictured, so def seems worth $10 and would pay for itself using up the tiny leftover bits on various rolls i have.


What’s the benefit? Does it pause the print to let you swap filament? I’ve often wondered what to do with the last bit of filament on the roll that isn’t enough to do much of a print, and if so, that seems like it would help.


15 posts for a 3hr old account. Slow your roll, Louna.
Yes. That’s to say they can be either depending on how the ROM was built. All of the GSI ROM builders I’ve worked with usually have multiple releases of the same build with different configurations: root, no root, with Google services (often MicroG), without Google services, combinations of both, etc.
To my understanding, GSI ROMs are basically just the “userland” portion of a full ROM. Basically they use the stock/existing kernel, drivers, etc but replace the rest of the system that runs on top of it. If memory serves, they’re possible due to Project Treble. Sadly, they still require an unlocked bootloader to install, so they’re not a total fix-all.
They’re also very generic generic images (hence the “G” in the term). They’re not optimized for any specific device and can be hit-or-miss feature wise depending on the device. If you’re already reading about a specific device on XDA forums, then you’ll probably be able to see what works and what doesn’t.
TL;DR: Running a GSI ROM is like upgrading to a newer Linux distro but without upgrading the kernel.