154 questions
0
votes
1
answer
75
views
How to use App.Config codebase tag with .NET assembly relative path?
My solution has the following structure:
TypeLoadApp
|_TypeLoadApp.sln
|_ClassLibrary1.dll (is copied via xcopy post-build event of ClassLibrary1.csproj)
|
|_ClassLibrary1 (netstandard2.0 class ...
1
vote
0
answers
140
views
How to do bulk search and replace changes in your entire codebase based on rules?
It happened I need to add (or change, or change order) a new function "FunctionB()" into an existing code base (php files, ie. text files) based on rule like the following: in the main ...
0
votes
1
answer
188
views
Single codebase or multiple codebases for an application with lots of conditionals
Me and a friend are currently working on a new project together, and we would like it to be cross-platform, and look native on all platforms. I was looking for a cross-platform framework to use, and ...
0
votes
1
answer
32
views
Using local installed lib in site page
Is it possible to use libraries (.dll, .ocx) in modern browsers that were written for the OS Windows and registered in system32 to transfer part of the logic of the site's work and calculations from ...
0
votes
0
answers
111
views
JPS-04201: Cannot grant permission(s). Grant already exists for grantee [GranteeEntry]
How to solve the above error thrown during system policy creation in weblogic server using codebase.
0
votes
1
answer
128
views
Rebuild Startup Company Codebase and Architecture with new technology
I know that this is going to be a really broad topic but I have come to a point that I need guidence with my first steps on this matter.
I started working for a startup company related with financial ...
4
votes
3
answers
103
views
Is it common to have example values for compile-time checking and where should they go in the code?
I have a reasonably complex structure of data types and records, which is not so easy to make sense of by just looking at production code for someone not familiar with the codebase.
To make sense of ...
1
vote
0
answers
161
views
How to dynamically change Default Schema name in Code-Based Migration .resx file?
I have code-based migration implementation in my project (Windows Form Application - Entity Framework 6). I want to change(update) Default Schema name dynamically in Migration .resx file.
What i tried ...
0
votes
1
answer
444
views
Where to find code performing filter in gimp codebase?
I was trying to find code performing https://docs.gimp.org/2.10/de/gimp-filter-snn-mean.html
in gimp codebase, but i am able to find only something looking like UI code (not actual math).
I want to ...
11
votes
3
answers
5k
views
Use flutter web widgets inside a react js app
I have this project where I have to code a website and ios and android apps.
I have to do this with a very limited team (basically myself). So I want to share as much code between those platforms, to ...
2
votes
1
answer
276
views
WIX Heat wrong 'registryvalue' 'codebase' value
I know there are many similar questions about this theme, but none of them could give me an answer.
I'm creating a windows installer for a dll which I developed in VS2019. The installer is created ...
0
votes
2
answers
42
views
Importing a package from within a directory fails
I have a project directory structure as follows:
rootdir/
somefile.py
- proj/
- __init__.py
- __main__.py
- file1.py
- file2.py
file2 has an import, from file1 import some_module
When I am ...
0
votes
1
answer
414
views
Generate JNI Bridge and Java interfaces from C++
I know that it is possible to generate the JNI given a Java implementation using javac but is there a way to do the opposite (a "cjava")?
So if I have something like this:
mypackage/mylib.h:
void ...
1
vote
1
answer
62
views
Codename One - bug in calculating Label and Icon position
I went ahead in creating my own Button components, overriding the paintBackground(Graphics g) method to have some circular charts displayed right with the button. Example of desired result:
What I ...
1
vote
2
answers
832
views
Monitoring Code Repo if Checked out on Users Computer
Not sure if this is the place to post this question but I was wondering if anyone is aware of any apps which allows you to track your GIT repo code base if it has been checked out on another users ...
2
votes
1
answer
5k
views
Npm - how to manage one-repo, multi-package codebase
I’m building a node.js app that needs to be scalable and maintainable. The idea is to have one repository, but with more than one module inside it.
We are using local modules with npm, but we have a ...
-4
votes
1
answer
243
views
different domains same directory - codebase
I create a dynamic website with php. This website must work with 5 different databases and 5 domain names, but same codebase. When someone access a domain of these 5, the website understand which ...
-1
votes
1
answer
289
views
Code Structure: Multiple Devices on I2C line, with multiple source files
I am working on programming a TI MSP432. We have 4 different devices on a single I2C line.
In order to keep our codebase legible we keep the functions pertaining to different devices in different C ...
1
vote
1
answer
514
views
Is it bad software architecture in C++ to create a wrapper class instead of designing from scratch?
I'm creating a 3D game engine on my own using OpenGL and the C++ (with the Boost Libraries). I guess it goes without saying that it is a LOT of work. To lighten the load, I have started to create ...
0
votes
0
answers
149
views
Building a Java Web Start App for Multiple Codebases
I have a Java Web Start application for which the JNLP is generated dynamically. The JWS application is built in NetBeans, which offers me several options RE the codebase for this app, including not ...
0
votes
1
answer
118
views
syncing variations on a repository git
I am trying to figure out how (if possible) to set up multiple git repositories to behave in a specific way. Basically, we have multiple repositories for multiple clients, however they are meant to ...
-1
votes
1
answer
59
views
Shared codebase with different UIs
We are trying to run a couple of sites sharing about 90% of their code. The business domain is the same, but their UIs are a bit different. Hence they will have different CSS.
How would you manage ...
0
votes
1
answer
43
views
Tips for following php calls in code base
I am working with action script 3 and often I see server calls that link to php files.
var serverCall:ServerCall = new ServerCall("getDeviceFirmwareLog", getDeviceFirmwareLogResponse, ...
1
vote
1
answer
834
views
How to tell which backend files are associated with frontend files?
I recently started an internship at a tech company with a huge codebase and am currently trying to pull a value from the frontend (written in JS) and pass it to the backend of the app (written in ...
0
votes
1
answer
43
views
How can I make a gradle from a Library Project Android Studio
I am using Android Studio.
I have created a library project.and I have successfully included this library in another prstoject.I have followed the below steps to include that library in my project.
a....