Discussion:
All Hail Midnight Commander!
Add Reply
Farley Flud
2024-11-05 20:53:50 UTC
Reply
Permalink
Midnight Commander is, hands down, the absolute best file manager+
for GNU/Linux:

https://midnight-commander.org/

_I_ use it exclusively and therefore it MUST be damned good.

MC is fast and versatile and beats ALL that GUI shit that the
crippled distros offer.

But MC was once, not too long ago, on the verge of extinction.
However, concerned people got together to bring it back and
are continuing to maintain it.

Lets give a hearty hail to these MC developers. They, as well
as countless and nameless others, make GNU/Linux truly the greatest
OS in the history of technical man.

By the way, the fantastic text editor Cooledit is based on the
code for the internal text editor of MC.

Check it out:

https://github.com/paulsheer/cooledit

Don't be a fucking distro lackey all your life.

Ha, ha, ha, ha, ha, ha, ha, ha, ha, ha, ha, ha, ha!
--
Systemd: solving all the problems that you never knew you had.
Chris Ahlstrom
2024-11-06 11:51:50 UTC
Reply
Permalink
Post by Farley Flud
Midnight Commander is, hands down, the absolute best file manager+
https://midnight-commander.org/
_I_ use it exclusively and therefore it MUST be damned good.
MC is fast and versatile and beats ALL that GUI shit that the
crippled distros offer.
But MC was once, not too long ago, on the verge of extinction.
However, concerned people got together to bring it back and
are continuing to maintain it.
Lets give a hearty hail to these MC developers. They, as well
as countless and nameless others, make GNU/Linux truly the greatest
OS in the history of technical man.
<snip>
If I'm going to use an ncurses file manager, I'll use vifm. Like mc, it
can inspect zip files.

However, mostly I get by quite well with cdargs, find, grep, bash completion,
and common unix commands like cp, rm, rmdir, and mv.

All you mc lackeys better shut the fsck up! :-D
--
What does "it" mean in the sentence "What time is it?"?
candycanearter07
2024-11-07 01:30:04 UTC
Reply
Permalink
Post by Chris Ahlstrom
Post by Farley Flud
Midnight Commander is, hands down, the absolute best file manager+
https://midnight-commander.org/
_I_ use it exclusively and therefore it MUST be damned good.
MC is fast and versatile and beats ALL that GUI shit that the
crippled distros offer.
But MC was once, not too long ago, on the verge of extinction.
However, concerned people got together to bring it back and
are continuing to maintain it.
Lets give a hearty hail to these MC developers. They, as well
as countless and nameless others, make GNU/Linux truly the greatest
OS in the history of technical man.
<snip>
If I'm going to use an ncurses file manager, I'll use vifm. Like mc, it
can inspect zip files.
However, mostly I get by quite well with cdargs, find, grep, bash completion,
and common unix commands like cp, rm, rmdir, and mv.
All you mc lackeys better shut the fsck up! :-D
I mostly use mc when I need to move a lot of files into one folder or
vice versa. It's a nice tool but a bit unwieldy for single files.

Also pushd/popd are pretty nice sometimes.
--
user <candycane> is generated from /dev/urandom
rbowman
2024-11-07 02:56:50 UTC
Reply
Permalink
Post by candycanearter07
Also pushd/popd are pretty nice sometimes.
Thanks. I'd forgotten about them.
candycanearter07
2024-11-07 21:00:03 UTC
Reply
Permalink
Post by rbowman
Post by candycanearter07
Also pushd/popd are pretty nice sometimes.
Thanks. I'd forgotten about them.
Yeah, they're more useful for moving between tasks, or sometimes when
you need to do something in a certain working directly.
--
user <candycane> is generated from /dev/urandom
rbowman
2024-11-08 02:07:39 UTC
Reply
Permalink
Post by candycanearter07
Post by rbowman
Post by candycanearter07
Also pushd/popd are pretty nice sometimes.
Thanks. I'd forgotten about them.
Yeah, they're more useful for moving between tasks, or sometimes when
you need to do something in a certain working directly.
Over the years for my work source tree I've developed an extensive alias
file like

alias cadesri='cd $SRC_DIR/newmap/cadmap/lgim'
alias cadmsg='cd $SRC_DIR/cadmsg'
alias cfs='cd $SRC_DIR/net/cfsd

