Good

Good

Excellent article about feminatives. Interestingly, with the wave of promoting feminatives by feminists, why does no one raise the question about masculatives for manicurists and pedicurists, maids and cooks, launderers and fortune tellers, caregivers, typists, nannies, seamstresses, matchmakers, embroiderers, and ballerinas.
Today, I was challenged with a very cool task (below), I found a solution, will you find one? They say there are multiple solutions, but I can’t see any others besides my own.
So, there is an 8×8 board scattered with stones randomly. Each cell can contain as many stones as it fits, from zero to whatever number fits. The host thinks of a cell. He calls it to character A. Character A, let’s call him Vasya, decides to either remove or add exactly one stone to any cell of his choice or to do nothing. Then he leaves. Next, a second character comes in, let’s call him Petya, looks at the board, thinks, and names the secret cell. Of course, Petya and Vasya had pre-arranged a strategy on what Vasya needs to do so that Petya can guess the cell correctly. The question is – what is this strategy?
UPDATE: Solution:
Essentially, two functions need to be written, encode (cell, origboard), which returns newboard and decode (newboard), which returns cell. The difference between newboard and origboard is one set bit.
static long encode(long board, int cell) {
int change = getHash(board) ^ cell;
return board ^ (1L << change);
}
static int decode(long board) {
return getHash(board);
}
static private int getHash(long board) {
int hash = 0;
for (int i = 0; i < 64; i++) {
if ((board & 0x1) != 0) {
hash ^= i;
}
board >>>= 1;
}
return hash;
}
Finished watching the first season and started the second. A good series, very much in King’s style. For the first time, after binge-watching the last three episodes, I was left with an aftertaste similar to finishing a book – full of details, some of which neatly converge while others create more questions than answers. However, there are no completely inexplicable inconsistencies, although it does blow your mind at times.
The series is not an adaptation, but an original work “on a King theme with King’s involvement.” Fans will find a lot of Easter eggs, while I simply enjoyed the cinematography and the unique script.
I recommend it, good cinema. Still watching the second season, it’s a whole different ball game
She needs to go to Eurovision, stat! Captivated by the richness of her tone
P.S. Buzova can take a break
“We are almost there!” said Susanin, peeling a banana on the go.
I finally got around to using FaceApp) well done guys, impressive





I hope everything will be alright there. But there are two interesting points about this news: the speed at which it hit the media and the fact that it’s about a Superjet with engine failure.
This morning, the entire sky was covered in these horizontal clouds (they stretch left and right to the horizon, hard to capture from a car) Looks like morning glory

Interestingly, in the states there are license plates with either two or even just one character. Some of them are sold for a decent amount of money, while others belong to government agencies. Another interesting fact is that you can check a car for free by its plate number to find its VIN and complete history. For instance, this 2015 Chevrolet Suburban has 13 recalls from the manufacturer, do not buy a Chevrolet Suburban)
https://www.vehiclehistory.com/vin-report/1GNSKHKC5FR249852
