{][)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?
Who uses forums anymore?
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?
}
Quote from: Sidoh on January 02, 2014, 03:14:04 PMQuote from: iago on January 02, 2014, 11:08:48 AMQuote from: Rule on January 01, 2014, 05:33:39 AMQuote from: iago on December 31, 2013, 01:03:52 PM
Living in the Bay, working at the Google.
Wow, I'm surprised! I didn't think you would leave Canada, or work at a huge monopoly corporation. It's probably a nice place to work though.
Yeah, I didn't think I'd leave Canada either, but here I am!
I wouldn't call it a 'monopoly'. On one hand, I feel bad that 99.9% of my salary comes from ad revenue; on the other hand, they're constantly changing the world for the better, and they have really good policies regading privacy (privacy is SUPER important to them, because people will jump on anything) and lock-in (it's important that every app lets you view, manage, and export all your data). So that's a plus, at least. :)
I dunno -- I actually like their business model significantly more than just about any other tech company. It's much more conducive to innovation. Ads enable free stuff on the Internet. Of course there are alternatives, but I think ads are really the only thing lucrative enough to enable the kinds of crazy awesome things Google does without a ton of capital.
Quote from: Newby on November 29, 2013, 10:51:49 PMExcept it takes an hour or two to compile big projects like Firefox with a powerful machine. Ports is practical with small and self-contained applications though.
ports was pretty awesome to begin with!
WITH_PKGNG=yes
Page created in 0.355 seconds with 16 queries.