• 6TM
  • My links
  • Tags
  • pics
  • RSS
  • Login
Filter untagged links

How do I force SSH to use password instead of key? - Super Userhttps://superuser.com/questions/1376201/how-do-i-force-ssh-to-use-password-instead-of-key

  • Devops
  • TIL
  • Tip
  • Devops
  • TIL
  • Tip

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

Permalink
April 14, 2026 at 12:15:11 PM GMT+2
QRCode
archive.org

This is How You Block Autoplay Completely in Firefox : r/firefoxhttps://www.reddit.com/r/firefox/comments/1hxcrwq/this_is_how_you_block_autoplay_completely_in/

  • Config
  • Firefox
  • Desktop
  • TIL
  • Config
  • Firefox
  • Desktop
  • TIL

  • 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)

Permalink
March 23, 2026 at 8:16:01 PM GMT+1
QRCode
archive.org

Limit data usage with low data mode as MacOS confighttps://sh.6tm.es/shaare/PGcFYw

  • TIL
  • Config
  • MacOS
  • TIL
  • Config
  • MacOS

  • MacOS configuration
    settings > wifi > known networks > <your_ssid> > ... > network settings > low data mode
Permalink
March 16, 2026 at 6:59:59 AM GMT+1
QRCode
archive.org

Best Models for Coding (2026) | CodingAgents.mdhttps://codingagents.md/benchmarks/models-for-coding/

  • LLM
  • models
  • best
  • LLM
  • models
  • best

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
Permalink
February 18, 2026 at 11:54:03 AM GMT+1
QRCode
archive.org

Get main system information (Model/CPU/RAM Max) from dmidecodehttps://sh.6tm.es/shaare/GNVG0w

  • Snippet
  • Devops
  • Infra
  • TIL
  • Snippet
  • Devops
  • Infra
  • TIL

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

Permalink
January 22, 2026 at 3:19:43 PM GMT+1
QRCode
archive.org

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

  • Devops
  • Tool
  • Infra
  • Local
  • TIL
  • OPS
  • Devops
  • Tool
  • Infra
  • Local
  • TIL
  • OPS

  • 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!
Permalink
January 22, 2026 at 11:36:34 AM GMT+1
QRCode
archive.org

GrapheneOS is finally ready to break free from Pixels, and it may never look backhttps://www.androidauthority.com/graphene-os-major-android-oem-partnership-3606853/

  • Tech
  • Future
  • Android
  • Tech
  • Future
  • Android

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

Permalink
January 20, 2026 at 9:20:43 AM GMT+1
QRCode
archive.org

Remove spaces from empty lineshttps://sh.6tm.es/shaare/b4sIFA

  • TIL
  • Devops
  • Lint
  • Tip
  • TIL
  • Devops
  • Lint
  • Tip

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

Permalink
January 20, 2026 at 6:17:18 AM GMT+1
QRCode
archive.org

p0deje/Maccy: Lightweight clipboard manager for macOShttps://github.com/p0deje/Maccy

  • OSX
  • App
  • OSX
  • App

brew install maccy

  • cmd+shift+c # show menu as maccy hotkey
  • cmd+opt+delete # remove history from menu as maccy hotkey
Permalink
January 20, 2026 at 5:01:36 AM GMT+1
QRCode
archive.org

How do you find out what Firefox Profile is running when Firefox is running? - Super Userhttps://superuser.com/questions/460223/how-do-you-find-out-what-firefox-profile-is-running-when-firefox-is-running

  • TIL
  • Firefox
  • Config
  • TIL
  • Firefox
  • Config

  • 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/

Permalink
January 17, 2026 at 10:09:41 AM GMT+1
QRCode
archive.org

Convert m4a audio file in mp3 audio file with ffmpeg commandhttps://www.reddit.com/r/VLC/comments/1pxgtl1/can_i_convert_a_mp3_to_m4a/

  • Media
  • TIL
  • Tip
  • Convert
  • Tool
  • Media
  • TIL
  • Tip
  • Convert
  • Tool

ffmpeg -i inFile.m4a -c:a mp3 -b:a 192k outFile.mp3 #  if the conversion is failing use -vn
Permalink
January 7, 2026 at 11:02:15 PM GMT+1
QRCode
archive.org

Enable Share opt for Navidrome Docker configurationhttps://github.com/jimbrig/navidrome-server/blob/main/docker-compose.yml

  • Media
  • App
  • TIL
  • Tip
  • Media
  • App
  • TIL
  • Tip

In docker-compose.yaml:

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

Source

Permalink
January 7, 2026 at 10:42:27 PM GMT+1
QRCode
archive.org

TermsTooLong - Understand Privacy & Legal Termshttps://www.termstoolong.com/

  • Tool
  • Website
  • Tool
  • Website

Get note review from EULA (CGU in French)

Source

Permalink
January 7, 2026 at 9:36:35 PM GMT+1
QRCode
archive.org

Find Youtube Channel ID for RSS Feedhttps://sh.6tm.es/shaare/At1oNg

  • RSS
  • TIL
  • Tip
  • RSS
  • TIL
  • Tip

  • 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
Permalink
January 7, 2026 at 9:19:54 PM GMT+1
QRCode
archive.org

Narcotrafic, le poison de l’Europe - Info et société | ARTEhttps://www.arte.tv/fr/videos/RC-027444/narcotrafic-le-poison-de-l-europe/

  • Society
  • Society

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

Permalink
January 6, 2026 at 1:55:35 PM GMT+1
QRCode
archive.org

Access / Upload / Navigate between files / directory to Kindlehttps://sh.6tm.es/shaare/E-GMgw

  • Kindle
  • Book
  • Tool
  • Kindle
  • Book
  • Tool

Use these apps:

  • Calibre
  • OpenMTP
Permalink
January 5, 2026 at 10:12:30 PM GMT+1
QRCode
archive.org

How to automatically reload Ghostty configuration?https://sh.6tm.es/shaare/qp2Hfg

  • TIL
  • Devops
  • Tool
  • Tip
  • Terminal
  • TIL
  • Devops
  • Tool
  • Tip
  • Terminal

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
Permalink
December 30, 2025 at 9:27:37 AM GMT+1
QRCode
archive.org

Get Linux Distribution from commandlinehttps://sh.6tm.es/shaare/lYQT5g

  • Snippet
  • GNU/Linux
  • Distribution
  • Snippet
  • GNU/Linux
  • Distribution

[[ $(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).

Permalink
December 22, 2025 at 9:34:12 AM GMT+1
QRCode
archive.org

Set default web browser with macOS commandlinehttps://sh.6tm.es/shaare/l14xXQ

  • OSX
  • Config
  • OSX
  • Config

  • WARNING: Close the targeted application before launching this following command:
    open -a "Helium" --args --make-default-browser && open http://perdu.com
Permalink
December 15, 2025 at 10:52:39 AM GMT+1
QRCode
archive.org

Size of Lifehttps://neal.fun/size-of-life/

  • Sciences
  • Sciences

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

Permalink
December 11, 2025 at 11:51:37 AM GMT+1
QRCode
archive.org
2 / 3
Links per page
  • 20
  • 50
  • 100
Shaarli 96 shaares · Shaarli · The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community · Documentation · Theme : Stack · Font : DINish
Fold Fold all Expand Expand all Are you sure you want to delete this link? Are you sure you want to delete this tag? The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community