Skip Navigation
Why Didn't Democrats Do More When They Controlled Both Houses of Legislature, The White House, and The Supreme Court During Obama's First Term?
  • Like it or not, the United States are of the corporations, by the corporations, for the corporations.

    Now I totally disagree with Republicans on almost everything especially since 2014 but one thing I like about them is, how to pass the actual laws, and how to put justices in supreme court.

    No matter how wrong are they, or who paid (directly or indirectly) to pass the laws... when they have majority, they just steamrolls.

    Democrats on the other hand are just talks.

    Edit: Though, on a larger scale, I think Democracy is a failed experiment. But that's entirely a different debate.

    Look at just one example:

    In Europe, Apple was told accept outside payments. Apple made mockery of the wish of the people they are making money from... and made it more expensive to use outside payment system.

    Now take a guess, if it was China asked Apple to implement something serious... do you think Apple would be able to make mockery of Chinese government and still survive in China?

  • Your morning coffee may be more than a half million years old
  • What the actual fuck... and that too from apnews?

    Now only if those "researchers" looked even further back, they would have found that ultimate building blocks of any coffee, like electrons and up & down quarks came into existence around 13.8 billion year ago (or may be ~28 billion year ago as claimed by some new research), and our universe may be a part of infinite multiverse that may have existed forever.

    So wouldn't it be even bigger headline that coffee has existed forever :)

  • (Read before Comment) Why you don't like GIMP UI?
  • As others have mentioned, it's simple things takes alot time finding/figuring out.

    I use GIMP within Ubuntu MATE few times a week to edit pictures. Simple edits nothing major.

    One of the thing I need regularly is to highlight certain part of the picture.

    Now in Microsoft Paint I can draw a rectangle, choose its border thickness, and color in 2 seconds.

    I have learned how to do the same in GIMP few times but it took alot of time and I still forgets after few weeks.

    So now I just reboot the PC and log into Windows or use Windows virtual machine and draw rectangle in 2 seconds in Microsoft Paint.

    Mine is extremely simple use case, so I can only guess how difficult or how time consuming it would be for actual professional to create artistic work in GIMP vs Photoshop (or in similar commercial software).

    Just my 2 cents.

  • What will happen to large companies once poor people have no more money to use?
  • The first thing that came to mind upon reading the title is the movie Repo Men from 2010.

    Plot from the Wikipedia:

    In 2025, advancements in medical technology have perfected bio-mechanical organs.

    A corporation known as The Union sells these expensive "artiforgs" on credit, and when customers are unable or unwilling to pay for their artiforgs The Union sends "repo men" to locate and forcibly repossess the organ - invariably resulting in the death of the owner.

  • Why and how does atmosphere exist? Shouldn't all oxygen (and everthing else) fall down due to gravity?
  • According to this physics.stackexchange.com answer:

    "I suppose the surprising thing is why the atmosphere doesn't all fall immediately to the Earth's surface to form a thin dense layer of air molecules.

    The reason this doesn't happen is that air molecules are all whizzing around at surprisingly high speeds - typically hundreds of metres per second depending on the temperature.

    The air molecules bash into each other and knock each other around, and the air molecules near the ground bash into the air molecules above them and stop them falling down."

    Detailed explanation from another answer:

    "The key ingredient is temperature.

    If it were zero then all the air would indeed just fall down to the ground (actually, this is a simplification I'll address later).

    As you increase the temperature the atoms of the ground will start to wiggle more and they'll start to kick the air molecules giving them non-zero average height.

    So the atmosphere would move a little off the ground. The bigger the temperature is the higher the atmosphere will reach.

    Note: there are number of assumptions above that simplify the picture. They are not that important but I want to provide a complete picture:

    1, Even at the zero temperature the molecules would wiggle a little because of quantum mechanics

    2, The atmosphere would freeze at some point (like 50K) so under that temperature it would just lie on the ground

    3, I assumed that the ground and the atmosphere have the same temperature because they are in the thermal equilibrium; in reality their temperatures can differ a little because of additional slow heat-transfer processes."

  • How to properly pass output of a command to another command?
  • I used -y:

    dpkg --list | grep 'linux-image\|linux-headers\|linux-modules' | grep '6.5.0-060500rc3' | awk '{print $2}' | xargs -I{} sudo apt purge -y {}
    

    and there were a lot of errors but it did purge those kernels. Please let me know if there's better way. Thanks.

  • How to properly pass output of a command to another command?

    I like to pass output of this command:

    dpkg --list | grep 'linux-image\|linux-headers\|linux-modules' | grep '6.5.0-060500rc3' | awk '{print $2}'

    which is:

    linux-headers-6.5.0-060500rc3 linux-headers-6.5.0-060500rc3-generic linux-image-unsigned-6.5.0-060500rc3-generic linux-modules-6.5.0-060500rc3-generic

    to this next command:

    sudo apt-get purge

    I tried to use xargs but getting errors:

    ``` root@cubic:~# dpkg --list | grep 'linux-image\|linux-headers\|linux-modules' | grep '6.5.0-060500rc3' | awk '{print $2}' | xargs -I{} sudo apt purge {}

    Reading package lists... Done Building dependency tree... Done Reading state information... Done The following packages will be REMOVED: linux-headers-6.5.0-060500rc3* linux-headers-6.5.0-060500rc3-generic* 0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.

    1 not fully installed or removed.

    After this operation, 111 MB disk space will be freed. Do you want to continue? [Y/n] Abort.

    Reading package lists... Done Building dependency tree... Done Reading state information... Done The following packages will be REMOVED: linux-headers-6.5.0-060500rc3-generic* 0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.

    1 not fully installed or removed.

    After this operation, 27.9 MB disk space will be freed. Do you want to continue? [Y/n] Abort.

    Reading package lists... Done Building dependency tree... Done Reading state information... Done The following packages will be REMOVED: linux-image-unsigned-6.5.0-060500rc3-generic* 0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.

    1 not fully installed or removed.

    After this operation, 14.1 MB disk space will be freed. Do you want to continue? [Y/n] Abort.

    Reading package lists... Done Building dependency tree... Done Reading state information... Done The following packages will be REMOVED: linux-image-unsigned-6.5.0-060500rc3-generic* linux-modules-6.5.0-060500rc3-generic* 0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.

    1 not fully installed or removed.

    After this operation, 595 MB disk space will be freed. Do you want to continue? [Y/n] Abort.

    root@cubic:~# dpkg --list | grep 'linux-image\|linux-headers\|linux-modules' | grep '6.5.0-060500rc3' | awk '{print $2}' linux-headers-6.5.0-060500rc3 linux-headers-6.5.0-060500rc3-generic linux-image-unsigned-6.5.0-060500rc3-generic linux-modules-6.5.0-060500rc3-generic

    ```

    I'm running this commands inside Cubic environment on Ubuntu MATE. Thanks.

    2
    Looking for a distro to dual-boot with Windows 10
  • I would highly recommend Ubuntu MATE. I just love its simplicity.

    Though you may not need, AskUbuntu and UbuntuForums are great places to find help.

    I've been running Ubuntu MATE alongside Windows 10/11 for many years.

  • What the best mastodon instance?
  • mastodon.social Though I too am new there, I like it. It feel refreshing from Twitter's trash.

    Regarding client: I mostly use web on desktop and mobile; though they have official Android app too.

    Edit: They are federated with Pixelfed and Kbin too.

  • InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)TH
    TheJack @lemmy.world
    Posts 1
    Comments 16