6TM Bookmarks
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
15 results tagged TIL  ✕
linuxserver/docker-webtop: Ubuntu, Alpine, Arch, and Fedora based Webtop images, Linux in a web browser supporting popular desktop environments. https://github.com/linuxserver/docker-webtop
Thu Jan 22 11:36:34 2026
QRCode
archive.org
  • get GNU/Linux OS in your brower with this docker-compose.yaml:
    services:
    webtop:
    container_name: webtop
    image: lscr.io/linuxserver/webtop:arch-xfce
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Paris           # ← change to your timezone
      - LC_ALL=fr_FR.UTF-8 
      - DOCKER_MODS=linuxserver/mods:universal-package-install
      - INSTALL_PACKAGES=git|tree|vim
    ports:
      - 3000:3000
    volumes:
      - ./webtop-config:/config         # persistent home directory + settings
      - ./tmp:/tmp
    shm_size: 1gb                       # very important for performance!
Devops Tool Infra Local TIL
How the hell do i connect to my nas from my mac over nfs!? : r/synology https://www.reddit.com/r/synology/comments/1tautsp/how_the_hell_do_i_connect_to_my_nas_from_my_mac/
Wed May 13 15:47:36 2026
QRCode
archive.org
thumbnail
  • usually
    diskutil unmount /Volumes/stuff; mount -o nfsvers=4 -t nfs 192.168.1.82:/volume1/stuff /Volumes/stuff
  • for Synology NAS
    sudo mount -o nfsvers=3,rw,sync -t nfs 192.168.1.82:/volume1/stuff /Volumes/stuff
MacOS File Network Share TIL
Install mediainfo plugin for Yazi on Macos /shaare/_84Ryg
Sat May 9 11:03:50 2026
QRCode
archive.org
brew install media-info # install mediainfo cli via Homebrew
ya pkg add boydaihungst/mediainfo # install mediainfo plugin for Yazi
# add mediainfo parameters in config
cat<<EOF>>~/.config/yazi/yazi.toml
[plugin]
  prepend_preloaders = [
    # Replace magick, image, video with mediainfo
    { mime = "{audio,video,image}/*", run = "mediainfo" },
    { mime = "application/subrip", run = "mediainfo" },
    # Adobe Illustrator, Adobe Photoshop is image/adobe.photoshop, already handled above
    { mime = "application/postscript", run = "mediainfo" },
  ]
  prepend_previewers = [
    # Replace magick, image, video with mediainfo
    { mime = "{audio,video,image}/*", run = "mediainfo"},
    { mime = "application/subrip", run = "mediainfo" },
    # Adobe Illustrator, Adobe Photoshop is image/adobe.photoshop, already handled above
    { mime = "application/postscript", run = "mediainfo" },
  ]
EOF
  • Source
MacOS Media Tool Install TIL
[TIL] Print file content from a specific commit for Git /shaare/Jqy8yg
Tue May 5 09:41:34 2026
QRCode
archive.org

git show 6fd6475:playbook.yml

Git TIL Tip
How do I force SSH to use password instead of key? - Super User https://superuser.com/questions/1376201/how-do-i-force-ssh-to-use-password-instead-of-key
Tue Apr 14 12:15:11 2026
QRCode
archive.org

ssh-copy-id -o PreferredAuthentications=password -o PubkeyAuthentication=no -i ~/.ssh/rsa_private_key <server> for copying ssh pubkey to remote server after password authentication

Devops TIL Tip
This is How You Block Autoplay Completely in Firefox : r/firefox https://www.reddit.com/r/firefox/comments/1hxcrwq/this_is_how_you_block_autoplay_completely_in/
Mon Mar 23 20:16:01 2026
QRCode
archive.org
  • about:config
    • Search for media.autoplay
    • Set media.autoplay.blocking_policy to 1
    • Set media.autoplay.default to 5

Bonus: How to set default volume level: media.volume.scale set to .25 (or other sub 1 number)

Config Firefox Desktop TIL
Limit data usage with low data mode as MacOS config /shaare/PGcFYw
Mon Mar 16 06:59:59 2026
QRCode
archive.org
  • MacOS configuration
    settings > wifi > known networks > <your_ssid> > ... > network settings > low data mode
TIL Config MacOS
Get main system information (Model/CPU/RAM Max) from dmidecode /shaare/GNVG0w
Thu Jan 22 15:19:43 2026
QRCode
archive.org

sudo dmidecode -t system -t processor -t memory | grep -Ev 'None|: [0-9]*$' | grep -E "Maximum Capacity|Serial Number|Product Name|Version"

Snippet Devops Infra TIL
Remove spaces from empty lines /shaare/b4sIFA
Tue Jan 20 06:17:18 2026
QRCode
archive.org

Due to Python lint.
find . -type f -name "*.py" -exec sed -i 's/^[[:space:]]*$//' {} \;

TIL Devops Lint Tip
How do you find out what Firefox Profile is running when Firefox is running? - Super User https://superuser.com/questions/460223/how-do-you-find-out-what-firefox-profile-is-running-when-firefox-is-running
Sat Jan 17 10:09:41 2026
QRCode
archive.org
  • Enter "about:support" as URL and select the "Open containing folder" button. You can reach it using Menu "Help" -> "Troubleshooting Information", too:

  • MacOS default path: ${HOME}/Library/Application Support/Firefox/

TIL Firefox Config
Convert m4a audio file in mp3 audio file with ffmpeg command https://www.reddit.com/r/VLC/comments/1pxgtl1/can_i_convert_a_mp3_to_m4a/
Wed Jan 7 23:02:15 2026
QRCode
archive.org
ffmpeg -i inFile.m4a -c:a mp3 -b:a 192k outFile.mp3 #  if the conversion is failing use -vn
Media TIL Tip Convert Tool
Enable Share opt for Navidrome Docker configuration https://github.com/jimbrig/navidrome-server/blob/main/docker-compose.yml
Wed Jan 7 22:42:27 2026
QRCode
archive.org

In docker-compose.yaml:

  • add this:
    ---
    services:
    navidrome:
    ...
    environment:
      ND_ENABLESHARING: true
    ...
  • or via config file

Source

Media App TIL Tip
Find Youtube Channel ID for RSS Feed /shaare/At1oNg
Wed Jan 7 21:19:54 2026
QRCode
archive.org
  • below Youtube Channel Profile
  • click on "more.." profile
  • click "Share channel"
  • click "Copy channel ID"
  • https://www.youtube.com/feeds/videos.xml?channel_id=<channel_id> to get its RSS Feed
RSS TIL Tip
How to automatically reload Ghostty configuration? /shaare/qp2Hfg
Tue Dec 30 09:27:37 2025
QRCode
archive.org

For MacOS, run this command for Ghostty Terminal Emulator

find ~/Library/Application\ Support/com.mitchellh.ghostty ~/.config/ghostty 2>/dev/null | entr pkill -SIGUSR2 ghostty
  • source
  • man entr
TIL Devops Tool Tip Terminal
Comment utiliser la télécommande universelle Grundig ? (Dossier Complet) - Gazette du geek https://gazette-du-geek.fr/tv/telecommande-universelle-grundig/
Fri Nov 14 15:53:44 2025
QRCode
archive.org

Pour régler une télécommande universelle (5€ chez Action) pour une TV GRANDIN LD224GTB:

  • Allumez l’appareil
  • Appuyer sur "Set" jusqu'au clignotement (mode apprentissage)
  • Entrer Code Clé 0400
Hardware Config TIL
78 links, including 45 private
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Theme by kalvn