My own projects aren't so well organized and it would be handy if I'm
working in bar and want to snoop around in ../../python/django/bin to popd
back when I'm done. I used to do it but it's one of those things that id
you don't use them somewhat often you forget the exist.
Chris Ahlstrom
2024-11-08 12:17:06 UTC
Reply
Permalink
Post by rbowman
Post by candycanearter07
Post by rbowman
Post by candycanearter07
Also pushd/popd are pretty nice sometimes.
Thanks. I'd forgotten about them.
Yeah, they're more useful for moving between tasks, or sometimes when
you need to do something in a certain working directly.
Over the years for my work source tree I've developed an extensive alias
file like
alias cadesri='cd $SRC_DIR/newmap/cadmap/lgim'
alias cadmsg='cd $SRC_DIR/cadmsg'
alias cfs='cd $SRC_DIR/net/cfsd
My own projects aren't so well organized and it would be handy if I'm
working in bar and want to snoop around in ../../python/django/bin to popd
back when I'm done. I used to do it but it's one of those things that id
you don't use them somewhat often you forget the exist.
You should try cdargs. Once installed, add this to your .bashrc file:

source /etc/cdargs-bash.sh

(There is also a cdargs-tcsh.csh version).

This adds some shell functions to your environment.

Then cd to where you want, and type the "mark" command. To get to that
directory (e.g. /home/user/development/git) later, type "cdb git".

If you have bash completion installed, you can use tab-completion as well:

$ cdb git/<tab>...
Post by rbowman
alias cfs='cd $SRC_DIR/net/cfsd
$ cdb cfsd

Running cdargs itself brings up a list of marked directories, and offers other
comands; "man cdargs".
--
I bought the latest computer; it came fully loaded.
It was guaranteed for 90 days, but in 30 was outmoded!
-- The Wall Street Journal passed along by Big Red Computer's SCARLETT
rbowman
2024-11-08 18:59:09 UTC
Reply
Permalink
Post by Chris Ahlstrom
Then cd to where you want, and type the "mark" command. To get to that
directory (e.g. /home/user/development/git) later, type "cdb git".
How does that differ from pushd, popd, and the stack of dormer
directories.
candycanearter07
2024-11-08 19:50:04 UTC
Reply
Permalink
Post by rbowman
Post by Chris Ahlstrom
Then cd to where you want, and type the "mark" command. To get to that
directory (e.g. /home/user/development/git) later, type "cdb git".
How does that differ from pushd, popd, and the stack of dormer
directories.
I'd assume it would persist between terminal sessions, and also be a
named system rather than just pushing to a stack.
I might install it, that sounds super useful.
--
user <candycane> is generated from /dev/urandom
Chris Ahlstrom
2024-11-08 21:55:38 UTC
Reply
Permalink
Post by rbowman
Post by Chris Ahlstrom
Then cd to where you want, and type the "mark" command. To get to that
directory (e.g. /home/user/development/git) later, type "cdb git".
How does that differ from pushd, popd, and the stack of dormer
directories.
It does a lookup.

Try it. You can delete it if you don't like it.
--
The big problem with pornography is defining it. You can't just
say it's pictures of people naked. For example, you have these
primitive African tribes that exist by chasing the wildebeest on foot,
and they have to go around largely naked, because, as the old tribal
saying goes: "N'wam k'honi soit qui mali," which means, "If you think
you can catch a wildebeest in this climate and wear clothes at the same
time, then I have some beach front property in the desert region of
Northern Mali that you may be interested in."
So it's not considered pornographic when National Geographic
publishes color photographs of these people hunting the wildebeest
naked, or pounding one rock onto another rock for some primitive reason
naked, or whatever. But if National Geographic were to publish an
article entitled "The Girls of the California Junior College System
Hunt the Wildebeest Naked," some people would call it pornography. But
others would not. And still others, such as the Spectacularly Rev.
Jerry Falwell, would get upset about seeing the wildebeest naked.
-- Dave Barry, "Pornography"
Lawrence D'Oliveiro
2024-11-08 23:54:54 UTC
Reply
Permalink
Post by candycanearter07
Also pushd/popd are pretty nice sometimes.
My way of keeping track of where I have something in progress is YATS.

