Earlier quoted context omitted.
>Fortunately there's reader mode. Yes, this. Given my older eyesight, having reader mode set to an easily legible larger size makes lots of simple web pages much more readable for me.
Why would some special mode be needed? I use ctrl+ to get a font size I like, then I set my browser window to a size where the text reflows to what I like. HTML is made to make it easy for the reader. And equally easy on mobile (phone, tablet)
Dennis Ritchie’s page on Bell Labs website
51–60 of 60 posts
Re: Dennis Ritchie’s page on Bell Labs website
#52>I joined Bell Labs in 1967, following my father, Alistair E. Ritchie, who had a long career there. His most visible public accomplishment was as co-author of The Design of Switching Circuits, with W. Keister and S. Washburn; it was an influential book on switching theory and logic design just before the transistor era. This and the part about Bell Labs transmogrifying around Richie through the years makes me wonder…
It's fascinating to see how many modern distinguished researchers were fostered and mentored in their early lives through a familial & supportive environment which contributed in their path toward innovation; such a unique privilege shared by a diminishing cadre that were lucky enough to grow up in that vanishing analog world of black ties and a lifelong devotion to your research and work.
Re: Dennis Ritchie’s page on Bell Labs website
#53Earlier quoted context omitted.
>Fortunately there's reader mode. Yes, this. Given my older eyesight, having reader mode set to an easily legible larger size makes lots of simple web pages much more readable for me.
Why would some special mode be needed? I use ctrl+ to get a font size I like, then I set my browser window to a size where the text reflows to what I like. HTML is made to make it easy for the reader. And equally easy on mobile (phone, tablet)
Re: Dennis Ritchie’s page on Bell Labs website
#54"My undergraduate experience convinced me that I was not smart enough to be a physicist, and that computers were quite neat." Thank god I am not the only one!
In fairness, I'm not sure the return to society of minting another physicist is all that high. Many seem to go into computing anyway.
Carsten Dominik, another physicist, was the creator of org-mode. I don't think physicist have an advantage over CS graduates, in fact reading code written by physicists is like watching and horror movie. But everyone can contribute a tiny bit.
You are right, a lot of my friends, who studied physics, take the jobs CS undergrads don't want to do, and get really low salaries...
Re: Dennis Ritchie’s page on Bell Labs website
#55Earlier quoted context omitted.
Why would some special mode be needed? I use ctrl+ to get a font size I like, then I set my browser window to a size where the text reflows to what I like. HTML is made to make it easy for the reader. And equally easy on mobile (phone, tablet)
Tbf, I HAVE encountered sites where zooming in makes it even less readable/prevents zooming/adjusts the font size to be roughly the same when you zoom in.
Re: Dennis Ritchie’s page on Bell Labs website
#56He mentions Plan 9. Reading that Wikipedia lead to the Inferno operating system. Which mentions a focus on portability and a file interface. https://en.m.wikipedia.org/wiki/Inferno_(operating_system) That reminds me of web assembly and WASI. So this is tangential but how is the component stuff in web assembly doing? It seemed like such a great idea to me but apparently, at least at one point, was somehow controversia…
Basically WebAssembly is anything but new. You can also check Burroughs, Xerox PARC Workstations, USCD Pascal, Modula-2 MeDos, IBM AS/400, TenDRA, Taos, Oberon, among many others, that have had the idea of bytecode as portable OS binaries.
Re: Dennis Ritchie’s page on Bell Labs website
#57Earlier quoted context omitted.
>Fortunately there's reader mode. Yes, this. Given my older eyesight, having reader mode set to an easily legible larger size makes lots of simple web pages much more readable for me.
Why would some special mode be needed? I use ctrl+ to get a font size I like, then I set my browser window to a size where the text reflows to what I like. HTML is made to make it easy for the reader. And equally easy on mobile (phone, tablet)
However, with reader mode it goes straight to my preferred font size, has nice margins, and basically everything is formatted in a very readable way. It still reflows and changes width with the window, but the rest of the formatting is better as well. I really hate text that goes right to the edges of the windows with no margins. Just a personal preference, but for me the quickest path to dramatically improved readability on some sites is reader mode.
Re: Dennis Ritchie’s page on Bell Labs website
#58Earlier quoted context omitted.
A lot of people would stay at Bell Labs because of the culture of frictionless internal collaborations. Don't know about SV, but my senior colleagues and managers all had multiple stories of fending off Universities recruiting their staff. Being reminded them of the freewheeling open-door nature of the place that Universities could not duplicate, a lot of sought-after people stayed put. Not to mention no committee wo…
The World would be a much better place if current-day companies practiced such a culture. The way our current "Work Culture" is setup, it is destroying people's lives.
The permanent members of technical staff in the physical sciences were under tremendous pressure to be both world-leading scientists while somehow being applied enough to help AT&T long distance fight off MCI and other competitors who had no R&D arms. There was no guidance on how to do this except "Well, work harder."
I will always be grateful to them for shielding me and the other postdocs from all the turmoil. It would have been very easy for them to say, "You're on your own" and look out for themselves but they always made time to talk to us and give us whatever support we needed. Needless to say, I miss that spirit.
Re: Dennis Ritchie’s page on Bell Labs website
#59Earlier quoted context omitted.
Basically WebAssembly is anything but new. You can also check Burroughs, Xerox PARC Workstations, USCD Pascal, Modula-2 MeDos, IBM AS/400, TenDRA, Taos, Oberon, among many others, that have had the idea of bytecode as portable OS binaries.
Though, wasm has a high level structure that makes it a clunky compilation target. The bytecodes above improve on wasm in that regard.
Re: Dennis Ritchie’s page on Bell Labs website
#60Earlier quoted context omitted.
Though, wasm has a high level structure that makes it a clunky compilation target. The bytecodes above improve on wasm in that regard.
The high level structure is an advancement that is important for optimization.
It supposedly makes verification of SSA properties marginally faster, but that's not the bottleneck.