Relative Content

softwareengineering

How can I write a set of functions that can be invoked from (almost) any programming language?

I’d like to find a way to write an API that can be accessed from any other programming language via language bindings (or some other framework). Is it possible to do this? If so, which programming language would be the most suitable for writing a “cross-language” API? My goal is to create a single set of functions that I can access from any programming language that I’m working with, so that I won’t need to manually re-write the entire API in each language.

Handling fast growing multi-function services

My team has been developing a web business application for more than a year. It started quite small, but now it is growing bigger and bigger. I think it’s time for refactoring.

Appropriate data structure for deeply nested data?

I can’t figure out what would be an appropriate data structure for my problem. I need to write a script that will count some events. Input is a list of events (thousands of them). Each event is an object with following attributes:

Adapting parts of an open-source project for my own use

I’m in the process of coding a game and almost done with the game mechanics to the point where it’s pretty playable. I later discovered an open source version of the kind of game I’m making with the same mechanics, whereas I coded mine from scratch.