Skip to main content

All Questions

Tagged with
2 votes
1 answer
89 views

API design for Implementing NaN/Unknown values for custom numeric type

I'm gradually writing an arbitrary-precision arithmetic library for C++. I've decided it could be useful to have the default constructor produce an object of indeterminate value, rather than relying ...
saxbophone's user avatar
12 votes
1 answer
275 views

Inspector Rubberduck

Our Rubberduck open-source VBE add-in project is coming along nicely. One of the main features we're going to be implementing in the next release, is code inspections. I started by defining an ...
Mathieu Guindon's user avatar
4 votes
2 answers
977 views

Create User profile with separate social media data

I am creating user profile logic for a blogging platform. I have the UserProfile model and then two separate models, ...
aaronmallen's user avatar
4 votes
1 answer
93 views

Post Service Class

I have one entity that depends on another however in my API service class I would like to just deal with the dependent entity. Am I doing this correctly and is there a better way to go about this? ...
aaronmallen's user avatar
2 votes
1 answer
102 views

Backend interface VS hard contract

Here is an API for using a warehouse: ...
astef's user avatar
  • 217
1 vote
2 answers
86 views

Client's method for channel subscribing

I am writing an open-source application for real-time messaging in web. In my application clients from browser can subscribe on channels. But every channel belongs to a certain namespace which ...
Alex Emelin's user avatar
3 votes
1 answer
216 views

jQuery plugin boilerplate jquib

Inspired by jqueryboilerplate.com, I extended their boilerplate to fit my needs. Coming from PHP development, I wanted to have a good starting point for writing jQuery plugins with a defined API/...
Don André's user avatar