(Yet Another Terminal Session)
rbowman
2024-11-09 00:50:47 UTC
Reply
Permalink
Post by Lawrence D'Oliveiro
Post by candycanearter07
Also pushd/popd are pretty nice sometimes.
My way of keeping track of where I have something in progress is YATS.
(Yet Another Terminal Session)
That works. I've got 4 Konsole tabs at the moment. Windows even caught on.
I changed the default to cmd rather than PowerShell so I can spawn
several, or even a terminal into whichever WSL is installed.
candycanearter07
2024-11-09 02:00:03 UTC
Reply
Permalink
Post by rbowman
Post by Lawrence D'Oliveiro
Post by candycanearter07
Also pushd/popd are pretty nice sometimes.
My way of keeping track of where I have something in progress is YATS.
(Yet Another Terminal Session)
That works. I've got 4 Konsole tabs at the moment. Windows even caught on.
I changed the default to cmd rather than PowerShell so I can spawn
several, or even a terminal into whichever WSL is installed.
I just have a keybind to start up a terminal session (Alt-Enter) and
abuse exec to make it easier to clean up after.
--
user <candycane> is generated from /dev/urandom
DFS
2024-11-09 02:21:05 UTC
Reply
Permalink
Post by rbowman
Post by Lawrence D'Oliveiro
Post by candycanearter07
Also pushd/popd are pretty nice sometimes.
My way of keeping track of where I have something in progress is YATS.
(Yet Another Terminal Session)
That works. I've got 4 Konsole tabs at the moment. Windows even caught on.
I changed the default to cmd rather than PowerShell so I can spawn
several, or even a terminal into whichever WSL is installed.
When you reboot Windows, reopening Terminal will bring up the number of
tabs you had open before rebooting, but the tab titles will be reset,
and the directories you were last logged to will revert to the default
(which you can set).

So it's halfway there.
Stéphane CARPENTIER
2024-11-08 22:56:29 UTC
Reply
Permalink
Post by Farley Flud
Midnight Commander is, hands down, the absolute best file manager+
https://midnight-commander.org/
_I_ use it exclusively
That's another of your sentences in which one can say a lot about.

For a start, I don't believe the "exclusively" word on your sentence.
I'm pretty sure I saw one of your videos in which you displayed a
graphical file manager.
Post by Farley Flud
and therefore it MUST be damned good.
Then, in your videos about Linux (ie: not the ones in which you are
dreaming about what you would do to others if you where able to get out
of your asylum), you show your way of using Linux is the worst possible
way of using Linux. So it would mean it's the worst tool ever. Or, as
it's not the fault of the tool if you are unable to use it correctly,
one need to read the manual and not your claims about it.

In fact, it's a TUI, so it's as close as possible as a GUI file manager
when a command line is more efficient. So that means you are a mouse
lackey who can't use properly a keyboard trying to hide it at all costs.
But, once again, you lose in you claims.

Unrelated to the sentence, but related to the tool, I tried it years
ago. When GUI file managers didn't exist on Linux. So I was eager to
have something useful to avoid the command line. But MC wasn't that good
and as I was learning the command line. So, the more I learned the
command line, the more I liked it and I never really used MC even if it
was really appealing in the beginning.
Post by Farley Flud
MC is fast and versatile and beats ALL that GUI shit that the
crippled distros offer.
Every distro offers a terminal which provide a command line better
suited than your way of trying to use it to try impress your asylum's
roommates. No need of the GUI shit you are using even if you claim
otherwise.
Post by Farley Flud
But MC was once, not too long ago, on the verge of extinction.
Yes, useless, exactly.
Post by Farley Flud
However, concerned people got together to bring it back and
are continuing to maintain it.
They are surely nostalgics.
Post by Farley Flud
By the way, the fantastic text editor Cooledit is based on the
code for the internal text editor of MC.
So what? A text editor which can't compete with vim based on a part of a
TUI toy which can compete with the command line? Why should I be
impressed? Because you say so? In fact, you are often able to impress
me, but in the ways of stupidity where you can always push the limits.
Post by Farley Flud
Don't be a fucking distro lackey all your life.
Like you? I won't.
--
Si vous avez du temps à perdre :
https://scarpet42.gitlab.io
Farley Flud
2024-11-09 19:28:45 UTC
Reply
Permalink
Post by Stéphane CARPENTIER
Unrelated to the sentence, but related to the tool, I tried it years
ago. When GUI file managers didn't exist on Linux. So I was eager to
have something useful to avoid the command line. But MC wasn't that good
and as I was learning the command line. So, the more I learned the
command line, the more I liked it and I never really used MC even if it
was really appealing in the beginning.
Would you care to make an instructional video demonstrating the supposed
superiority of your command lines versus MC?

