

Thank you!


Thank you!


These men are more than powerful enough to go against Trump
Was just discussing this with my wife last night — are they?
This time around, there is zero oversight, no checks and balances worth mentioning. Donald Quixote has pretty much carte blanche, complete power. If they went against him, he could fine them (their companies), levy crazy taxes or tariffs, kill government contracts and subsidies, and nobody could stop him. Even if a non-evil judge halts an executive order, it will eventually get to the Subpreme Court, get overturned, basically no more than a delay.
I understand that they could still Do The Right Thing™, throw themselves in their sword in protest, but they’re all publicly traded, must have Boards. Most (?) of these men can just be fired if they go against the shareholders.
Could they really do anything that would be more than a symbolic gesture?


I can’t believe they didn’t show the table with the McDonald’s bags 😳


Context? 🤔
I’m sorry; it’s a coping mechanism for not being able to adequately read mood/tone from written text. I’m trying to quit, or at least dial it down, but it’s a struggle 😞
With my current progress on that front, we might as well be talking about grammar and punctuation — right …? 😶
What the fuuuuuck 😳
I can see how that could be a useful mod tool, but still (see line 1).
So happy I left that hellhole 😮💨
Edit: Although I guess this means I should have invested the time in deleting all my posts; probably too late now 🙄
And damn, now I really want to know what their AI thinks of me! 😅


Thank you! Weird, I thought I read the whole thing, maybe there was an ad block or something and I missed the rest 🤔
Clever system!


I’m guessing there’s no way to generate power by simply pulling continuously on something — we’d just dangle large boulders off cliffs and be done with it.
So how does this generate power? Add a large spring to the generating end, kite pulls away, spring pulls it back, rinse + repeat? 🤔


I’m starting to root for Microsoft’s failure these days, because they haven’t done anything useful or innovative since the pandemic.
That is the most insanely generous thing I’ve read in years. What the — pardon my French — fucking fuck have they done that was useful or innovative in the last 20 years?! 🤯


✅ Trump doner
✅ Super PAC owner (pro-trump)
✅ Racist
✅ Obama Birther conspiracy theorist
✅ Republican senator son
Sounds delightful! 🤢


Recently bought a 2015 MacBook with great specs, running Ventura via OCLP and purring like a kitten 👌


Asked cgpt to compare lasers to microwave for data transmission; take with a grain of salt, but seems transfer rate especially isn’t comparable.
| Feature | Laser Transmission (e.g., Taara) | Microwave Transmission |
|---|---|---|
| Medium | Free-space optical (light, like a fiber-optic cable without fiber) | Radio/microwave frequencies (GHz range) |
| Wavelength | ~780–1600 nm (near-infrared) | ~1–100 GHz |
| Typical Data Rate | 10–100 Gbps (Taara targets ~20 Gbps and higher) | 100 Mbps – 1 Gbps (modern line-of-sight microwave) |
| Max Practical Range | ~10–20 km, highly sensitive to weather | ~30–50 km, more tolerant of weather |
| Line-of-Sight Requirement | Yes, with tight beam alignment needed | Yes, but more forgiving alignment |
| Weather Sensitivity | High — fog, rain, dust degrade performance | Moderate — heavy rain can attenuate signal |
| Latency | Low | Low |
| Power Usage | Lower power for same data rate | Slightly higher power use |
| Security | High — narrow beam, hard to intercept | Moderate — wider beam, easier to jam or intercept |
| Deployment | Harder — requires precision mounting and stability | Easier — flexible mounting, ruggedized equipment |
| Cost | Higher upfront (optical gear, alignment systems) | Lower per-unit, mature market |
| Use Cases | High-throughput backhaul (rural, terrain-constrained areas) | Medium-throughput links, often as telco backbone |


Also, guessing their standard is pretty low if Gimp does the job — at least from a professional standard. There’s not much of a comparison.


Well that’s nice. Hopefully they have some teeth, so we don’t have to go through another one of Zuck’s crocodile-tears-fuelled hearings, followed by absolutely fuck-all change 🙄


### GLUETUN
services:
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun:/dev/net/tun
ports:
- 8888:8888/tcp # HTTP proxy
# - 8388:8388/tcp # Shadowsocks
# - 8388:8388/udp # Shadowsocks
- 8090:8090/tcp # qbittorrent
- xxxx:xxxx/tcp
- 3423:3000/tcp # librewolf
volumes:
- /volumex/docker/gluetun:/gluetun
environment:
- PUID=xxxx #CHANGE_TO_YOUR_UID
- PGID=xxxx #CHANGE_TO_YOUR_GID
- TZ=Europe/xxxx #CHANGE_TO_YOUR_TZ
- VPN_SERVICE_PROVIDER=airvpn
- VPN_TYPE=wireguard
- WIREGUARD_PRIVATE_KEY=xxxx
- WIREGUARD_PRESHARED_KEY=xxxx
- WIREGUARD_ADDRESSES=xxx.xxx.xxx.xxx
- SERVER_REGIONS=Europe
- HTTPPROXY=off #change to on if you wish to enable
- SHADOWSOCKS=off #change to on if you wish to enable
- FIREWALL_OUTBOUND_SUBNETS=172.20.0.0/16,192.168.0.0/24 #change this in line with your subnet see note on guide.
- FIREWALL_VPN_INPUT_PORTS=xxxx #uncomment this line and change the port as per the note on the guide
- UPDATER_PERIOD=24h
network_mode: bridge-xxxx
labels:
- com.centurylinklabs.watchtower.enable=false
security_opt:
- no-new-privileges:true
restart: always
### QBITTORRENT
qbittorrent:
image: linuxserver/qbittorrent:5.0.1
container_name: qbittorrent
environment:
- PUID=xxxx #CHANGE_TO_YOUR_UID
- PGID=xxxx #CHANGE_TO_YOUR_GID
- TZ=Europe/xxxx #CHANGE_TO_YOUR_TZ
- WEBUI_PORT=8090
- UMASK=022
volumes:
- /volumex/docker/qbittorrent:/config
- /volumex/linux-isos/:/data
network_mode: service:gluetun # run on the vpn network
depends_on:
gluetun:
condition: service_healthy
security_opt:
- no-new-privileges:true
restart: always
### LIBREWOLF
librewolf:
container_name: LibreWolf
image: ghcr.io/linuxserver/librewolf:latest
security_opt:
- no-new-privileges:false
- seccomp:unconfined
#healthcheck:
# test: timeout 10s bash -c ':> /dev/tcp/127.0.0.1/3000' || exit 1
#interval: 10s
#timeout: 5s
#retries: 3
#start_period: 90s
environment:
CUSTOM_USER: xxxx
PASSWORD: xxxx
TZ: Europe/xxxx
PUID: xxxx #CHANGE_TO_YOUR_UID
PGID: xxxx #CHANGE_TO_YOUR_GID
volumes:
- /volumex/docker/librewolf:/config:rw
network_mode: service:gluetun # run on the vpn network
restart: no
depends_on:
gluetun:
condition: service_healthy
shm_size: "5gb"
Heliboard is fantastic ❤️
I haven’t found anything that comes even close.