Tried omarchy for a bit, some things, I dont like how packages are installed and that is not the fault of omarchy but of arch linux itself, I dont like hyprland it was buggy and a lot of apps dont support hyprland which is a pain.
Announcing Amazon S3 Files.
The first and only cloud object store with fully-featured, high-performance file system access.
Learn more here. https://t.co/rNuWa5Rsi2
Use to have a couple of websites hosted on my homelab but migrated them to the cloud, but I manage my cloud servers using self hosted coolify on my home lab which is now mainly used to configure, build and deploy docker containers.
This question comes up a lot, I would say c, but the actually answer should be is what are you passionate in and what language would you feel that you can get a hang of.
@pcshipp Intellij IDEA and Pycharm is paid software by jetbrains. Eclipse primary rely on donations and sponsors, and NetBeans backed by apache which they too rely on donations and sponsors, and vscode is already backed by a trillion dollar company.
@SumitM_X Yes, by default all fields in most database are nullable. Except for primary keys
CREATE TABLE Orders (
OrderID INT PRIMARY KEY,
CustomerID INT,
OrderDate DATE NOT NULL,
FOREIGN KEY (CustomerID) REFERENCES Customers(CustomerID)
);
@tech_girl Python the recommended for variables, functions/methods and params to be snake_case. for classes PascalCase. But for constants be SCREAMING_SNAKE_CASE. Also since python does not have private keyword for encapsulation you denote using a leading _ for encapsulated names.