Ha, ha, ha, ha, ha, ha, ha, ha, ha!

You cannot. That stupid junk Wayland of which you are so fond has no
screen grab and thus making such videos is not possible.

Ha, ha, ha, ha, ha, ha, ha, ha, ha!

You may think that you are progressive but you are just another stunted
distro lackey.

Ha, ha, ha, ha, ha, ha, ha, ha, ha!

I use X and I will always use X. Wayland can smooch my hairy balls.

Ha, ha, ha, ha, ha, ha, ha, ha, ha!
Joel
2024-11-09 19:42:17 UTC
Reply
Permalink
Post by Farley Flud
Post by Stéphane CARPENTIER
Unrelated to the sentence, but related to the tool, I tried it years
ago. When GUI file managers didn't exist on Linux. So I was eager to
have something useful to avoid the command line. But MC wasn't that good
and as I was learning the command line. So, the more I learned the
command line, the more I liked it and I never really used MC even if it
was really appealing in the beginning.
Would you care to make an instructional video demonstrating the supposed
superiority of your command lines versus MC?
Ha, ha, ha, ha, ha, ha, ha, ha, ha!
You cannot. That stupid junk Wayland of which you are so fond has no
screen grab and thus making such videos is not possible.
Ha, ha, ha, ha, ha, ha, ha, ha, ha!
You may think that you are progressive but you are just another stunted
distro lackey.
Ha, ha, ha, ha, ha, ha, ha, ha, ha!
I use X and I will always use X. Wayland can smooch my hairy balls.
Ha, ha, ha, ha, ha, ha, ha, ha, ha!
Shut the fuck up, weirdo loser, Stéphane pwns your dumb ass, every
time. You're better off killfiling him, so that you can jerk off in
peace, although I will continue to read his replies to you, and laugh
at your expense, imbecile. Kill yourself.
--
Joel W. Crump

Amendment XIV
Section 1.

[...] No state shall make or enforce any law which shall
abridge the privileges or immunities of citizens of the
United States; nor shall any state deprive any person of
life, liberty, or property, without due process of law;
nor deny to any person within its jurisdiction the equal
protection of the laws.

Dobbs rewrites this, it is invalid precedent. States are
liable for denying needed abortions, e.g. TX.
Stéphane CARPENTIER
2024-11-10 14:00:07 UTC
Reply
Permalink
Post by Farley Flud
Post by Stéphane CARPENTIER
Unrelated to the sentence, but related to the tool, I tried it years
ago. When GUI file managers didn't exist on Linux. So I was eager to
have something useful to avoid the command line. But MC wasn't that good
and as I was learning the command line. So, the more I learned the
command line, the more I liked it and I never really used MC even if it
was really appealing in the beginning.
Would you care to make an instructional video demonstrating the supposed
superiority of your command lines versus MC?
I don't look at videos because they are for illiterates like you who
can't read. As I have more interesting things to do than trying to
educate a first class moron unable to learn the basics, I won't. It
would be a loss of time.
Post by Farley Flud
You cannot.
I'm not as limited as you. I could if I wanted, but I don't care.
Post by Farley Flud
That stupid junk Wayland of which you are so fond
I'm not fond of Wayland. I'm using it because it's the future, so it's
always a good idea to be ready for it. I provides better security than
xorg, so it's a good start. Now, if someone comes with something better,
I'll switch to it without any issue.
Post by Farley Flud
has no screen grab and thus making such videos is not possible.
If you are limited in what you can learn, you prove in every message,
you are boundless in the ways you can show your mediocrity. Each time
you speak about something, you have to prove you don't know what you are
talking about. The real issue is that DFS is using your arguments
against Linux. And in this way, you are, as always, a Windows advocate.

