Web Browser Engineering
browser.engineering
Web Browser Engineering
1–10 of 64 posts
Re: Web Browser Engineering
#2Re: Web Browser Engineering
#3Is this written by actual web browser engineers? If so, what fields did they specialize in?
Re: Web Browser Engineering
#4Re: Web Browser Engineering
#5I can't wait for Browser Engineering to show up as a university course a la compilers, operating systems, networks, etc.
The funny thing is we can have the MINIX microkernel discussions all over again :)
Re: Web Browser Engineering
#6I can't wait for Browser Engineering to show up as a university course a la compilers, operating systems, networks, etc.
A browser is basically an operating system inside an operating system. The funny thing is we can have the MINIX microkernel discussions all over again :)
EDIT: Reading you comment again I suspect you might have been joking :)
Re: Web Browser Engineering
#7Re: Web Browser Engineering
#8Is this written by actual web browser engineers? If so, what fields did they specialize in?
https://mobile.twitter.com/chrishtr says "Rendering lead for Chrome", so at least one of the authors seems to do this professionally.
Re: Web Browser Engineering
#9Developing for the browser is a real challenge. I think working with html / css /js has been a neglected skill for a long time - most software engineers look down on that type of work and its rarely covered in comp sci course work.
Still, its good to see a lot of progress has been made, this book included.
My only critique - why use python instead of node.js?
Re: Web Browser Engineering
#10As a front end developer, I am really happy to see resources like this. Developing for the browser is a real challenge. I think working with html / css /js has been a neglected skill for a long time - most software engineers look down on that type of work and its rarely covered in comp sci course work. Still, its good to see a lot of progress has been made, this book included. My only critique - why use python instea…
Basically: server-side JavaScript is just not as widely known as Python, and it'd be additionally confusing when our browser starts running JavaScript. And in-browser JavaScript is a bit too restricted (by things like the same-origin policy) to do the whole thing inside a browser.