Skip to main content

Questions tagged [compatibility]

0 votes
2 answers
176 views

Context I have a multi-tiered architecture that contains 2 presentation layers, one business layer and one data layer. See image below for a visualisation. Here you can see that there are two ...
Jeff's user avatar
  • 19
0 votes
1 answer
312 views

I'm maintaining a library written in C++, which offers modern-C++ bindings for another API that's C-ish (it's this one, although I'm trying to make this question somewhat more general). Now, when I ...
einpoklum's user avatar
  • 2,808
3 votes
1 answer
741 views

I manage a library that is made of multiple components, there is some dependencies between some of these components, for example I have a core library for common code base that is referenced by other ...
Sisyphus's user avatar
  • 377
5 votes
2 answers
164 views

I'm looking for some sort of standardisation, in a similar vein as POSIX for compatibility and familiarity between different commandline-interfaces, but for error reporting. Notably, I'm looking for: ...
alehresmann's user avatar
1 vote
1 answer
187 views

I have a bunch of PHP 5.6 code that I would like to get up to 7.2. My biggest concern was the change that causes an error when you call a function without enough parameters. Previously, this was a ...
Andrew's user avatar
  • 175
2 votes
3 answers
117 views

I've been reading up on API versioning for REST APIs. Most of the articles I've come across (here's an example) seem to focus on two options: URI based versioning, e.g. v1/my_resource/ Media Type ...
Erik Madsen's user avatar
1 vote
1 answer
469 views

We do have several Components in our product which are Component A Component B Component C Dependencies are (if unmet the system fails): A <-> B B <-> C We are currently creating a build ...
pfried's user avatar
  • 203
2 votes
1 answer
370 views

I am working on an implementation for an existing public API. Now I needed to change the implementation to throw an exception for a failure condition about which previously the API consumer was not ...
aef's user avatar
  • 331
0 votes
2 answers
341 views

So, I’ve written some fairly big code for CentOS 7.1. The code essentially makes use of different command line tools by parsing the text output and shoving it in a database… pretty straight forward. ...
gunslingor's user avatar
5 votes
1 answer
12k views

I've seen some programmers doing the following : File file = new File("folder\\subfolder\\subsubfolder"); And I find it totally wrong because of compatibility issues with a different OS than Windows....
TheByeByeMan's user avatar
1 vote
2 answers
327 views

I know that programs that are built on one OS won't work on another, like a Windows program on a Linux distribution, and that there are programs that translate those system calls into system calls ...
Joseph Roberts's user avatar
31 votes
6 answers
6k views

I'm working in a software development team as software developer. I've been working on the same project for three years now. The software is a 32-bit desktop based C# application in .NET 4. Our target ...
Donotalo's user avatar
  • 1,229
5 votes
1 answer
3k views

I am currently doing some research for a project. The setup is simple, I have a computer running a service in my home network and any device connected to that same network should be able to discover ...
Ucodia's user avatar
  • 153
1 vote
2 answers
637 views

I found an apparent contradiction in the c++ text having to do with the result of the c_str() function operating on std:strings (in my copy, the definition and contradiction are on p1040). First it ...
Astara's user avatar
  • 187
9 votes
3 answers
10k views

I was recently told that using Enum: public enum TaskEndState { Error, Completed, Running } may have compatibility/serialization issues, and thus sometimes it's better to use const string: public ...
Yosi Dahari's user avatar

15 30 50 per page