Listing posts

Displaying posts 1 - 5 of 369 in total
Windows 11 pro setup
Last update
2026-08-17
2026
08-17
« — »

Settings

  • System > About > Advanced system settings:
    • Advanced tab > Performance > Settings > Visual effects > Adjust for best performance
    • Advanced tab > Performance > Settings > Advanced > Virtual memory > Change > No paging file
    • System protection > Off
    • Remote > Remote assistance > uncheck Allow
  • Disable Hibernation: run cmd as admin > powercfg.exe /hibernate off
  • Disable BitLocker: Privacy and Security > Device Encryption > toggle to Off
  • Disable Smart App Control: Windows security > App & browser control > Smart App Control > Smart App Control settings > Off
  • Right click full menu:
    • reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve -- this empties the content of the key (previous value = C:\Windows\System32\Windows.UI.FileExplorer.dll)
    • open Task Manager (Ctrl+Shift+Esc) > right click on Windows Explorer > Restart
  • Taskbar:
    • hide Search
    • Other system tray icons: show Bluetooth, Eject media
    • Taskbar behaviours > Combine buttons and hide labels > Never
  • Time & language
    • Language & region > ... menu on English (UK) > Language options > Keyboards > keep US-QWERTY only
    • Typing > Advanced keyboard settings:
      • Override: English (UK) - US
      • Language bar options > Hidden
  • Personalization > Fonts > Related settings > Adjust ClearType text
  • Power & battery:
    • Power mode > Best power efficiency
    • Screen, sleep, ... > Plugged = 10/Never, Battery = 3/15
    • Energy saver > Turn on at 50%
    • Lid & power button > all sleep
  • Personalization > Background > Solid color = Cool blue
  • Personalization > Lock screen > Picture + uncheck Fun facts
  • Personalization > Lock screen > unchekc Show the lock screen background picture on the sign-in screen
  • Disable thumbnails cache:
    • reg.exe add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v DisableThumbnailCache /t REG_DWORD /d 1
  • disable taskbar thumbnails:
    • reg.exe add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v ExtendedUIHoverTime /t REG_DWORD /d 50 (previous value = 0)
    • reg.exe add "HKCU\Control Panel\Mouse /v MouseHoverTime /t REG_SZ /d 2000 /f (previous value = 400)
  • invert touchpad scrolling direction: Settings > Bluetooth & devices > Touchpad > Scroll & zoom > Scrolling direction = Down motion scrolls down

disable welcome experience, 3 possible ways:

  1. Settings > System > Notifications > Additional settings > uncheck all:
    • Show me the Windows welcome experience after updates and occasionally when I sign in to highlight what’s new and suggested
    • Suggest ways to get the most out of Windows and finish setting up the device
    • Offer suggestions on how I can set up my device.
  2. run regedit
    • HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager
    • create a new 32-bit DWORD SubscribedContent-310093Enabled = 0
  3. run gpedit.msc
    • Local Computer Policy > Computer Configuration > Administrative Templates > Windows Components > Cloud Content > Turn off the Windows Welcome Experience
    • enable the policy, apply and restart

manual windows updates

  • run gpedit.msc:
  • Computer Configuration > Administrative Templates > Windows Components > Windows Update > Manage end user experience > Configure Automatic Updates
  • enable the policy, set Configure automatic updating: = 2- Notify for download and auto install, apply
  • run gpupdate /force, reboot

auto login

  1. run regedit
    • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device
    • set DevicePasswordLessBuildVersion = 0 (2=enable)
  2. run netplwiz
    • select your account
    • uncheck Users Must Enter A User Name and Password To Use This Computer, apply
    • enter username and password in the popup (if using a MS account to log in to Windows, insert the MS password)

Chocolatey package manager

  1. install
    • open admin powershell
    • Set-ExecutionPolicy AllSigned
    • Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
  2. install choco-cleaner:
    • choco install choco-cleaner --params "'/NOTASK:TRUE'"
  3. open admin cmd|powershell:
    1. don't ask confirmation: choco feature enable -n=allowGlobalConfirmation
    2. choco install open-shell WinDirStat irfanview irfanview-languages irfanviewplugins vlc sumatrapdf tightvnc
    3. choco install 7zip micro winscp wireguard pdftk
    4. choco install gimp InkScape mcomix libreoffice-still zoom
    5. choco install ffmpeg jhead
    6. choco-cleaner (clear chocolatey package cache files)
  4. pin/fix an app version
    • choco pin add -n mcomix
    • choco pin add -n libreoffice-still

