Anonymous
9/4/2025, 3:12:02 PM
No.719788618
>one south asian ip banned
>10 cuckold posts removed
huh
Anonymous
8/24/2025, 8:30:12 AM
No.150385908
>>150385879
are you insinuating that there is a cabal of gremistas sabotaging Inter from within, while only coxas-brancas work at Coritiba?
Or could this be a ploy by the Barcelos opposition to tarnish the image of its administration?
Anonymous
8/14/2025, 10:54:02 PM
No.718100713
>>718100575
my foreskin is intact tho. I'm not American
Anonymous
8/12/2025, 11:16:01 PM
No.717941493
>>717941193
>Japanese/Chinese and Jews
copying the White man doesn't make you the smartest. second place at best
>Mediterranean
so... White? you'll never be mediterranean, Pablo
>o-ok maybe you are physically superior b-but niggerinos run from the police faster!
Anonymous
7/19/2025, 5:49:05 AM
No.105953397
>>105953122
>>105953138
Use case for e-readers when I have a phone, laptop, and tablet already? I haven't leisurely read any books from front to back they weren't academic material (ie college textbooks) in YEARS because let's be honest I'm a lazy bastard that has a very narrow pallet when it comes to what catches my attention. Are e-readers good at getting people back into reading for some reason?
C++ Won
7/8/2025, 12:12:16 AM
No.105831578
This is what modern C++23 looks like:
std::pair getTwoReturnValues() {
int value1 = 32;
double value2 = 3.14;
return {value1, value2};
}
void executeThisF(std::invocable auto f) {
std::print("{}\n", f(3));
}
std::expected parseInt(std::string_view s) {
try {
return std::stoi(std::string(s));
} catch (const std::exception& e) {
return std::unexpected("Failed to parse int: " + std::string(s));
}
}
int main() {
auto [a, b] = getTwoReturnValues();
std::print("a = {}, b = {}\n", a, b);
executeThisF([](int x) { return x * 3; });
std::unordered_map config {
{"Alice", 90},
{"Bob", 85},
};
for (const auto& [k, v] : config) {
std::print("{} = {}\n", k, v);
}
std::vector v = {1, 2, 3, 4, 5};
auto results = v | std::views::filter([](int n) { return n % 2 == 0; });
for (const auto& n : results) {
std::print("{}\n", n);
}
std::string input = "42";
if (auto result = parse_int(input); result) {
std::print("Parsed int: {}\n", result.value());
} else {
std::print("Error: {}\n", result.error());
}
}
When full support for C++ modules lands on Clang and CMake, it's going to be over for rustranny, if you fell for rustroon meme and went troon, there's still time to turn back.