@Vivaldi Gotta keep Firefox/Mozilla even if it is going downhill fast. Vivaldi and Firefox + variants are the only browsers I will use or recommend. Hopefully, we can steer Firefox and Chromium in the right direction before it is too late.

#Mozilla #Vivaldi #FreeSoftware #OpenSource #GNU #Linux #UNIX #FLOSS #Opera #Presto #Gecko #Chromium #KDE #GNOME #BASH #KATE #OpenSUSE #Fedora #Debian #W3C

Working with logs and XML data in Bash?

This guide covers structured logging, XML parsing using xmllint, error handling, log rotation, and automation techniques used by Linux admins and DevOps engineers.

https://www.linuxteck.com/bash-logging-xml-parsing/

#linuxteck #Linux #Bash #DevOps #Automation #SysAdmin #OpenSource

Bash script yazmaya başlamak için öncelikle terminali açın ve temel komutları öğrenin. Shell script'ler, otomasyonu sağlamak için harika bir araçtır. Hadi başlayalım! 🐧 #Ubuntu #LinuxTürkiye #OpenSource #Bash #DevOps

📖 Devamını oku → http://teknoveri.com/post/getting-started-with-bash-scripting-a-step-by-step-guide

In the #shell #functions I should have written years ago category...

function fedilinktousername { grep -oE 'https?://[^/]+/@[^/ ]+' |sed -E 's|https?://|@|; s|/@|@|; s/(@[^@]*)(@[^@]*)/\2\1/' } function fediusernametolink { grep -oE '(@[^@ ]+){2}' |sed -E 's|(@[^@ ]+)@([^@ ]+)|https://\2/\1|' } rld@Intrepid:~$ clipo https://polymaths.social/@rl_dane/statuses/01KVJCAG6Y4C1KTGBDBECH2778 rld@Intrepid:~$ clipo |fedilinktousername @[email protected] rld@Intrepid:~$ clipo |fedilinktousername |fediusernametolink https://polymaths.social/@rl_dane rld@Intrepid:~$

#UnixShell #ShellScripting #Unix #bash #ksh

Linux'ta systemd servislerini yönetmek oldukça basit! 🐧

Servisi başlatmak için: `sudo systemctl start servis_adi`
Servisi durdurmak için: `sudo systemctl stop servis_adi`
Servisi yeniden başlatmak için: `sudo systemctl restart servis_adi`
Durumunu kontrol etmek için: `sudo systemctl status servis_adi`

#Terminal #Bash #LinuxTürkiye #OpenSource #DevOps

📖 Devamını oku → http://teknoveri.com/post/systemd-services-management-and-application-guide

Gaia-bash is a domain-specialized coding agent focused on Bash/shell scripts and tuned for POSIX compliance, supports a variety of built-in tools, and more. https://www.phoronix.com/news/AMD-GAIA-Bash-Coding-Agent

#bash #ai #vibeslop #opensource

AMD Introduces An AI-Powered Bash Coding Agent

Just days after AMD engineers released a new Lemonade AI server with MCP server integration to make it much more useful, they have now released a new release of their GAIA 'Generative AI Is Awesome' open-source software

Alright. Things are starting to shape up. Finally got the #OpenClaw's web-gateway fully sorted (doing so caused a brief round of "amnesia", but was able to recover).

If, like me, you're going to have multiple OpenClaw instances running, a quick
#BASH one-liner of:

$ jq -r '"http://localhost:\(.gateway.port)/?token=\(.gateway.auth.token)"' /PATH/TO/SPECIFIC/openclaw.json
Is helpful when you've forgotten (and failed to bookmark) the URL for a specific OpenClaw webUI.

RE: https://hachyderm.io/@hgrsd/116778436943297780

A fun side effect of this project was to write some bash. Haven't done that for ages and I definitely am very rusty. Initially was thinking of writing it in Zig itself, but it made much more sense and was much simpler to just use bash.

#Zig #bash #opensource

Are you a #Zig coder and #Vim user?

I've been trying to steer clear from LSPs when developing Zig and wanting to use ctags instead. But there are two issues with this:

1) ctags doesn't natively support Zig symbols; and
2) I miss being able to go-to-definition for Zig builtin functions and the std lib

https://codeberg.org/hgrsd/ztags is a simple tool (in bash) that solves this.

It bundles a Zig ctags grammar and automatically fetches the Zig source, generates tags for it, and then appends it to your project's tags so you can navigate freely between your project's symbols and Zig's stdlib code.

Hope this might be useful for some other Zig devs too. Please boost if you'd like, so that they might see it :)

#opensource #tech #programming #software #bash

Wildcards and Globbing in Linux made simple.

Learn how to use:
• *
• ?
• [a-z]
• [!]
• Hidden file matching
• Recursive globbing
• Quoting & escaping

Practical examples and best practices included.

https://www.linuxteck.com/wildcards-and-globbing-in-linux/

#Linux #Bash #ShellScripting #SysAdmin #DevOps #linuxteck

Wildcards And Globbing In Linux: 7 Essential Tricks

Learn how wildcards and globbing in Linux actually work using *, ?, and [], with real examples for rm, cp, and find commands.

LinuxTeck