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
page 1 / 2
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
Best Models for Coding (2026) | CodingAgents.md https://codingagents.md/benchmarks/models-for-coding/
Wed Feb 18 11:54:03 2026
QRCode
archive.org
Use Case Best Model Runner-Up
Complex multi-file refactors Claude Opus 4.6 GPT-5.2-Codex
Quick edits & code review Claude Sonnet 4.5 GPT-5.2
Large codebase understanding Gemini 3 Pro Claude Opus 4.6
Agentic workflows (tool use) Claude Opus 4.6 GPT-5.2-Codex
Speed-optimized coding Gemini 3 Flash Claude Sonnet 4.5
Budget-friendly codingDeepSeek V3 Qwen 2.5 Coder 32B
Local / privacy-first Qwen 2.5 Coder 32B DeepSeek Coder V2
LLM models best
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
GrapheneOS is finally ready to break free from Pixels, and it may never look back https://www.androidauthority.com/graphene-os-major-android-oem-partnership-3606853/
Tue Jan 20 09:20:43 2026
QRCode
archive.org

As exclusivity with Pixel may end in 2026 or 2027, GrapheneOS prepare a new phone with a major Android smartphone manufacturer.

Tech Future Android
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
p0deje/Maccy: Lightweight clipboard manager for macOS https://github.com/p0deje/Maccy
Tue Jan 20 05:01:36 2026
QRCode
archive.org

brew install maccy

  • cmd+shift+c # show menu as maccy hotkey
  • cmd+opt+delete # remove history from menu as maccy hotkey
OSX App
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
TermsTooLong - Understand Privacy & Legal Terms https://www.termstoolong.com/
Wed Jan 7 21:36:35 2026
QRCode
archive.org

Get note review from EULA (CGU in French)

Source

Tool Website
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
Narcotrafic, le poison de l’Europe - Info et société | ARTE https://www.arte.tv/fr/videos/RC-027444/narcotrafic-le-poison-de-l-europe/
Tue Jan 6 13:55:35 2026
QRCode
archive.org

Mieux comprendre l'évolution du trafic de drogues au cours de ces dernières années.

Society
Access / Upload / Navigate between files / directory to Kindle /shaare/E-GMgw
Mon Jan 5 22:12:30 2026
QRCode
archive.org

Use these apps:

  • Calibre
  • OpenMTP
Kindle Book Tool
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
Get Linux Distribution from commandline /shaare/lYQT5g
Mon Dec 22 09:34:12 2025
QRCode
archive.org

[[ $(uname -s) = Linux ]] && awk -F'=' '/^ID/ {last = $2} END {if (last != "") print last}' /etc/*release || echo "It's not a Linux Distribution"

Get only last result from awk because for Archlinux, release file has two ID fields (ID and ID_LIKE).

Snippet GNU/Linux Distribution
Set default web browser with macOS commandline /shaare/l14xXQ
Mon Dec 15 10:52:39 2025
QRCode
archive.org
  • WARNING: Close the targeted application before launching this following command:
    open -a "Helium" --args --make-default-browser && open http://perdu.com
OSX Config
Size of Life https://neal.fun/size-of-life/
Thu Dec 11 11:51:37 2025
QRCode
archive.org

Explore the scale of living things, from an amoeba to a blue whale.

Sciences
Install yt-dlp package with Deno and its dependencies /shaare/rszk3Q
Tue Dec 2 15:12:55 2025
QRCode
archive.org
  • install yt-dlp with all dependencies (Deno included) for resolving Youtube JS challenge when using yt_dlp module.

    python3 -m pip install -U --pre "yt-dlp[default]"
  • Github Issue source

Media Tool
Play locally a 360° video downloaded from Youtube with VLC /shaare/jquFTg
Thu Nov 27 19:14:13 2025
QRCode
archive.org

yt-dlp --ignore-config --extractor-arg "youtube:player_client=android_vr" <youtube_url>

Then run VLC to play downloaded webm video file.

Media Tool
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
page 1 / 2
62 links, including 39 private
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Theme by kalvn