Cygwin

desktop links

  • chocolatey - update all packages (admin link): cmd.exe /K "choco upgrade all & choco-cleaner"
  • cygwin - update all packages: setup-x86_64.exe -n -q
  • windows shutdown: cmd.exe /C "shutdown /s /f /t 0" open in minimized window
  • windows reboot: cmd.exe /C "shutdown /r /f /t 0" open in minimized window

convert the Microsoft Account to a Local Account

  1. convert: Settings > Accounts > Your info > Account settings > Sign in with a local account instead
  2. pass only: Settings > Accounts > Sign-in option > PIN > Remove PIN

more privacy

tools

  • CompactGUI -- reduce disk space of programs via native Windows APIs

~~~ * ~~~

Thunderbird useful add-ons and tricks
Last update
2026-08-06
2026
08-06
« — »

Settings

1
security.dialog_enable_delay = 100  # faster enabling of dialog boxes buttons (download, confirm)

Date & Time formats (ref1, ref2):

1
2
intl.date_time.pattern_override.date_short = "yyyy-MM-dd"
intl.date_time.pattern_override.time_short = "HH:mm"

Add-ons

Obsolete

Date format

OBSOLETE: TB uses the system locale settings in order to display the date and time, you can change them by setting the LANG environment variable:

1
2
3
4
5
#!/bin/bash
# http://kb.mozillazine.org/Date_display_format
# https://bugzilla.mozilla.org/show_bug.cgi?id=1426907
export LANG=it_IT.UTF-8 # DD/MM/YYYY HH.MM
exec /opt/thunderbird/thunderbird

Dark theme

  1. Install TT DeepDark theme
  2. Preferences > Display > Formatting > Fonts & Colors > Colors button, then swap Text and Background colors
  3. If you write HTML emails: Preferences > Composition > General, then swap Text and Background colors

Logging

1
MOZ_LOG=SMTP:4,timestamp MOZ_LOG_FILE=tb.log thunderbird

~~~ * ~~~

