Hahaha... wait you killed him didn't you..
preview
Ace Attorney.
member since 21 Apr 2026 00:03
Ace Attorney.
Pic is how I feel acquiring more software to replace my Big Tech dependency.
(Not all services could be listed here, obviously. Just the ones I personally use)
If it helps others this was my config. To be honest I have a weak grasp of what it actually does so there might be some security issues with it.
Apparently you can also add lemmy as a search engine. Will work on that later.
# docker-compose.yml name: searxng services: core: container_name: searxng-core image: docker.io/searxng/searxng:latest restart: always network_mode: “service:gluetun” volumes: - ./core-config:/etc/searxng - core-data:/var/cache/searxng gluetun: image: qmcgaw/gluetun:v3.41.3 container_name: gluetun cap_add: - NET_ADMIN environment: - VPN_SERVICE_PROVIDER=custom - VPN_TYPE=openvpn - OPENVPN_CUSTOM_CONFIG=/gluetun/custom.conf ports: - 8080:8080 restart: always volumes: - ./gluetun:/gluetun devices: - /dev/net/tun:/dev/net/tun nginx: container_name: nginx image: nginx:latest ports: - 80:80 - 443:443 volumes: - ./nginx:/etc/nginx/conf.d - ./cert:/etc/nginx/cert valkey: container_name: searxng-valkey image: docker.io/valkey/valkey:9-alpine command: valkey-server --save 30 1 --loglevel warning restart: always volumes: - valkey-data:/data/ volumes: core-data: valkey-data: # nginx/default.conf server { server_name localhost; listen 443 ssl; ssl_certificate /etc/nginx/cert/cert.pem; ssl_certificate_key /etc/nginx/cert/private.key; location / { proxy_pass http://gluetun:8080/; proxy_set_header Host $host; proxy_set_header Connection $http_connection; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } server { server_name localhost; listen 80; location / { return 301 https://$host$request_uri; } }
Has anyone noticed that when a teammate uses AI, their teammates also have to as well? Honestly it might be because they don’t want to bother reading the machine’s code when the original author didn’t put much thought into it. Another might be the mental fatigue from reading code that grows faster than you can parse.
First time? /j Srs, I don’t think I’ve ever owned a consumer device that, as the other person points out, didn’t have blobs inside from the factory. Sure, ive manually replaced the BIOS with Libreboot and switched to blobless (software) WiFi chips, but then what about the EC blobs? The keyboard and mouse? If being fully FOSS predicates ownership, I don’t think any of us own our devices
I once tried to argue this in essence on a quiz. I was so convinced that there was a 1% possibility that what I said could happen in practice, that I went out to try and replicate it at home. Gave up once I realized it’d be impossible.
I feel like i dodged a massive bullet being born 10 years earlier than these kids
His brain turned into rice pudding
Yeah, but Dual Destinies scarred me
God damn I didn’t expect to see packet tracer here.
OP how is your CCNA going
Be your own boss
I’m not sure Ms. Oldbag counts
Distributed systems.
Ghengis
(paraphrasing, but)
From just the BSSID these TVs are collecting they know your precise fucking location and can pinpoint it based on signal strength to the nearest street. WiFi Positioning System is cursed. Amazingly, BSSID can also tell you who the customer is based on “public” records since ISPs keep track of this kind of thing when they hand out free routers.
LGTM
When you wake up from a dream and realize that the nightmare was actually better than your current situation
All of the mainstream engines block me after a few requests too on my VPN. After a bit I’m only getting stuff from DDG and what else. Gotta add more engines.
It’s a coreboot distribution (FOSS BIOS/UEFI), so technically it works on more things than advertised.
To install it it does require a little bit of preparation. There’s a lot of commands you have to run using a custom compiler toolchain to build an image for your board. The hardest part is disassembling the laptop, if you have an older one, which is mostly what Libreboot targets.