Which podcast client do you guys use?

|
smol_mazunki 2022-09-19 05:40:17
https://github.com/mackstann/tinywm

GitHub – mackstann/tinywm: The tiniest window manager.GitHub
The tiniest window manager. Contribute to mackstann/tinywm development by creating an account on GitHub.
smol_mazunki 2022-09-19 05:40:24
reminds me of this project
smol_mazunki 2022-09-19 05:40:56
tinywm.c is the source code, annotated.c is the documented version
smol_mazunki 2022-09-19 11:45:27
https://artemis.sh/2022/09/18/wayland-from-an-x-apologist.html

An X11 Apologist Tries Waylandartemis.sh
I think it’s only fair to call me an X apologist. I get incredibly frustrated when people talk about dropping support for X11. I fight back against the notion that some day X11 will be dead and unmaintained, a curiosity of a time before. I’ve spoken to people in my circles at-length about the accessibility tools that Wayland simply hasn’t been capable of supporting that X11 has. A lot of times, I’ve ended this conversation with “Maybe 5 years from now it’ll be good”. Well it’s 5 years in since I first said those words, and you know what, I’m actually pleasantly surprised.
Kueppo 2022-09-20 01:55:40
Mates, I want to cp OS to another partition, any advice on the most appropiate tool for that?
Ceda EI 2022-09-20 14:49:27
if the target partition is equal or bigger, dd first to second, chroot into the second and reinstall bootloader
marcotrosi 2022-09-20 14:56:56
hello and welcome Mohammad
Mohammad 2022-09-20 14:58:54
Thanks. I’m happy to be a part of your community. I hope to learn more of UNIX from you guys.
Kueppo 2022-09-20 15:45:39
Ceda EI 2022-09-20 14:49:27
if the target partition is equal or bigger, dd first to second, chroot into the second and reinstall bootloader

Thanks 👍

moogiwaraa 2022-09-21 05:07:41
Which podcast client do you guys use?
mendel7 2022-09-21 06:06:57
moogiwaraa 2022-09-21 05:07:41
Which podcast client do you guys use?

antennapod on android

mendel7 2022-09-21 06:07:09
i hate it but i can’t find anything better lol
moogiwaraa 2022-09-21 06:09:31
Anything on desktop?
mendel7 2022-09-21 06:12:26
you can probably use any rss newsfeed app to download the mp3 and then use mpv/vlc/whatever
mendel7 2022-09-21 06:12:32
i meant to try newsboat
moogiwaraa 2022-09-21 06:27:46
Ah good idea, thanks 🙂
moogiwaraa 2022-09-21 07:19:55
https://www.redhat.com/sysadmin/bash-bang-commands

Bash bang commands: A must-know trick for the Linux command lineEnable Sysadmin
Your bash history maintains a record of the commands you’ve entered. Here’s how to make good use of that record.
Jamerive 2022-09-21 07:21:10
mendel7 2022-09-21 06:12:26
you can probably use any rss newsfeed app to download the mp3 and then use mpv/vlc/whatever

Why not cmus in terminal?

Kueppo 2022-09-21 08:26:11
Ceda EI 2022-09-20 14:49:27
if the target partition is equal or bigger, dd first to second, chroot into the second and reinstall bootloader

Currently on sda1

One interesting fact I noticed, I never had to chroot and install the bootloader again ’cause dd copies part’s UUID

so I dded 7 to 1

$ sudo blkid | grep -E ‘sda(1|7):’

/dev/sda7: UUID=”8df886a6-60fe-4cf2-abf0-fb73e1a3724d” BLOCK_SIZE=”4096″ TYPE=”ext4″ PARTLABEL=”ArchLinux” PARTUUID=”f1661d61-404e-4448-a3c2-516cb74082ce”
/dev/sda1: UUID=”8df886a6-60fe-4cf2-abf0-fb73e1a3724d” BLOCK_SIZE=”4096″ TYPE=”ext4″ PARTLABEL=”debianx” PARTUUID=”d62fa1a3-7805-4564-98d3-c9bd47c99202″

since grub.cfg uses UUID instead of labels, it was fooled by this,