Your inability to do something with Linux doesn't prove it's impossible
to be done, it only proves you are unable to learn how to do something.
So,, this link is not the only one which proves you wrong, it's only the
first one in a ten seconds research because I have no more time to spend
educating you and to prove you wrong for others who could use your
message against Linux :
<https://www.debugpoint.com/screen-recorders-linux-wayland/>
Post by Farley Flud
You may think that you are progressive but you are just another stunted
distro lackey.
In fact, your message proves that you are more a distro lackey than me.
Because, to my knowledge, no distro provides Swaywm as a default WM, so
I had to install it by myself, which is, unlike your claim, not what a
distro lackey would do. When you can't do what's not installed by default
by your distro, makes you a distro lackey. And your inability to compile
the kernel is just another proof.
Post by Farley Flud
I use X and I will always use X.
Until it wont exist. Or until you win a Darwin award.
Post by Farley Flud
Wayland can smooch my hairy balls.
No, it can't because you have no more balls than brain. The only thing
you have is a big mouth.
--
Si vous avez du temps à perdre :
https://scarpet42.gitlab.io
Farley Flud
2024-11-10 15:58:10 UTC
Reply
Permalink
Post by Stéphane CARPENTIER
Post by Farley Flud
has no screen grab and thus making such videos is not possible.
So,, this link is not the only one which proves you wrong, it's only the
first one in a ten seconds research because I have no more time to spend
educating you and to prove you wrong for others who could use your
<https://www.debugpoint.com/screen-recorders-linux-wayland/>
Nope. Wrong again.

Ffmpeg is the only choice and it does not function with that
junk Wayland.

The exception is the ffmpeg "kmsgrab" option but that's also junk
and it only works with the KDE garbage.

No one at ffmpeg wants to support junk Wayland:

https://trac.ffmpeg.org/ticket/10742

"The current behavior of screen recording with ffmpeg on wayland
is a black screen as output."

Ha, ha, ha, ha, ha, ha, ha, ha, ha, ha, ha, ha!

That's youe future.

Ha, ha, ha, ha, ha, ha, ha, ha, ha, ha, ha, ha!
--
Systemd: solving all the problems that you never knew you had.
Stéphane CARPENTIER
2024-11-10 19:57:55 UTC
Reply
Permalink
Post by Farley Flud
Post by Stéphane CARPENTIER
Post by Farley Flud
has no screen grab and thus making such videos is not possible.
So,, this link is not the only one which proves you wrong, it's only the
first one in a ten seconds research because I have no more time to spend
educating you and to prove you wrong for others who could use your
<https://www.debugpoint.com/screen-recorders-linux-wayland/>
Nope. Wrong again.
Of course it's right. It's obvious, you just have to read to know it.
Unlike your claim, it's possible to record a video under wayland.
Period. Your added limitations after the answer are only showing your
lack of knowledge.
Post by Farley Flud
Ffmpeg is the only choice
Nonsense. The choice is to chose something that works. You inability to
adapt to your environment coupled with your inability to adapt your
environment to you makes you unable to do anything. That's why you
prove, once again, you are a looser.

And won't argue too much about obs because I believe you said you use it,
but I'm not that sure. So I'll consider I have a bad memory and you
don't contradict yourself once again. But be careful in your next video.
Post by Farley Flud
and it does not function with that junk Wayland.
You have two choices. Either you use something else. Or you correct it to
make it work. You chose neither, so you pretend it's impossible but the
fact remains it's possible for everyone but you.
So, use something else.
Post by Farley Flud
That's youe future.
Once again, you are wrong. My future is not about recording videos. And
if I wanted to, I would have plenty of choices. It's your future in
which you are unable to use a computer because your toys are obsolete.
--
Si vous avez du temps à perdre :
https://scarpet42.gitlab.io
Joel
2024-11-10 20:07:30 UTC
Reply
Permalink
Post by Stéphane CARPENTIER
So, use something else.
Post by Farley Flud
That's youe future.
Once again, you are wrong. My future is not about recording videos. And
if I wanted to, I would have plenty of choices. It's your future in
which you are unable to use a computer because your toys are obsolete.
Larry/Russell/whatever is wrong so often, even about the most basic
things ("see my badass black screen, for my desktop!!!"), it's
unbelievable. It'd come off as a troll, except he's not bright enough
to come up with that, he really does use a Xeon box as a 1994 model
PC. Stupid AF.
--
Joel W. Crump

