Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
13 views

We have a monolithic application and we want to create multiple service based projects(REST APIs). Is there a product available in market which can measure some of the improvements such as How much ...
Sanjay's user avatar
  • 313
1 vote
1 answer
163 views

I've been maintaining and extending an Odoo installation. Often I need to override or monkeypatch certain methods (that can't be inherited) in order to achieve the desired result. What do you think is ...
Dimitrios T. Tanis's user avatar
1 vote
2 answers
342 views

I'm somewhat of a beginner to java, although I understand the basics. I believed this was the best implementation for my problem, but obviously I may be wrong. This is a mock example I made, and I'm ...
labradorEater's user avatar
1 vote
0 answers
57 views

When I try to look at the implementation of some numpy functions, I realized a strange thing (description below). In this python script: /Users/myname/opt/anaconda3/envs/ml/lib/python3.7/site-packages/...
Jason's user avatar
  • 3,574
0 votes
1 answer
555 views

Short question. From DDD perspective (or just maintainable architecture and common sense), where should I put a layer of business logic that has no domain objects to operate with but does some "...
shumantt's user avatar
4 votes
1 answer
99 views

We are creating a big project that will live and be improved for approximately 10 years. Already in our code base, there is a lot of code for specific browser incompatibilities, workarounds for ...
Mino's user avatar
  • 1,004
0 votes
2 answers
83 views

Is it ok to write EF queries in a separate class file inside models folder instead of writing it in controller itself. Because I've seen in msdn writing all EF queries in controller itself. While at ...
Thameem's user avatar
  • 756
0 votes
1 answer
86 views

Recently, I get to know that writing code in the modular or components way is important. But I am not sure why is it so important. Can someone explain why is it important if you know?
Rajesh Kumar's user avatar
2 votes
2 answers
2k views

Regular expressions rapidly become too complex (for me) to understand. Even something so simple as [ab][cd], has several logical branches. My goal is to improve the maintainability of our code base, ...
kc2001's user avatar
  • 5,249
1 vote
2 answers
287 views

We maintain our server once a week. Sometimes, the customer wishes that we change some settings which is already cached in server. My colleague always write some JSP code to change these settings ...
Cheng's user avatar
  • 316
0 votes
1 answer
963 views

I have already seen a lot of different MVC architectures. All of them are different. I would like to know a standard way to send a model data to a view using a controller. Is it suitable to send the ...
Mahdi GB's user avatar
9 votes
3 answers
2k views

For instance, when I define a class file in C++ I've always put the function bodies in the class header files (.h) along with the class definition. The source code file (.cpp) is the one with the main(...
SavedbyZer0's user avatar
0 votes
1 answer
59 views

I have a source file in a declarative language (twolc, actually) that I need to write many variations on: a normative version and many non-normative versions, each with one or more variations from the ...
reynoldsnlp's user avatar
  • 1,285
0 votes
0 answers
61 views

We have situation that we sold application for one client and we are constantly making changes to it for this client. On the other hand we have another client that want similar application. But there ...
apukineimakiapudjuh's user avatar
11 votes
1 answer
4k views

I am currently working in a product where different types of images like product images, user profile pictures, logo etc. are there. I need a database with good query performance. I got two DB ...
Jinu Joseph Daniel's user avatar
0 votes
0 answers
48 views

May I have your sharing on how to manage your SQL queries in a file system across all different vendors. I am a data analyst and I write a lot of different SQL queries everyday. They are all stand ...
E. L.'s user avatar
  • 542
2 votes
4 answers
3k views

The common practice in C++ is to separate declarations in .h (or .hpp) and implementation into .cpp. I know about two main reasons ( maybe there are others ): Compilations speed ( you do not have to ...
Prokop Hapala's user avatar
0 votes
1 answer
584 views

I'm working on a drools project where every .drl file is created dynamically from velocity template. I've written every calculation and operations to be performed after successfull condition check in ...
The Coder's user avatar
  • 2,642
0 votes
0 answers
339 views

I have a service implemented in Java which depends on 3 property files. I have defined 'define' for each of the property file in a common properties module and consuming them from service specific ...
Anand Patel's user avatar
  • 6,541
2 votes
1 answer
432 views

These days I’m having a training in Microsoft Reporting Service. Although it’s a good tool but I can’t find any examples that using it will be useful. To me is always better implementing reports using ...
miguelbgouveia's user avatar
2 votes
1 answer
2k views

I got bit trying to maintain code packages that run on two different Oracle 11g2 systems when a line of code to be changed slipped by me. We develop on one system with a specific data set and then ...
Marc's user avatar
  • 778
0 votes
3 answers
605 views

Is it possible to improve this Java code by not using labels (and not repeating too much code or creating too many methods)? void func() { Object r; Object s; if (r == null ) { ...
mins's user avatar
  • 7,766
1 vote
2 answers
1k views

EDIT: Apparently what I'm talking about is not called a tombstone. I got that term from this video: https://www.youtube.com/watch?v=29UXzfQWOhQ I'm working on a complex django webapp, and recently I ...
megapctr's user avatar
  • 961
2 votes
2 answers
407 views

I need to choose one of three values of an integer using the value of a column on a nullable column of a table. There are at least two approaches: 1) use SQL to do all the work: test null values, and ...
ArturoTena's user avatar
0 votes
2 answers
985 views

I was recently working on an application and have a use case where I return back a set of responses to clients e.g. ALLOW, DENY and PENDING. Let's say if the response returned by the service is ...
Sunil's user avatar
  • 307