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
11 results tagged Tip  ✕
software recommendation - How do I convert a PNG to SVG? - Ask Ubuntu https://askubuntu.com/questions/470495/how-do-i-convert-a-png-to-svg
Mon Jun 15 18:47:18 2026
QRCode
archive.org
thumbnail

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

TIL Media Cli Tool Tip
Google releases experimental ‘COSMO’ AI assistant app on Play Store : r/Android https://www.reddit.com/r/Bard/comments/1t0xnmy/google_releases_experimental_cosmo_ai_assistant/
Tue Jun 2 12:28:39 2026
QRCode
archive.org

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

Android App Tip Hack
bash - Awk replace string in line - Stack Overflow https://stackoverflow.com/questions/39275121/awk-replace-string-in-line
Tue May 26 19:54:50 2026
QRCode
archive.org

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

awk TIL tip GNU/Linux OPS
Convert multiple jpg images to mp4 video with ffmpeg command /shaare/4qW72w
Sun May 17 10:47:38 2026
QRCode
archive.org
  • 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
TIL GNU/Linux Tip Media Cli
[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
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
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
89 links, including 47 private
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Theme by kalvn