Amendment XIV
Section 1.

[...] No state shall make or enforce any law which shall
abridge the privileges or immunities of citizens of the
United States; nor shall any state deprive any person of
life, liberty, or property, without due process of law;
nor deny to any person within its jurisdiction the equal
protection of the laws.

Dobbs rewrites this, it is invalid precedent. States are
liable for denying needed abortions, e.g. TX.
Farley Flud
2024-11-10 21:58:58 UTC
Reply
Permalink
Post by Stéphane CARPENTIER
Post by Farley Flud
Ffmpeg is the only choice
Nonsense. The choice is to chose something that works.
Idiot.

Ffmpeg is the only utility that allows direct access to the
screen without the encumbrance of a bloated GUI.

This works only under X.

Wayland, and its stupid developers, never envisioned such
a requirement.
Post by Stéphane CARPENTIER
So, use something else.
Under junk Wayland, there is nothing else.
Post by Stéphane CARPENTIER
Post by Farley Flud
That's youe future.
Once again, you are wrong. My future is not about recording videos.
Your future is fucking bullshit.

Video screen capture is an essential, even critical, function of
any OS.

On GNU/Linux, only X Window offers such functionality.
--
Systemd: solving all the problems that you never knew you had.
Joel
2024-11-10 22:28:26 UTC
Reply
Permalink
Post by Farley Flud
Ffmpeg is the only utility that allows direct access to the
screen without the encumbrance of a bloated GUI.
Heh ...
--
Joel W. Crump

Amendment XIV
Section 1.

[...] No state shall make or enforce any law which shall
abridge the privileges or immunities of citizens of the
United States; nor shall any state deprive any person of
life, liberty, or property, without due process of law;
nor deny to any person within its jurisdiction the equal
protection of the laws.

Dobbs rewrites this, it is invalid precedent. States are
liable for denying needed abortions, e.g. TX.
Stéphane CARPENTIER
2024-11-11 10:07:18 UTC
Reply
Permalink
Post by Farley Flud
Post by Stéphane CARPENTIER
Post by Farley Flud
Ffmpeg is the only choice
Nonsense. The choice is to chose something that works.
Idiot.
That I already know. You repeat yourself and you show once again you
have no imagination.
Post by Farley Flud
Ffmpeg is the only utility that allows direct access to the
screen without the encumbrance of a bloated GUI.
Once again, you show you just copy/past information you found on
Internet without understanding it. Either you need a GUI, so you use it
in the proper way. Or you don't need a GUI and you launch ffmpeg
directly outside of a GUI and there is no issue. So, the issue is, once
again, only in your head. Without a brain, you have a lot of place to
put stupid things in it.
Post by Farley Flud
This works only under X.
Yes, that's the reason X have to be replaced.
Post by Farley Flud
Wayland, and its stupid developers, never envisioned such
a requirement.
In fact, they did, that's a concept you were never able to understand.
It's called security.
Post by Farley Flud
Post by Stéphane CARPENTIER
So, use something else.
Under junk Wayland, there is nothing else.
There is, I provided you a link. You don't accept it because you can't
read, you can't learn and you can't do do nothing. You are a parasite
only able to criticise and wait for others to do everything for you. But
as nobody will ever care about you, you are condemn to stay hopeless
unable to do anything but crying alone inside you asylum.
Post by Farley Flud
Post by Stéphane CARPENTIER
Post by Farley Flud
That's youe future.
Once again, you are wrong. My future is not about recording videos.
Your future is fucking bullshit.
Maybe, but I'm not the one crying because I'm unable to use my computer
anymore.
Post by Farley Flud
Video screen capture is an essential, even critical, function of
any OS.
Only for illiterates like you who can only insult using the only word
you know.
Post by Farley Flud
On GNU/Linux, only X Window offers such functionality.
So, what? You have a lot of choices. But you are too degenerate to
do something useful.

The X developers said X is broken, there is nothing possible to correct
it, they don't want to take care of it anymore. If you where just the
tenth of what you pretend to be, you would be able to step in a take
care of it by yourself. But you can't because you are just a big mouth.