telefonate spam
person cloud · link
Last update
2026-08-01
2026
08-01
«spamtel-pdf2csv»
Data Ora File Riga Telefono Note
2026-07-31 13:04 STI-0365463 9 0221107356 Eni plenitude
2026-07-31 10:21 STI-0365463 8 0865074486 depuratore acqua
2026-07-29 14:23 STI-0365462 2 0279250172 muta
2026-07-29 14:03 STI-0365463 7 0106206379 bagno
2026-07-29 13:05 STI-0365462 1 0279250156 muta
2026-07-28 14:39 STI-0365460 10 04371852193 muta
2026-07-27 10:28 STI-0365460 9 0279250138 muta
2026-07-26 16:43 STI-0365463 6 0683885749 Tim
2026-07-25 10:20 STI-0365460 8 03519750852 muta
2026-07-24 17:18 STI-0365463 5 0492977655 trade republic
2026-07-24 09:31 STI-0365463 4 0680450158 bagno
2026-07-23 11:35 STI-0365460 7 0719726983 muta
2026-07-23 10:54 STI-0365463 3 04221698792 Tim
2026-07-21 11:27 STI-0365460 5 0410989287 muta
2026-07-21 10:56 STI-0365460 4 0680450247 muta
2026-07-21 10:26 STI-0365460 6 09711772579 muta
2026-07-21 09:39 STI-0365463 2 0279250101 bagno
2026-07-20 15:52 STI-0365463 1 0912575427 depuratore acqua
2026-07-20 12:24 STI-0365460 3 0279250086 muta
2026-07-20 11:34 STI-0365460 2 +49156788187 muta
2026-07-20 10:17 STI-0365460 1 0279250088 muta
2026-07-17 17:10 STI-0362175 9 0281113433 tim
2026-07-17 10:39 STI-0362173 10 0550176670 muta
2026-07-16 18:51 STI-0362173 9 05751273230 muta
2026-07-16 12:30 STI-0362175 8 0497988021 fotovoltaico
2026-07-16 10:03 STI-0362173 8 +34694506066 muta
2026-07-15 18:00 STI-0362175 7 0280040180 fibra tim
2026-07-14 10:37 STI-0362173 7 0912575854 muta
2026-07-13 18:15 STI-0362173 6 0707053951 muta
2026-07-13 12:05 STI-0362173 5 0230618533 muta
2026-07-13 10:02 STI-0362173 4 0719726598 muta
2026-07-10 12:19 STI-0362175 6 0680451418 tim
2026-07-10 11:56 STI-0362175 5 04211813434 fornitura gas
2026-07-09 19:54 STI-0362173 3 3778537977 muta
2026-07-09 09:50 STI-0362173 2 04221698285 muta
2026-07-08 11:41 STI-0362175 4 0279250227 depuratori acqua
2026-07-07 16:40 STI-0362175 3 0683885441 tim
2026-07-06 15:22 STI-0362175 2 04221698119 tim
2026-07-03 15:10 STI-0362175 1 0405893173 depuratori acqua
2026-07-03 11:16 STI-0362173 1 0110877261 muta
2026-06-30 17:17 STI-0357296 9 0492977679 amazon
2026-06-24 10:15 STI-0357296 8 0279250308 enel
2026-06-20 10:54 STI-0357296 7 0683885005 enel
2026-06-19 09:51 STI-0357296 6 0279250279 depuratori acqua
2026-06-18 18:14 STI-0357296 5 0409821238 vasche da bagno
2026-06-09 09:26 STI-0357296 4 0279250163 dentisti dall'albania
2026-06-08 16:47 STI-0357296 3 05751273831 noleggio auto
2026-06-08 13:23 STI-0357296 2 0141992102 enel
2026-06-08 11:08 STI-0357296 1 0683846568 tim
2026-06-29 12:30 STI-0357292 7 0279250149 muta
2026-06-26 14:40 STI-0357292 6 04221738924 muta
2026-06-26 10:59 STI-0357292 5 0279250123 muta
2026-06-22 12:11 STI-0357292 4 0166683234 muta
2026-06-20 10:52 STI-0357292 3 04221698108 muta
2026-06-19 17:39 STI-0357292 2 04441496894 muta
2026-06-19 15:51 STI-0357292 1 0510670231 muta
2026-06-06 10:45 STI-0349817 6 0410989990 tim
2026-06-06 09:23 STI-0349817 5 0410989025 tim
2026-06-05 09:36 STI-0349817 4 0279250166 dentisti dall'Albania
2026-05-26 17:32 STI-0349817 3 0280040596 vendita sanitari
2026-05-26 15:01 STI-0349817 2 0280040596 muta 2x
2026-05-25 17:13 STI-0349817 1 0912575788 muta
2026-05-20 16:33 STI-0346139 2 0281112613 muta
2026-05-20 15:21 STI-0346139 1 0492977784 muta
2026-05-19 18:45 STI-0346134 10 0702184333 muta
2026-05-19 13:22 STI-0346134 9 0410989493 muta
2026-05-13 17:32 STI-0346134 8 0862378645 muta
2026-05-13 16:18 STI-0346134 7 0492977897 muta
2026-05-13 16:03 STI-0346134 6 0410989417 enel
2026-05-12 13:52 STI-0346134 5 0683885559 tim
2026-05-11 19:32 STI-0346134 4 09841751406 condizionatori
2026-05-11 14:53 STI-0346134 3 0702184237 tim 3x
2026-05-07 17:45 STI-0346134 2 0862378549 vendita sanitari
2026-05-04 15:05 STI-0346134 1 3762805309 muta
2026-04-30 15:20 STI-0339976 9 0683846465 muta
2026-04-30 09:15 STI-0339976 8 04371852873 folletto
2026-04-28 12:26 STI-0339976 7 0497988027 fotovoltaico solargreen
2026-04-23 14:49 STI-0339976 6 +33517443119 vendita energia
2026-04-21 16:40 STI-0339976 5 0410989806 vendita sanitari
2026-04-21 12:42 STI-0339976 4 0410989248 muta
2026-04-21 11:53 STI-0339976 3 +33602049424 enel
2026-04-16 09:17 STI-0339976 2 0683885089 tim
2026-04-13 09:51 STI-0339976 1 0909086777 tim
2026-04-08 15:19 STI-0334330 7 3928262306 muta
2026-04-07 18:05 STI-0334330 6 0492977994 trade republic
2026-04-07 14:06 STI-0334330 5 0410989392 enel
2026-04-07 09:39 STI-0334330 4 0410989376 promo bagno
2026-04-06 12:48 STI-0334330 3 0230612934 muta
2026-04-03 15:04 STI-0334330 2 0492977507 banca ignota
2026-04-03 14:35 STI-0334330 1 09841751636 trading
2026-04-02 10:30 STI-0332225 8 0412534593 tim
2026-03-28 13:40 STI-0332225 7 04371852285 muta
2026-03-28 12:23 STI-0332225 6 04221698223 muta
2026-03-27 20:28 STI-0332225 5 0230612298 muta
2026-03-27 16:45 STI-0332225 4 0680450029 tim
2026-03-26 15:22 STI-0332225 3 0492977768 trade republic
2026-03-24 12:11 STI-0332225 2 0418684230 enel
2026-03-23 12:52 STI-0332225 1 0279250032 tim
2026-03-16 10:59 STI-0328053 3 0455118726 fotovoltaico
2026-03-12 13:07 STI-0328053 2 0279250057 tim
2026-03-07 19:57 STI-0328053 1 0683885793 muta
2026-03-07 14:50 STI-0328049 10 0230611524 windtre
2026-03-06 14:30 STI-0328049 9 0410989360 enel
2026-03-05 12:45 STI-0328049 8 0279250008 tim
2026-03-03 13:43 STI-0328049 7 0230610640 windtre
2026-03-03 10:32 STI-0328049 6 091522072 promo regionale bagno
2026-03-02 13:58 STI-0328049 5 0410989344 enel
2026-02-27 15:18 STI-0328049 4 0412538615 muta
2026-02-23 16:01 STI-0328049 3 +38513140291 investimenti
2026-02-23 13:31 STI-0328049 2 +447520693706 muta
2026-02-23 00:00 STI-0328049 1 0418687051 pompe calore
2026-02-19 14:00 STI-0318778 3 0410989881 promo regionale condizionatore
2026-02-19 09:51 STI-0318778 2 03519750358 promo regionale condizionatore
2026-02-19 09:40 STI-0318778 1 0110877843 fibra ottica multi operatore
2026-02-16 09:50 STI-0317606 6 0299946927 ricambi folletto
2026-02-12 17:21 STI-0317606 5 0302048981 depuratore acqua
2026-02-09 10:55 STI-0317606 4 0299946913 enel
2026-02-06 13:54 STI-0317606 3 0281274112 muta
2026-02-04 12:56 STI-0317606 2 +49157903325 clinica odontoiatria in albania a tirana
2026-02-02 19:56 STI-0317606 1 +3864712323 promo regionale condizionatore
2026-01-29 10:25 STI-0312304 6 +33770322629 enel
2026-01-29 00:41 STI-0312304 7 +33656694964 enel
2026-01-28 17:09 STI-0312304 5 +34611132282 muta
2026-01-23 15:21 STI-0312304 4 0554659255 trattamenti dentali
2026-01-22 19:21 STI-0312304 3 0281288978 windtre fibra ottica
2026-01-20 11:39 STI-0312304 1 0299946704 ricambi folletto
2026-01-20 00:32 STI-0312304 2 +46734654352 enel
2026-01-15 11:47 STI-0307242 2 04371852732 ricambi folletto
2026-01-10 10:36 STI-0307242 1 0221109639 ricambi folletto
2026-01-09 12:05 STI-0305738 1 04371852236 muta
2026-01-01 15:00 STI-0304894 1 0683885193 prestiti
2025-12-23 09:42 STI-0304148 4 04611221029 prestiti
2025-12-22 19:59 STI-0304148 3 04371852408 muta
2025-12-19 14:05 STI-0304148 2 +3538865846 fastweb
2025-12-11 14:09 STI-0301896 5 04371852655 purificatore d'acqua
2025-12-11 13:57 STI-0301896 10 +447520693514 visite odontoiatriche a tirana
2025-12-11 13:47 STI-0301896 4 04371852677 purificatore d'acqua
2025-12-11 10:08 STI-0301896 9 +302691044789 climatizzatore
2025-12-10 15:26 STI-0301896 3 01118522195 enel
2025-12-09 17:45 STI-0301896 8 +3479570684 fastweb fibra
2025-12-05 13:12 STI-0301896 2 0234914392 windtre
2025-12-04 16:44 STI-0301896 1 0221108787 broker per finanziamenti
2025-12-03 09:14 STI-0301892 10 3459825357 sgr energia
2025-12-02 15:03 STI-0301892 9 0221108745 prestiti denaro
2025-12-02 14:17 STI-0301892 8 0110722139 betterlife depuratori d'acqua
2025-12-02 13:04 STI-0301896 7 +302261099667 tim
2025-12-01 16:39 STI-0301892 7 0281276414 tim
2025-11-28 16:31 STI-0301892 6 01118522801 enel
2025-11-28 12:44 STI-0301892 5 3480149200 yes energy
2025-11-28 12:40 STI-0301892 4 0462866816 internet casa multioperatore
2025-11-27 16:01 STI-0301892 3 08119672106 muta
2025-11-27 10:35 STI-0301896 6 +34671221253 muta
2025-11-17 11:45 STI-0301892 2 3453870133 promo regionale bagno
2025-11-14 14:17 STI-0301892 1 3406206253 trasforma la tua vasca in doccia
2025-11-14 09:06 STI-0294416 6 3406530366 ricambi folletto
2025-11-13 11:17 STI-0304148 1 +33140018149 raidopera utenze domestiche
2025-11-13 09:53 STI-0294416 4 3391020406 muta
2025-11-13 00:24 STI-0294416 5 3473021239 prestiti personali
2025-11-11 12:55 STI-0294416 3 3336276744 fotovoltaico solar green
2025-11-11 11:54 STI-0294416 2 3477287919 enel
2025-11-07 13:41 STI-0294416 1 3490970611 muta
2025-11-07 10:31 STI-0292645 7 3481891388 tim
2025-11-05 13:29 STI-0292645 6 3336719815 bonus luce gas
2025-11-04 16:16 STI-0292645 5 3488796129 tim
2025-11-04 09:31 STI-0292645 4 3467306363 trapianto capelli
2025-10-31 11:49 STI-0292645 3 3485656321 purificatore acqua
2025-10-30 17:52 STI-0292645 2 3474207997 muta
2025-10-30 11:40 STI-0292645 1 3451546075 fininvest investimenti
2025-10-28 09:05 STI-0290594 8 3460511917 amazon investimenti
2025-10-27 13:33 STI-0290594 7 3771292976 purificatore d'acqua
2025-10-25 13:42 STI-0290594 6 0110866015 better life depuratori d'acqua
2025-10-25 00:14 STI-0290594 5 3455284095 muta
2025-10-24 16:31 STI-0290594 4 3451293919 fotovoltaico
2025-10-24 11:28 STI-0290594 3 3425242881 muta
2025-10-21 16:54 STI-0290594 2 3477360623 enel
2025-10-20 10:02 STI-0290594 1 3470474087 promo regione depuratore gratuito
2025-10-16 13:48 STI-0287673 7 349860728 promo regione
2025-10-16 13:35 STI-0287673 6 3429249582 promo regione
2025-10-16 13:10 STI-0287673 5 3472731513 promo regione
2025-10-16 13:06 STI-0287673 4 3450103683 promo regione
2025-10-16 11:12 STI-0287673 3 3474798649 promo regione
2025-10-16 09:39 STI-0287673 2 3474798649 promo regione
2025-10-16 09:05 STI-0287673 1 349845030 promo regione

