Come on, this is wonderfully blunt! > In fact, I'll take real toilet paper over standards any day, because at least that way I won't have splinters and ink up my arse.
Linus Torvalds on aliasing
21–30 of 284 posts
Re: Linus Torvalds on aliasing
#22Earlier quoted context omitted.
Not sure what the word "smart" means but he is surely pragmatic and based on such emails looks like he gets easily frustrated.
He gets frustrated with people that are supposed to be experts but that don't match up to that in practice (in his eyes at least)
Re: Linus Torvalds on aliasing
#23Re: Linus Torvalds on aliasing
#24I sometimes wonder what the world of computing, or even the world in general, would look like today if Linus Torvalds hadn't existed, or happened to have not gotten into computers.
Re: Linus Torvalds on aliasing
#25 void wat(uint16_t *x, uint16_t *y) {
*x = *y;
}
uint64_t a[100] = { 0 };
wat((uint16_t *)&a[0], (uint16_t *)(((char *)&a[0]) + 1));
When you think you've figured that one out, try this one: uint16_t heh = 0xFFFF;
extern uint16_t doesAnything(uint16_t *, uint16_t *);
void wat(uint16_t *x, uint16_t *y) {
*x = *y + doesAnything(&heh, y);
}
uint64_t a[2] = { 0 };
wat((uint16_t *)&a[0], (uint16_t *)(((char *)&a[0]) + 1));Re: Linus Torvalds on aliasing
#26Re: Linus Torvalds on aliasing
#27There's nothing wrong with this - it's an important enough project to be able to make those kinds of demands.
Re: Linus Torvalds on aliasing
#28I think we are at the point where someone just needs to put up a Linus swearing email tracker with analytics and shit and stop posting these threads. We have to come to the realization that the discussion on this is: a) useless- doesn't change anything b) the publicity is affecting the other side more So basically Linus is Trump
Oh, that's cute. The mere fact that you say that makes it clear you have no idea who Trump is.
Re: Linus Torvalds on aliasing
#29I think we are at the point where someone just needs to put up a Linus swearing email tracker with analytics and shit and stop posting these threads. We have to come to the realization that the discussion on this is: a) useless- doesn't change anything b) the publicity is affecting the other side more So basically Linus is Trump
I really love that he is the way he is. Smart and honest. Nothing like Trump.
Re: Linus Torvalds on aliasing
#30Linus has done some (okay, lots of) wonderful stuff. However, his attitude here is pretty extreme. Being incredibly rude, then proceeding to merge said pull request. If Linus is willing to merge the PR, then it can't be that bad. Surely there was a more tactful way to approach this, even for Linus.