Website will not let me edit with the back button on safari, had to close the tab to escape. Why do so many sites do that?
Linus Torvalds: 'I Do No Coding Any More'
11–20 of 246 posts
Re: Linus Torvalds: 'I Do No Coding Any More'
#12This is sad, not so much because of the lack of code coming from this world class programmer, but because coding is such fun, and Torvalds isn't having fun programming, else he'd be doing it. I'm closing in on forty years of coding and still get a kick out of it. I'd still be doing it if I weren't getting paid for it. But my skills are at best, uh, modest compared to Linus. I'd think that doing a thing so much better…
Technical leaders often get promoted away from their core skills into managerial or administrative type roles. This ones sounds like a gate keeping role
Re: Linus Torvalds: 'I Do No Coding Any More'
#13This is sad, not so much because of the lack of code coming from this world class programmer, but because coding is such fun, and Torvalds isn't having fun programming, else he'd be doing it. I'm closing in on forty years of coding and still get a kick out of it. I'd still be doing it if I weren't getting paid for it. But my skills are at best, uh, modest compared to Linus. I'd think that doing a thing so much better…
Re: Linus Torvalds: 'I Do No Coding Any More'
#14Website will not let me edit with the back button on safari, had to close the tab to escape. Why do so many sites do that?
Re: Linus Torvalds: 'I Do No Coding Any More'
#15This is sad, not so much because of the lack of code coming from this world class programmer, but because coding is such fun, and Torvalds isn't having fun programming, else he'd be doing it. I'm closing in on forty years of coding and still get a kick out of it. I'd still be doing it if I weren't getting paid for it. But my skills are at best, uh, modest compared to Linus. I'd think that doing a thing so much better…
Re: Linus Torvalds: 'I Do No Coding Any More'
#16> So commit messages to me are almost as important as the code change itself. Why commit messages rather than code comments?
Re: Linus Torvalds: 'I Do No Coding Any More'
#17Website will not let me edit with the back button on safari, had to close the tab to escape. Why do so many sites do that?
Re: Linus Torvalds: 'I Do No Coding Any More'
#18Re: Linus Torvalds: 'I Do No Coding Any More'
#19Earlier quoted context omitted.
Technical leaders often get promoted away from their core skills into managerial or administrative type roles. This ones sounds like a gate keeping role
This is not what happened here.
Re: Linus Torvalds: 'I Do No Coding Any More'
#20> So commit messages to me are almost as important as the code change itself. Why commit messages rather than code comments?
Now, why a particular piece of code came to be, why the code should have this expected behavior, why something is being added or removed or changed, may be unrelated (or unnecessary) to what this particular code is doing.
So there's two kinds of documentation here: 1) "this is what this code does", 2) "here are the series of events that led to this code". You need the former when you are editing code. You need the latter when you are reviewing code for merge, as well as in the future to figure out how the f*!$ this code came to be (which is useful to avoid re-running into a bug, troubleshooting/understanding a legacy system, or removing important code). The latter may also immediately become obsolete the second time the same block of code is edited, so we keep this historic information in e-mail or code commit messages.