As you said there are issues with Wayland, you could step in to help
others to do the stuff needed to correct it. But you can't because your
mouth is far bigger than your abilities.

You can't help, you can't adapt, you can't learn, you can only
criticise. So keep criticising, it will tell more about your uselessness
than about others.

And by the way, thanks for the badge of honor you granted me at the
beginning of your message. I almost forgot.
--
Si vous avez du temps à perdre :
https://scarpet42.gitlab.io
CrudeSausage
2024-11-10 23:39:19 UTC
Reply
Permalink
Post by Stéphane CARPENTIER
Post by Farley Flud
Post by Stéphane CARPENTIER
Post by Farley Flud
has no screen grab and thus making such videos is not possible.
So,, this link is not the only one which proves you wrong, it's only the
first one in a ten seconds research because I have no more time to spend
educating you and to prove you wrong for others who could use your
<https://www.debugpoint.com/screen-recorders-linux-wayland/>
Nope. Wrong again.
Of course it's right. It's obvious, you just have to read to know it.
Unlike your claim, it's possible to record a video under wayland.
Period. Your added limitations after the answer are only showing your
lack of knowledge.
Post by Farley Flud
Ffmpeg is the only choice
Nonsense. The choice is to chose something that works. You inability to
adapt to your environment coupled with your inability to adapt your
environment to you makes you unable to do anything. That's why you
prove, once again, you are a looser.
No, Larry Pietraskiewicz is a _loser_. The only thing loose about Larry
is his asshole after the neighbourhood burls are done with it.

< snip >
--
CrudeSausage
Paleoconservative, Catholic, Christ is king.
Trump is a legend.
Physfitfreak
2024-11-09 04:22:40 UTC
Reply
Permalink
Post by Farley Flud
Midnight Commander is, hands down, the absolute best file manager+
https://midnight-commander.org/
_I_ use it exclusively and therefore it MUST be damned good.
MC is fast and versatile and beats ALL that GUI shit that the
crippled distros offer.
But MC was once, not too long ago, on the verge of extinction.
However, concerned people got together to bring it back and
are continuing to maintain it.
Lets give a hearty hail to these MC developers. They, as well
as countless and nameless others, make GNU/Linux truly the greatest
OS in the history of technical man.
By the way, the fantastic text editor Cooledit is based on the
code for the internal text editor of MC.
https://github.com/paulsheer/cooledit
Don't be a fucking distro lackey all your life.
Ha, ha, ha, ha, ha, ha, ha, ha, ha, ha, ha, ha, ha!
How do you rate Andrea Borman's knowledge and usefulness?


Farley Flud
2024-11-09 12:28:12 UTC
Reply
Permalink
Post by Physfitfreak
How do you rate Andrea Borman's knowledge and usefulness?
http://youtu.be/YVI6SCtVu4c
Videos are useful for some purposes and useless for others.

In this case, a program tutorial, videos are useless. This
bitch should create a web page or pages instead. It would
be far more efficient.

Needless to say, I did not view the video. Why should I waste
10 MINUTES when the same information can be packed into 10
seconds of text?

The programs she recommends are only GUI wrappers around
ffmpeg. They can allow a novice to avoid the steep learning
curve that the ffmpeg CLI requires, but, as with all GUI wrappers,
they cannot express the full potentiality of the CLI.

It is always better to wrestle with the CLI. In time, the
user will be able wield it far more powerfully than any GUI.
--
Systemd: solving all the problems that you never knew you had.
Physfitfreak
2024-11-10 00:58:04 UTC
Reply
Permalink
Post by Farley Flud
In this case, a program tutorial, videos are useless. This
bitch should create a web page or pages instead. It would
be far more efficient.
I think part of the reason she does videos is to keep her brain
functioning. In the middle of talking she sometimes loses the thread of
thought and keeps repeating the last note she made until she remembers
how she wanted to continue.

Einstein did that with studying high school geometry. He had that
geometry book by his bed in hospital when he died. Some late 1800s
famous American physician also did that by reviewing Latin. When a
government high official visited him during the last days of his life he
saw he was busy learning Latin in his bed. He asked him something to the
effect of, "Why on earth are you studying Latin at your age and
condition?" To which he responded something like, "My medicine is for my
body, and Latin is for my brain."

