The eigenvector of “Why we moved from language X to language Y”
21–30 of 193 posts
Re: The eigenvector of “Why we moved from language X to language Y”
#22Earlier quoted context omitted.
Really? Why can't the C bits be replaced with e.g. Rust?
They could be. But you'd need a reason in order to be able to fund it (or maybe you just want to scratch an itch). But the codebase numbers in the 100's of millions of LOC, and replacing that with Rust (or anything else for that matter) will come with a number of requirements: - it really needs to be better in terms of bugs - it needs to be about as fast or faster - it would have to come with similar start-up times f…
Linux doesn't really resemble UNIX anymore. It's starting to look a little like Plan 9, to be honest... give it 20 more years.
Re: The eigenvector of “Why we moved from language X to language Y”
#23They are always just "We wanted to do this in a particular way. So we fought the framework till we decided to move to another that does things the way we thought they should be done. Now things are much better but we will fail to mention down the line all the new compromises we have to deal with"
Re: The eigenvector of “Why we moved from language X to language Y”
#24The author is surprised that angular is holding up. I've been learning angular2 the past few weeks after having never used a single page application framework before and I'm loving every second of it. I'm never going back to ASP.NET MVC except to use it as an API.
* I find the template syntax is more sensible than react.
* It's not as total as angular. You can use just the small parts you'd like.
Re: The eigenvector of “Why we moved from language X to language Y”
#25When it comes down to it, all languages are DSLs. Even LISP/Scheme are DSLs for making DSLs (like Butterick's "Beautiful Racket" earlier today).
Presenting them as per-niche directed graphs is probably less likely to steer newbies (and sadly, not-so-newbies) into another round of "let's redo everything in X!"
Re: The eigenvector of “Why we moved from language X to language Y”
#26Anyone else routinely roll their eyes at "why we moved from x to y" blogs? They are always just "We wanted to do this in a particular way. So we fought the framework till we decided to move to another that does things the way we thought they should be done. Now things are much better but we will fail to mention down the line all the new compromises we have to deal with"
Re: The eigenvector of “Why we moved from language X to language Y”
#27The author is surprised that angular is holding up. I've been learning angular2 the past few weeks after having never used a single page application framework before and I'm loving every second of it. I'm never going back to ASP.NET MVC except to use it as an API.
Angular isn't going to help you write your server. That's such a strange statement.
Re: The eigenvector of “Why we moved from language X to language Y”
#28I really appreciate his method of breaking it down per-niche. When it comes down to it, all languages are DSLs. Even LISP/Scheme are DSLs for making DSLs (like Butterick's " Beautiful Racket " earlier today). Presenting them as per-niche directed graphs is probably less likely to steer newbies (and sadly, not-so-newbies) into another round of "let's redo everything in X!"
Re: The eigenvector of “Why we moved from language X to language Y”
#29Re: The eigenvector of “Why we moved from language X to language Y”
#30Earlier quoted context omitted.
Sadly getting rid of C means getting rid of UNIX, as they are symbiotic and UNIX vendors will surely never rewrite them in anything else or replace POSiX standard.
Really? Why can't the C bits be replaced with e.g. Rust?
POSIX is defined in terms of C semantics, which includes C unsafety, like managing pointers and the respective length as separate entities, using null terminated strings or casting void* to specific data structures.
Which means the POSIX translation layer would need some sprinkles of unsafe code to be able to comply with the required semantics, thus opening it to the same exploits as C code.
This issue is visible in OS that aren't written in C, but do expose POSIX runtime layers like mainframes.
As mainframes, they usually restrict possible security exploits thanks to running POSIX applications on their own containers or enclaves.