With rails you'd always have to pay for absence of strict types with extensive testing where you'd basically have to verify that data structures match.
I don't buy it anymore
I don't buy it anymore
That's cool but Chrome is the only browser I have had these issues with. We have a cron process that uses selenium, initially with Chrome, and every time there was a chrome browser update we had to update the web driver. I switched it to Firefox and haven't had to update the web driver since.
I like the async portion of this but this seems like MechanicalSoup?
*EDIT* MechanicalSoup doesn't necessarily have async, AFAIK.
I use lsof -i a lot on Mac, its not that I'm criticizing, but mostly disappointed.
It's definitely a great tool to quickly bootstrap something, but I find myself thinking "I should have better done that myself" more and more.
Type system support, and the tooling around that support, has gotten SO much more powerful in the last decade or so.
Lots of the warts also got burned off with better support for smart typing, auto vars, duck typing for inputs, etc.
That tooling covers a HUGE swath of bugs that I just don't have to worry nearly as much about, and it makes quick refactoring less painful and less risky.
Going back to Rails feels like stepping back into the dark ages. So many stupid repeated tests/specs for things that should just be in a type system. The tests are slower to write, cover less ground, and are much more brittle.
My tooling isn't as capable, my feedback loop is slower (hard to beat instant type hinting for errors/mismatches right in my editor as I type), and I feel like I'm working with a blindfold on.
---
Yes, parts of Rails are great, yes - if you know it already it's a very productive environment. But man do I absolutely hate the lack of interest in type systems from the majority of Rails devs.
It's hard to overstate how valuable it is to be able to change a data structure and have all 29 places you might have broken immediately presented to you with basically no effort on your end outside of some minor type work.
I will pick it every time over having to write 29 specs in rails to get even close to the same safety.