

Fuck racism. But why the fuck are you posting a piece of shit produced by some scum denying the right to live to a group of people based on their hobby?


There’s only one solution to this: stop using google.


Marketplace operators must receive authorization from Apple and comply with ongoing requirements.
Apple will also require apps distributed through alternative marketplaces to pass a notarization process.
Because of this 👆 that whole farce with “alternative stores” both in EU and Brazil is absolutely worthless.


Fuck google and fuck all that crap.


“They shouldn’t have tried to shoot the drones down.” — that’s what they used to say, right? Right?

They’re an age verification company. Of course, they’re cunts, duh.


What about Uranium? How expensive is that?


Are there already any uncesored models based on it? Asking for a friend…

It’s not as much of a Microsoft problem, as it is the problem of the whole app notarization concept, which is extremely hostile to both consumers and developers and provides little to none security benefits. If Apple didn’t have that crap in place, not Microsoft and not anyone else would be able to pull off such stunt.


I’m too lazy to confirm, but I think scanf (as well as many other I/O functions) works on top of the buffered input. I.e. when you scanned only one character on the first run of scanf but there are more left in the buffer, then subsequent calls will read from that buffer, e.g.
printf("your prompt>")
/* you type 123 */
/* buffer contains: "123" */
scanf(...)
/* you scanned 1 char ("1") */
/* buffer contains: "23" */
printf("new prompt>");
/* the prompt has been printed AFTER your previous input but the buffer hasn't been reset! */
/* buffer contains: "23" */
/* you type 456 */
/* buffer contains: "23456" */
scanf(...)
/* scanf returns "2" */
/* buffer contains: "3456" */
In general you have two options:
For both cases, do your research on how to do it :) That K&R from above should be a great start indeed.
We’re otterly lucky.