Uncategorized

как отстортировать строки файла

содержание файла a x 2 b n 3 c m 1 как отсортировать строки по третьему столбцу? результат: c m 1 a x 2 b n 3 если можно пример кода на python или bash cmd

Uncategorized

Python SQLAlchemy database model for Version Control system

This is my first time creating a non-trivial database and I was wondering what I could do better. As the title says this will be used a in toy version control system. Most of my choices feel "random" because I do not know what is and is not important. I also can not decide on […]

Uncategorized

Magento2 product collection returning empty value instead of 0 (zeros)

I built my own product collection which I use for my own shop dashboard. What it should do is for each selected product to go through the last 13 months and show me the amount that was sold. … public function __construct( \Magento\Sales\Model\ResourceModel\Report\Bestsellers\CollectionFactory $ collectionFactory, // for bestseller … array $ data = [] ) […]

update security certificate on unsupported operating system

I am using an old Macbook Pro (13 inch, Mid 2014) with Version 10.11.6 of the OS. The OS can’t be updated anymore. For the most part, the computer is still very functional with two caveats. I’m guessing and hoping these two caveats are related (and can be solved by the same solution) First, I […]

European accessibility act?

This is a long shot, but I hope to find someone that can help me. I work for a company that creates digital products for healthcare professionals. Think dashboard with patient data (lab results, dossier etc.). It’s for healthcare professionals, not patients Now I know of the European accessibility act where companies have to comply […]

Uncategorized

WP appending -2 to the end of my slug

I would like to create a page on wordpress with this URL: https://my-website.org/landing-page/ However, it seems that the slug /landing-page/ has already been created in the past because it does not return a "404 Page not found" error but redirects to the home page: https://my-website.org/ When I try to create a page with the following […]

Uncategorized

Use Ubuntu Frame to implement “apps”

Currently I have Ubuntu Frame running wpe-webkit-mir-kiosk displaying the Home Assistant webpage on a touch screen x86 machine. I’d like to have a way "swap apps" from the touchscreen, and have it return after X amount of idle time. Apps here being either loading a different web address or opening other snaps. Home Assistant is […]

Finding the probability of having a genetic trait given test is positive

I’ve been doing this question but I’m a little stuck on the second part. The first part is as follows: The probability of a randomly selected person in a population having a particular genetic trait is 0.00001. A test for this trait successfully detects it, if present, 99.9% of the time, and only returns a […]

How do materials and shaders work in graphics programming?

I stumbled upon a few videos about shaders and materials from The Cherno and my understanding is that materials are this sort of input that a shader takes to calculate an output instead of hard coding values into the shader so basically shaders become more flexible since you can control what their output is with […]