Check what? They're right.
Oh no, not Discourse :( I never liked Discourse. I guess mainly for the UI and UX/navigation.
Still likely an improvement for approachability. For a mailing list you essentially need pre-knowledge and a client to use reasonably well. A [Discourse] forum may need an account, but is hosted and straight-forward.
Given that it's already established I see why the question of alternative forms and platforms wouldn't even come up.
Where is he getting these stats from?
What do you mean? He's the room owner. He can see the member count, and the activity.
I thought the same at first, but honestly, there's probably nothing that warrants impersonation. If it's a system announcement or change from the host, it should be labeled as such.
Maybe all bunnies are actually snails with a fur coat on.
Using Mitchell's donation we'll be able to to offer Jacob Young a full time schedule. As a reminder, he's the primary author of the C backend, x86 backend, LLDB fork that adds Zig support, and maintains the eZ80 toolchain on the side, all without even having the ability to bill full time yet!
Using early returns and ternary conditional operator changes
private boolean meetsRiderPreferences(Rider rider, Driver driver) {
if (driver.rating >= 4.5) {
if (rider.preferences.includes('Premium Driver')) {
return driver.isPremiumDriver;
} else {
return true;
}
} else if (driver.rating >= 4.0) {
return true;
} else {
return false;
}
}
to
private boolean meetsRiderPreferences(Rider rider, Driver driver) {
if (driver.rating < 4.0) return false;
if (driver.rating < 4.5) return true;
return rider.preferences.includes('Premium Driver') ? driver.isPremiumDriver : true;
}
dunno if java has them, but in C# switch expressions could put more of a case focus on the cases
private boolean meetsRiderPreferences(Rider rider, Driver driver) {
return driver.rating switch {
< 4.0 => false,
< 4.5 => true,
_ => rider.preferences.includes('Premium Driver') ? driver.isPremiumDriver : true,
};
}
or with a body expression
private boolean meetsRiderPreferences(Rider rider, Driver driver) => driver.rating switch {
< 4.0 => false,
< 4.5 => true,
_ => rider.preferences.includes('Premium Driver') ? driver.isPremiumDriver : true,
};
The conditional has a true result so it can be converted to a simple bool condition as well.
private boolean meetsRiderPreferences(Rider rider, Driver driver) => driver.rating switch {
< 4.0 => false,
< 4.5 => true,
_ => !rider.preferences.includes('Premium Driver') || driver.isPremiumDriver,
};
I recently watched a presentation (on YouTube from a conference/offline presentation) about Systemd which also went into its focus/baseline of Linux, not Unix, and how NT supported a stronger service concept from the beginning. It was quite interesting to learn about the differences and the presenter's assessment and reasoning of the necessity of Systemd or something else that replaces or extends init and rc.d.
The Roast my profile in question.
Your 105 repos resemble a crowded yard sale, filled with half-baked ideas and a couple of dusty gems.
lol
Their main argumentation (from page 1) summarized:
You know the state and progress of a program from the line you are on. A goto
breaks that.
You can index the progress of a program through static line indexes and a dynamic loop index and function call stack. A goto
breaks that. Including a "statements/lines since beginning of execution" is infeasible for understanding.
Unfortunately, that poisons not only the AI.