Ensuring reliability of cross-compilation
Provided that my code is fully standards compliant with no undefined behaviour, how can I best assure that it will be possible to cross-compile my software for any architecture?
Making an automotive system more ‘modular’ in terms of software?
I am working on an automotive project that we are supposed to make more modular. I am a software specialist and I have very little knowledge of automotive hardware. I don’t have any requirements or details about the project other than “making it more modular/portable” and “think in terms of software not hardware”. By making it more modular they mean that they want to be able to pick any car and replace its conventional battery or pump with a different type without having to redesign the entire system.
Making an automotive system more ‘modular’ in terms of software?
I am working on an automotive project that we are supposed to make more modular. I am a software specialist and I have very little knowledge of automotive hardware. I don’t have any requirements or details about the project other than “making it more modular/portable” and “think in terms of software not hardware”. By making it more modular they mean that they want to be able to pick any car and replace its conventional battery or pump with a different type without having to redesign the entire system.
Examples of operating systems capable of serving http-requests that does not support direct slash for directory separator
My php framework uses DIRECORY_SEPARATOR
constant instead of /
. Can there be any other options for a directory separator?
Why does C provide language ‘bindings’ where C++ falls short?
I recently was wondering when to use C over C++, and vice versa? Fortunately someone already beat me to it and although it took a while, I was able to digest all the answers and comments to that question.
RESTful service layer with MVC
I need a advice on creating an architecture where I want API layer in between UI layer and business layer. UI layer should only consume REST services for displaying data.