{][)K} is still alive and well and has absorbed many other members from other clans of the time. It keeps alive through gaming and IRC (a place to afk and not talk to anyone). So what's wrong with x86?
How did you even find this place?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
int sum = 0;
std::vector<int> vArray = { 1, 2, 3, 4, 5 }; // Yes, you can do this in C++11
std::for_each(std::begin(vArray), std::end(vArray), [&sum](int x) {
sum += 2*x;
});
int sum = 0;
std::vector<int> vArray = { 1, 2, 3, 4, 5 };
for (size_t i = 0; i < vArray.size(); ++i) {
sum += 2*vArray[i];
}
int sum = 0;
std::vector<int> vArray = { 1, 2, 3, 4, 5 };
for (int x : vArray) {
sum += 2*x;
}
namespace {
struct NickEquals {
// ...
};
} // only valid in this translation unit
auto itr = std::find_if(std::begin(vUsers), std::end(vUsers), NickEquals("nslay")); // Find If Nick Equals "nslay" ... reads nicely!
auto thing = Blah(); // So, what does Blah() return? Oh, right, best go look in the header. Oh, and did I mention 'auto' also consumes constness and pointers too (but not references)? Blah() might return a pointer ... or maybe a const. You'd never guess that by looking at it though.
// Oh yeah, If I changed Blah()'s return type, maybe it still compiles and runs when it shouldn't.
for (auto &x : vArray) {
// Wait, what is x again?
}
QuoteBAHAHAHAHA!
A spokesman for OGC said: "It is true that it caused a few titters among some staff when viewed on its side, but on consideration we concluded that the effect was generic to the particular combination of the letters OGC - and it is not inappropriate to an organisation that's looking to have a firm grip on Government spend."
Quote
- Assemble magic 8 balls using only rooster sounds
- Using gmail to grill giraffe meat
- Plant cacti in edible jello
- Ancient medicine cows and their effect on a future octopus race
- The smell of the color blue
- Spicy sauce for triangles
QuoteAre these attack bears equipped with lasers or are we wanting to attack bears with lasers?
- Attack bears with lasers
Quote
P.S. I talked to Cisco about U2 and Nike Shoes. I like KFC with Intel processors.
Page created in 0.044 seconds with 14 queries.