Borman was probably a high school teacher or something, and now she's
using her experience in dealing with various OS to help her brain keep
going, I think.
Farley Flud
2024-11-10 11:37:26 UTC
Reply
Permalink
Post by Physfitfreak
I think part of the reason she does videos is to keep her brain
functioning.
Probably the biggest part is a desire to make $bucks from
Google. I don't know how that works but she has 54K subscribers
and that must bring in something.

I seldom partake of YouTube instructional videos but whenever
I do I usually encounter another "talking head" and that really
infuriates me. It makes me shout at the screen: "I don't want
to see your ugly mug! I want information!"

Very few of these YouTubers keep their ugly heads out of their
videos.

By the way, I understand that YouTube has LOTS of ads but since
I always use yt-dlp to view videos I will never see them.
--
Systemd: solving all the problems that you never knew you had.
Physfitfreak
2024-11-11 02:04:55 UTC
Reply
Permalink
Post by Farley Flud
I don't know how that works but she has 54K subscribers
Linux must've become popular. Even computer newbies must by now hate
Windows.

I give it a good chance that the code monkey cro-magnon "DFS" has
installed every major form of linux on his various computers, and every
now and then licks the screen in joy, saying "If not Physfit's dick, why
not Linux then?".

There's no reason for him (her) to be in COLA other than learning even
more about linux.
DFS
2024-11-11 16:18:56 UTC
Reply
Permalink
Post by Physfitfreak
Post by Farley Flud
I don't know how that works but she has 54K subscribers
Linux must've become popular.
No.
Post by Physfitfreak
Even computer newbies must by now hate Windows.
Newbs generally like easy to use GUIs like Windows or Macs. That's why
the Linux community has spent so much effort building a dozen desktop
GUIs environments.
Post by Physfitfreak
I give it a good chance that the code monkey cro-magnon "DFS" has
installed every major form of linux on his various computers,
Yes, I've installed MANY Linux distros to metal in the past 20 years.
But right now I only have Kali Linux installed in Windows WSL.

I first tried Red Hat 4.2 in 1997 for a short while. Should've stuck
with it, to learn *nix if nothing else. But the job market was all
Windows and MS Office, and I was already doing well there.

In 2004 I was perusing a computer magazine and saw a Novell ad
indemnifying Linux users from lawsuits against Linux. I thought that
was cool, so I took another look at Linux, and found cola.
Post by Physfitfreak
and every
now and then licks the screen in joy, saying "If not Physfit's dick, why
not Linux then?".
Doesn't Iran still stone their chimps to death for homosexuality?
Better be careful about the homoerotic fantasies you post.

Did you see the brave Iranian who took off her clothes and walked around
in her underwear?

https://www.cnn.com/2024/11/03/middleeast/iranian-woman-detained-after-taking-clothes-off-intl/index.html

I wonder if that shit country full of weak, backward, insecure males
like you will murder her for it.

"The university’s public relations director said the woman was suffering
from mental health issues." Yeah bullshit. She suffers from severe
oppression at the hands of wimpy males who wilt at the thought of
competing with a woman.
Post by Physfitfreak
There's no reason for him (her) to be in COLA other than learning even
more about linux.
This can be a decent place to learn Linux and some programming even, but
reading a few books and using a bash shell is much better.

* How Linux Works: What Every Superuser Should Know
* Unix Power Tools
* a book on shell scripting
* the Linux Filesystem Hierarchy Standard document


And if you're feeling exceptionally squirrelly, look at systems
programming books such as:

* The Linux Programming Interface by Kerrisk
* Linux System Programming by Love
* Advanced Programming in the Unix Environment by Stevens
* Low Level Programming by Zhirkov
* https://linux-audit.com/elf-binaries-on-linux-understanding-and-analysis/

For IT Soopermen like you and Feeb, who claim writing an OS is easy,
this should all be second nature.


I came across this nice chart recently:

https://bernardteo.me/nus/CS2106%20Reference.pdf

That was created by a stellar undergrad student (bachelor's in both
applied math and computer science, both with high distinction, from
National University of Singapore).


OSes and programming and databases and tech is endlessly interesting.
Loading...