• 0 Posts
  • 18 Comments
Joined 1 year ago
cake
Cake day: July 3rd, 2023

help-circle
  • It was a survey measuring a bunch of things, not sure why that was the metric they focused on for the headline though.

    "Since the start of the pandemic, grocery prices have risen 25%, the report also found.

    Some consumers have had to sacrifice necessities to afford food, the personal finance company found.

    That includes 28% who sacrificed other needs like rent or bills to pay for groceries, and 27% who occasionally skipped meals. Additionally, 18% have either applied for or considered applying for food stamps, while 15% rely on or have considered turning to food banks.

    Yet, 53% indicated they earn too much to qualify for food stamps or other government assistance but still have difficulties paying for necessities.

    While most consumers report noticing higher grocery costs,51% have also seen increases in gasoline prices; 39% said other bills like cable, electricity and internet have spiked; 27% said housing costs have gone up; and another 27% said dining out costs have risen."


  • Think of it like a club with a max capacity of 10 people, where some people have VIP cards. If a person with a VIP card wants to get into the club, the bouncer will kick out one of the people inside that doesn’t have a VIP card to make space for them.

    For a more technical explanation:

    There are several processors on computers and each can be in use by 1 process at a time. Different processes can get different amounts of time based on their priority (called niceness in Linux) and they’ll be removed from the processor once their time is up until their next share of time.

    On a real-time kernel some processes are marked as real-time (certain range of niceness values, can’t remember the exact range). If a process that is real-time says it needs some processor time, a process that isn’t real-time that’s currently running will be immediately ripped off the processor to make room for the real-time process.














  • I’d just like to interject for a moment. What you’re refering 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!