~~~ * ~~~

Free uncensored DNS
Last update
2026-07-28
2026
07-28
« — »
Name IPs Origin Notes
DNS.watch 84.200.69.80
84.200.70.40
EU / Munich, Germany no logs, DNSSEC
Cloudflare 1.1.1.1
1.0.0.1
1dot1dot1dot1.cloudflare-dns.com
HK / Honk Kong
AU / Australia
logs lasts 24h
does not log IPs
DNScrypt.eu 77.66.84.233:443 EU / Koebenhavn, Denmark DNSCrypt only1
DNScrypt.eu 176.56.237.171:443 EU / Nuland, Netherlands DNSCrypt only1
UncensoredDNS 91.239.100.100
89.233.43.71
EU / Copenhagen, Denmark no logs, AnyCast
OpenNIC many * depends on server

Source: greycoder

Android app: OverrideDNS


~~~ * ~~~

Android 📱️ apps
Last update
2026-07-22
2026
07-22
«a collection of must have android apps for many common needs
apps/addons/plugins»

Stores: Google Play, NeoStore, F-Droid, Droid-ify, Aurora (src)

To check

General

Media

Games

System

Home automation

Nova Launcher alternatives

From reddit & androidauthority: Smart Launcher, Lawnchair, Octopi, Hyperion, Niagara, Action, Kvaesitso, Pear

Svago


Other lists: Retrial, Finalboss77