Sharing is caring

Share with us a software that made your life easier

Other urls found in this thread:

ketarin.org/forum/
twitter.com/SFWRedditVideos

no
>>>/leftypol/

antimicro

using my gamepad as a mouse/multimedia keys when i'm in couch/bed

the cliché ones such as youtube-dl, ffmpeg, curl, imagemagick, mpv/vlc, git, iconv, pandoc or SSH
RSS

ketarin.org/forum/

>a software
No, you silly ESLfag. Software is a mass noun.

u literally commented to be useless, noice

no, he's got a point. you should say a piece of software, or "an application".

...

do you have any useful info, other than saying that my grammar sucks, read the post

Musicbrainz Picard. Im an autist about my music tags and my collection is on the order of TBs, so its indispensable.

wow, this is actually nice, thanks user

>useful info
I would recommend Pimsleur or Rosetta Stone to improve your English.

Poo in the loo go away.

The GNU OS.

keyboard driver is unironically pretty useful piece of software

im poo and im stickin to u

>an app
eww, it's called a program

that is a 100% true, can't argue with solid logic

you mean Linux?

i would recommend you get a life, you sound like you need one, thanks for the programs though, appreciated

This sentence was a little better. Keep up the good work, user.

>I'd just like to interject for a moment. What you're referring to as Linux, is in fact, GNU/Linux, or as I've recently taken to calling it, GNU plus Linux. Linux is not an operating system unto itself, but rather another free component of a fully functioning GNU system made useful by the GNU corelibs, shell utilities and vital system components comprising a full OS as defined by POSIX. Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called "Linux", and many of its users are not aware that it is basically the GNU system, developed by the GNU Project. There really is a Linux, and these people are using it, but it is just a part of the system they use. Linux is the kernel: the program in the system that allocates the machine's resources to the other programs that you run. The kernel is an essential part of an operating system, but useless by itself; it can only function in the context of a complete operating system. Linux is normally used in combination with the GNU operating system: the whole system is basically GNU with Linux added, or GNU/Linux. All the so-called "Linux" distributions are really distributions of GNU/Linux.

gentoo

the community has spoken unanimously, respect

I'm terribly sorry for interjecting another moment, but what I just told you is GNU/Linux is, in fact, just Linux, or as I've just now taken to calling it, Just Linux. Linux apparently does happen to be a whole operating system unto itself and comprises a full OS as defined by POSIX.

Most computer users who run the entire Linux operating system every day already realize it. Through a peculiar turn of events, I was misled into calling the system "GNU/Linux", and until now, I was unaware that it is basically the Linux system, developed by the Linux project.

There really isn't a GNU/Linux, and I really wasn't using it; it is an extraneous misrepresentation of the system that's being used. Linux is the operating system: the entire system made useful by its included corelibs, shell utilities, and other vital system components. The kernel is already an integral part of the Linux operating system, never confined useless by itself; it functions coherently within the context of the complete Linux operating system. Linux is never used in combination with GNU accessories: the whole system is basically Linux without any GNU added, or Just Linux. All the so-called "GNU/Linux" distributions are really distributions of Linux.

Just testing some comments on a dead thread.
Don't mind me
fn main() {
let s1 = "This is your input";
let s2 = &s1[5..];

println!("{}", s1);
println!("{}", s2);
}

#include
#include
#if __cplusplus >= 201703L
#include
#endif

#if __cplusplus >= 201103L
auto main() -> int
#else
int main()
#endif
{
#if __cplusplus >= 201103L
std::string s1 {"This is your input"};
#else
std::string s1 = std::string("This is your input");
#endif

#if __cplusplus >= 201703L
std::string_view s2 { s1 };
s2.remove_prefix(static_cast(5));
#else
std::string s2 = s1.substr(static_cast(5));
#endif

std::cout