Reminder that Fedora Sericea was renamed to Fedora Sway Atomic
Any rolling release still wins because they are at version 2024.1.9
.users {
id: int !primary-key;
name: text;
}
.users::insert {
id: 1;
name: "John doe";
}
@query (max: 10) {
.user {
display: table;
}
.users id {
display: none;
}
}
CREATE TABLE display (
id INT PRIMARY KEY,
display_property TEXT
);
INSERT INTO display (id, display_property)
VALUES
(1, 'block'),
(2, 'inline-block'),
(3, 'flex');
CREATE TABLE divs (
id INT PRIMARY KEY,
inner_html TEXT,
display INT REFERENCES display(id)
);
INSERT INTO divs (id, inner_html , display)
VALUES
(1, 'div1', 1),
(2, 'div2', 2),
(3, 'div3', 3);
Reminder that yeet is a keyword in rust
I think there’s still something wrong with your setup… You should be able to have as many Firefox windows and tabs as you’d like without using too much RAM, since they should de “suspended”.
I regularly have hundreds of tabs running fine, on 32GB of RAM.
Most likely it’s a vscode extension that’s leaking memory, and this problem will still happen after your upgrade, just take longer.