• 0 Posts
  • 10 Comments
Joined 1 year ago
cake
Cake day: July 1st, 2023

help-circle
  • I think there was a Renault that worked like this. I think the main issue is that you need a decently sized battery that can supply enough power or else the ICE needs to start every time you hit the gas pedal like was the case with the older Prius models and then you might as well connect it to the wheels and you can have a smaller electric motor.

    But batteries keep improving and you can pull more power per kWh now. Maybe with solid state batteries this power train could become the more affordable option.






  • Other package managers, like nuget, throw errors if all dependencies on a package cannot be met by a single version.

    This is probably the result of it copying all libraries in the same output directory and that .net cannot load 2 different versions of the same library so more an application restriction.

    The downside of this is that packages often can’t use newer features if they want to not block the users of that library and that utility libraries have to have his backwards compatibility so applications can use the latest version while dependent libraries target an older version. Often applications keep using older versions with known security issues.