Repair is simple. Solder two contacts on top of 470k resistor and get constant max power.
Tuesday, July 28, 2026
Tuesday, June 30, 2026
F8 20A fuse blown on Ford Mondeo MK4 2L TDCI
Car stalled at the middle of the road. F8 20A fuse blown. Crappy Ford's user manual says: Powertrain control module. Brief and straight to the point.
After diagnosis it turned out the problem is on ECU Delphi DCM3.5 black connector line. Brown and grey connectors are OK. Test was very simple - 12V 40W lamp connected to F8 fuse contacts. When car door is opened, car activated and lamp glows, when door is shut, after a while PCM relay turns off the lamp. Something shorts F8 line when car is active. If you try ignition to crank car, lamp or fuse will burn.
Sophisticated electrical problem? Almost all connectors were checked but lamp glows. Finally air filter was removed, headlight was removed and broken wires were found. Modern engineering at it's best. Weak protection against rubbing and stupid location. Looks like one wire broke, shorted and burned few other wires. Here is the lesson: do not mess with electronics before checking physical lines.
Very fortunate that this damage happened on low speed in the city. On highway such thing may be lethal. Overall Mondeo 4 is good car but engineering decisions on horn and ECU location, shitty wire isolation, absence of mechanical locks on passenger and trunk doors, "non-serviceable" diodes in tail lights are annoying, not counting gas pedal glitches, interior air filter change and other trifles to mess with. Ave enshittification, morituri te salutant.
Monday, June 15, 2026
KNKA CS06 dehumidifier disassemble and repair
3 screws at the bottom. 4 screws behind water tray. Pull case bottom gently, remove top cover and unscrew 2 screws under it.
Sunday, March 15, 2026
Privacy, telemetry, data collection
https://librewolf.net/
LibreWolf — privacy enhanced Firefox gets much better results on https://coveryourtracks.eff.org
sudo apt update && sudo apt install extrepo -y
sudo extrepo enable librewolf && sudo extrepo update librewolf
sudo apt update && sudo apt install librewolf -y
Any program that uses web UI via web-server may leak internal LAN IP-address of the device, for example IP Webcam for Android does this in Referrer. F12 > Dev Tools > Network > check what requests app makes. Any API is potential channel for leaking user data. Be cautions when using proprietary apps in sensitive environment. FOSS is better in such cases, else decompile, modify, rebuild.
https://www.privoxy.org/user-manual/quickstart.html
https://docs.searxng.org/
sudo ufw enable
sudo apt install tor
torsocks --version
sudo systemctl enable tor // start on boot
sudo systemctl start tor // start now
sudo systemctl status tor // check if running
torsocks curl https://check.torproject.org
CLI browsers are not safe browsers. Using w3m/lynx to “avoid JS” doesn’t make sense for anonymity; you’re trading usability and security for terminal UI. CLI inside a Tor-based system is safe way: Whonix, Tails (easiest).
Ordinary goofy will say that he has nothing to hide, but he do not take into account regime change, idiotic laws and limitations that may be in future... The less data you share, the better. Nobody has right to poke nose in your LAN, hardware, behavior, business...
Monday, March 9, 2026
KTorrent not seeding and not downloading
Forward only 6881 for tcp and udp in router or choose another port. Paste it for TCP, mtp, DHT, apply and other ports will be changed automatically.
sudo ufw enable
sudo ufw allow 6881/tcp
sudo ufw allow 6881/udp
sudo ufw reload
netstat -plunt | grep ktorrent
tcp 0 0 PC_IP:6881 0.0.0.0:* LISTEN 60908/ktorrent
udp 0 0 PC_IP:6881 0.0.0.0:* 60908/ktorrent
udp 0 0 PC_IP:UDPtrackers 0.0.0.0:* 60908/ktorrent
udp 0 0 PC_IP:UDP_DHT 0.0.0.0:* 60908/ktorrent
Tuesday, March 3, 2026
Shrink disk size partition in terminal with parted resize
The Victory Lap: 851GB shrinked drive (Stable), 323GB 4256-sector slop (Webcam Trash), screaming shrinked 978GB 2005-sector zombie (Torrent Sacrifice). Successfully built "Post-Apocalyptic" Storage Array out of pure e-waste. It's chatty, it spams errors - but it's moving 110MB/s and cost $0.
Monday, March 2, 2026
KGet download and upload limit not working
nano ~/.bashrc
alias slowget='aria2c -c -x 16 -s 16 --file-allocation=prealloc --max-download-limit=1024K -o'
source ~/.bashrc
cd /desired/folder
slowget "file_0.avi" "URL"
If download fails:
slowget "file_0.avi" "NEW_URL" // to resume
Alternatives for using KGet:
E: Package 'trickle' has no installation candidate
sudo apt install firejail // 28.5 MB
firejail --net=eth0 --bandwidth=kget:1500:1500 kget
sudo wondershaper eth0 1500 1500 // NIC limit