$ cat /boot/grub/grub.cfg | grep -E ‘Arch.+8df.+{$’ | head -n1

menuentry ‘Arch Linux’ –class arch –class gnu-linux –class gnu –class os $menuentry_id_option ‘gnulinux-simple-8df886a6-60fe-4cf2-abf0-fb73e1a3724d’ {

Another conclusion I got is that grub seems to orderly iterate over partitions to check the wanted UUID.

Shah_baaz2 2022-09-21 18:09:35
Hi can anyone help me in writing a function which will check if docker is installed or not in rhel family
moogiwaraa 2022-09-21 18:22:59
Shah_baaz2 2022-09-21 18:09:35
Hi can anyone help me in writing a function which will check if docker is installed or not in rhel family

command -v <program>
if [$? != 0 ]; then
# exit
fi

raytracer9 2022-09-21 18:26:36
moogiwaraa 2022-09-21 18:22:59
command -v <program>
if [$? != 0 ]; then
# exit
fi

Also, you redirect the command output (stdout, stderr) if it’s just for sake of checking command availability

raytracer9 2022-09-21 18:28:26
Kueppo 2022-09-21 08:26:11
Currently on sda1

One interesting fact I noticed, I never had to chroot and install the bootloader again ’cause dd copies part’s UUID

so I dded 7 to 1

$ sudo blkid | grep -E ‘sda(1|7):’

/dev/sda7: UUID=”8df886a6-60fe-4cf2-abf0-fb73e1a3724d” BLOCK_SIZE=”4096″ TYPE=”ext4″ PARTLABEL=”ArchLinux” PARTUUID=”f1661d61-404e-4448-a3c2-516cb74082ce”
/dev/sda1: UUID=”8df886a6-60fe-4cf2-abf0-fb73e1a3724d” BLOCK_SIZE=”4096″ TYPE=”ext4″ PARTLABEL=”debianx” PARTUUID=”d62fa1a3-7805-4564-98d3-c9bd47c99202″

since grub.cfg uses UUID instead of labels, it was fooled by this,

$ cat /boot/grub/grub.cfg | grep -E ‘Arch.+8df.+{$’ | head -n1

menuentry ‘Arch Linux’ –class arch –class gnu-linux –class gnu –class os $menuentry_id_option ‘gnulinux-simple-8df886a6-60fe-4cf2-abf0-fb73e1a3724d’ {

Another conclusion I got is that grub seems to orderly iterate over partitions to check the wanted UUID.

Oh, I had no idea about this. This is going to my saved messages so I can check it later too

raytracer9 2022-09-21 18:31:15
moogiwaraa 2022-09-21 07:19:55
https://www.redhat.com/sysadmin/bash-bang-commands

This is nice guide and I knew of the tricks but I forgot to use them because of using vim mode in the shell. Still, it’s handy to know them

moogiwaraa 2022-09-21 18:32:51
raytracer9 2022-09-21 18:31:15
This is nice guide and I knew of the tricks but I forgot to use them because of using vim mode in the shell. Still, it’s handy to know them

I was only aware of !!. But many times the command I need is not the last one. !<char> would be very useful.

raytracer9 2022-09-21 18:33:32
moogiwaraa 2022-09-21 18:32:51
I was only aware of !!. But many times the command I need is not the last one. !<char> would be very useful.

Yes, vim mode and fzf history etc. they made me forgot these tricks

moogiwaraa 2022-09-21 18:33:49
Yeah true
raytracer9 2022-09-21 18:34:21
moogiwaraa 2022-09-21 18:32:51
I was only aware of !!. But many times the command I need is not the last one. !<char> would be very useful.

Btw, what’s the next island you going to, kaizokū Ō ?

moogiwaraa 2022-09-21 18:35:05
Focussing on onigashima, kaido is overpowering
raytracer9 2022-09-21 18:35:43
moogiwaraa 2022-09-21 18:35:05
Focussing on onigashima, kaido is overpowering

You not updated ?

Spoilers:

Kaidou is long defeated

moogiwaraa 2022-09-21 18:36:16
raytracer9 2022-09-21 18:35:43
You not updated ?

Spoilers:

Kaidou is long defeated

Not clicking it. Is it from manga? then no I’m not updated

raytracer9 2022-09-21 18:37:03
moogiwaraa 2022-09-21 18:36:16
Not clicking it. Is it from manga? then no I’m not updated

Yes, that’s why I put it on spoiler. I watch the episodes too and the fight is going awesome. Enjoy the journey 👍

Shah_baaz2 2022-09-22 10:43:53
Hi can anyone tell me what does
yum install utils -y

Do ?? In simple language

Henk Metselaar 2022-09-22 11:41:24
On rpm based linux installations, it would install something called utils. the -y flag makes it assume yes on questions (like whether you want to pull in dependencies, I guess). I’m not using yum though. I just opened man yum https://www.man7.org/linux/man-pages/man8/yum.8.html
Benigns 2022-09-22 11:42:20
Shah_baaz2 2022-09-22 10:43:53
Hi can anyone tell me what does
yum install utils -y

Do ?? In simple language

It installs utilis package and -y flag stands for yes. If the installation process prompts for permit to type y for yes and n for no, this -y flag will do the job without you actually typing y each time. What utilies package does you can check manpage by running man utilis to know more.

|