• 6TM
  • My links
  • Tags
  • pics
  • RSS
  • Login
Filter untagged links
12 results tagged Tip

vim search and replace using current line as reference point - Stack Overflowhttps://stackoverflow.com/questions/18020381/vim-search-and-replace-using-current-line-as-reference-point

  • Vim
  • TIL
  • Tip
  • OPS
  • Vim
  • TIL
  • Tip
  • OPS

You can use . for the current position, and .+10 for 10 lines down:

:.,.+10s/foo/bar/g

Some other useful ranges:

% for the whole file. Example: :%s/foo/bar/g.
'<,'> for the lines of visually selected block. This might get you more than you want of the visual selection starts or ends in the middle of a line. The whole line is included.
'a,'b from mark a to mark b.
.,$ from the current line to the end of the file.
Permalink
August 23, 2026 at 11:42:08 AM GMT+2
QRCode
archive.org

software recommendation - How do I convert a PNG to SVG? - Ask Ubuntuhttps://askubuntu.com/questions/470495/how-do-i-convert-a-png-to-svg

  • TIL
  • Media
  • Cli
  • Tool
  • Tip
  • TIL
  • Media
  • Cli
  • Tool
  • Tip

autotrace -output-format svg inputfile | tee inputfile.svg

Permalink
June 15, 2026 at 6:47:18 PM GMT+2
QRCode
archive.org

Google releases experimental ‘COSMO’ AI assistant app on Play Store : r/Androidhttps://www.reddit.com/r/Bard/comments/1t0xnmy/google_releases_experimental_cosmo_ai_assistant/

  • Android
  • App
  • Tip
  • Hack
  • Android
  • App
  • Tip
  • Hack

Can you upload it to APKMirror using ML Manager and share the APK splits using SAI?

Permalink
June 2, 2026 at 12:28:39 PM GMT+2
QRCode
archive.org

bash - Awk replace string in line - Stack Overflowhttps://stackoverflow.com/questions/39275121/awk-replace-string-in-line

  • awk
  • TIL
  • tip
  • GNU/Linux
  • OPS
  • awk
  • TIL
  • tip
  • GNU/Linux
  • OPS

awk '{sub(/are hello/,"are are")sub(/you hello/,"you you")}1' file

/foo/bar/how /SOME_TEXT_HERE/hello
/foo/bar/are are/SOME_OTHER_TEXT
/foo/bar/you you

Permalink
May 26, 2026 at 7:54:50 PM GMT+2
QRCode
archive.org

Convert multiple jpg images to mp4 video with ffmpeg commandhttps://sh.6tm.es/shaare/4qW72w

  • TIL
  • GNU/Linux
  • Tip
  • Media
  • Cli
  • OPS
  • TIL
  • GNU/Linux
  • Tip
  • Media
  • Cli
  • OPS

  • input.txt
    file 'photo1.jpg'
    file 'photo2.jpg'
    file 'photo3.jpg'
  • with 3 seconds of duration
    ffmpeg -f concat -safe 0 -r 1 -i input.txt -c:v libx264 -r 30 -pix_fmt yuv420p output.mp4
Permalink
May 17, 2026 at 10:47:38 AM GMT+2
QRCode
archive.org

[TIL] Print file content from a specific commit for Githttps://sh.6tm.es/shaare/Jqy8yg

  • Git
  • TIL
  • Tip
  • Git
  • TIL
  • Tip

git show 6fd6475:playbook.yml

Permalink
May 5, 2026 at 9:41:34 AM GMT+2
QRCode
archive.org

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

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

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

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

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