but it exists because the government wants a centralized place to control digital activity
Speaking as someone who witnessed them from 0 to everything - it really has not much to do with that.
It has to do with how fast mobile payment swept through the country to be the connecting factor for all online services and it has to do with how easy it was and is for big players to out compete or swallow small innovators and harvest their innovations.
The original (longer) title: My job is telling me I have to be removed from my current position to a lower one with a pay reduction because they cannot accommodate me for my permanent medical restrictions from my congenital heart disorder
Except you're rarely sure how much it's worth. The market is fluid, the psychology is working on you, and the feedback takes too long that by the time you know how much you missed it's too late to learn much from it.
I really love the comparison with previous year(s) on some pages and that helped me spot a real error. The navigation is so much better than turbo tax too.
If anyone is looking to convert from turbo tax, you can import your previous return as pdf and that could cover a lot of details already that don't change year over year.
Are people really finding that out only now? I thought that this was generally accepted knowledge even in China, despite the constant fear and propaganda they live with.
Yes and no. You see, 2 decades ago probably half of my peers had that knowledge, that was when the internet was pretty much uncensored compared to how it is today. Over the years they get converted by the narrative and now it's probably 5% or even less that keeps a critical mind when reading anything from anywhere, which is, your know, all censored.
I just upgraded to this and noticed the Reading List has changed design again! They must have gone back and forth thousands of times on this so hopefully this is the final version.
Ukrainian tennis player Elina Svitolina said she would not play her round of 32 match against Russia's Anastasia Potapova in the Monterrey Open unless tennis' governing bodies followed the recommendations made by the International Olympic Committee.
Most of the replies look like they never read the linked article and just responded based on the headline, which is a misrepresentation of the article to say the least.
I did an MRI a while ago, and waited for 20 minutes for the images to be burnt on a CD so that I could physically bring it to my doctor. I thought that was archaic.
There're more string copies that can be optimized away for the C++ solution:
1. When filling the map with `word`, can use emplace with std::move of the `word` instead of operator[] because `word` is no longer needed after that, after checking that it's not already in the map
2. Constructing the vector (for sorting) with all pairs from the map ends up copying the whole map's worth of data! Can use iterator of the map instead of the key of the map in the pair. This may also make sort() faster because it may be cheaper to move an iterator than a string during sort()