

Link(s) in post contain punctuation and break, at least on my client. Here’s the codeberg link (working);


Link(s) in post contain punctuation and break, at least on my client. Here’s the codeberg link (working);


https://www.superbowl-ads.com/1997-tabasco-mosquito/
Best ad ever IMHO (sorry for funky link, YouTube if you prefer).
No dialog, no rampant consumerism (hot sauce is a necessary food), no sex/sexism, no emotional manipulation.


From link:
NOTE: The script is broken, DO NOT ATTEMPT TO USE THE SCRIPT NOW. Attempting to run it may get your account flagged stopping you from trying face verification either temporarily or permanently, forcing you to use your ID.


Well f2k me, T1L, t4s!


Or, malicious compliance by someone with a moral compass. Best is to somehow leak documents wholesale. But if that’s not possible, I think the next best way to all but guarantee that the information gets out is to do a lousy job censoring, and let “The Internet” do the rest. It also makes the administration look even more stupid, especially in the eyes of technically minded folks.
But yeah, not the best and brightest, that’s certainly a possibility.


Yeah, good point. The “app setup” is built into android and iOS as far as I can tell (generating matter credentials, etc.). Better than 3rd party IMHO but not ideal, and a nonstarter for a lot of folks. Hopefully HA will come out with their own onboarding process at some point.


Fair enough; I have a dedicated SSID which is VLAN’d off from the rest of my network with no Internet access. Only my HA server can talk to those devices.


+1 for ThirdReality. They’re a little pricey but I’ve generally had good luck with them.
I’ve also had pretty good luck with cheap Matter-over-wifi bulbs. Pairing them can be a little finicky and needs to go through an Android or iOS process, but after pairing you can block Internet access for them and they work great local-only.
There’s a bug in some wifi matter bulbs where they crash, especially when going from off to a desired brightness/color state (as in, “light on” works but “light to 50%, 3000K” will crash the bulb).


I don’t think you understand what local control of smart devices means…


I would probably add “transmit power” in there somewhere, but I guess if you’re assuming regulatory limits then it’s not a big variable.


Lots of local-only options out there for security cameras. Doorbell cameras may be a little harder to find, but it looks like they exist.
I have a few Amcrest PoE bullet cameras, and they work great local-only. They’re on a separate VLAN, only my server can talk to them, and I have had zero problems with them. They even support NTP, which my router provides, so the clocks stay synced with no intervention. I’m running them with Frigate.


Not sure how serious your comment is, but I could certainly imagine Microsoft introducing new dependencies/hooks/all-executables-must-support-copilot, etc., that break compatibility faster than Wine can keep up. Glad to hear that’s not the case!
For old stuff though…yeah, I’d hope it’s not moving backwards :)


VNC? You have your choice of servers, and clients are ubiquitous.
A big gotcha is that you need to be careful with encryption/security, as in classic UNIX style VNC does one thing (remote desktops). It’s easy to forward over ssh though.
You can also use VNC to share, which is not what you want; this depends on the type of server/settings. But you can definitely create a new virtual X11 session and access it remotely.


200MWh is about 1/100 of Little Boy, the atomic bomb dropped on Hiroshima.
Compressed air can get out all at once given the right circumstances.
Storing energy in a way that can go boom is something I’d be a little scared of, were I a nearby resident. I’m sure thermal batteries can have gnarly failure mechanisms but I would way rather live near one of those than a giant compressed air cylinder.


Mac at work. Yabai+sketchybar is no i3wm replacement, but it works ok.
My .zshrc is basically the same as I use on my personal computers, and aside from a few coreutils differences it…kinda just works. I have apt aliased to brew so I can feel more at home.
Stock terminal works fine—I use xterm on Linux, so I’m used to relying on tmux for nice features anyway.
Basically, I miss the window manager, but practically speaking that’s a about it. (I obviously have xscreensaver installed!)


nc is useful. For example: if you have a disk image downloaded on computer A but want to write it to an SD card on computer B, you can run something like
user@B: nc -l 1234 | pv > /dev/$sdcard
And
user@A: nc B.local 1234 < /path/to/image.img
(I may have syntax messed up–also don’t transfer sensitive information this way!)
Similarly, no need to store a compressed file if you’re going to uncompress it as soon as you download it—just pipe wget or curl to tar or xz or whatever.
I once burnt a CD of a Linux ISO by wgeting directly to cdrecord. It was actually kinda useful because it was on a laptop that was running out of HD space. Luckily the University Internet was fast and the CD was successfully burnt :)


4*8 = 24
TIL ;)
Each /8 is 1/256th of all IPv4 addresses, not counting reserved/illegal addresses. Not sure where 1/1000 is coming from…


I’m a ~/tmp man myself.


Maybe not a service in the typical sense, but setting up your router+server to route your home network traffic through a VPN is a fun project.
My router (MikroTik) supports WireGuard, so I can use it with Mullvad for the whole house—but wg is demanding and it’s a slow router, so while it can NAT at ~1Gbps, it can’t do WireGuard at more than ~90Mbps. So, I set up WireGuard/Mullvad on a little SBC with a fast processor, and have my router use that instead. Using policy based routing and/or mangling, I can have different VLANs/subnets/individual hosts selectively routed through the VPN.
It’s a fun exercise, not sure I implemented it in a smart way, but it works :)
Not the same, but for my Immich backup I have a raspberry pi and an HDD with family (remote).
Backup is rsync, and a simple script to make ZFS snapshots (retaining X daily, Y weekly). Connected via “raw” WireGuard.
Setup works well, although it’s never been needed.