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 ...
0
votes
0
answers
58
views
Mode Edits en Agent Copilot dont respond
When I ask something (including #codebase) Copilot still in searching... forever
I ask for example "describe this app #codebase" to Copilot chat in mode Edits with any model (Claude or gpt) ...
1
vote
0
answers
141
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 ...
2
votes
1
answer
874
views
How can I build a library from source and ship it inside a crate in Rust
This question is related to Trouble with undefined symbols in Rust's ffi when using a C/Fortran library
I have a library pfapack to interface in Rust. The problem is this library is pretty niche, ...
0
votes
1
answer
189
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 ...
2
votes
0
answers
111
views
firebase codebase mixup
I ended up somehow to have 2 functions with 2 codebases, and I do not know now how to remove one of them.
So, when I use firebase deploy --project myelrondstats I get the bellow error:
Error: More ...
0
votes
1
answer
35
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 ...
1
vote
0
answers
173
views
Utils files in Python
In C++ codebases you tend to extract out certain commonly used small functions to a utils.h header file for reusability and to avoid defining them as methods when they are not class methods per se.
...
0
votes
0
answers
115
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.
2
votes
1
answer
982
views
Gitlab showing all target branch commits in new merge request
I branched from develop while working on a project, and when I made a merge request, Gitlab is showing all the commits on branch develop, whereas I only made two commits on the branch itself. It is ...
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 ...
-1
votes
1
answer
1k
views
How do I access a Magento 2 website codebase / directory files?
As you can probably tell, I am new to Magento2 and I am trying to figure out some of the basics. I'm a full-stack developer that is use to developing (frontend and backend) myself then using docker ...
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 ...
2
votes
2
answers
1k
views
How read an Angular codebase?
I am a junior developer and have been assigned to this team that works on a web application similar to Whatsapp but written in Angular. It has many modules, components and pipes which is frankly quite ...
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
151
views
How to quickly locate a css rule written in BEM, SASS?
How to quickly locate the source of a css rule written in BEM?
when I found a css rule in Inspector, say
.section__title{
...
}
I'd love it if I could just copy the .section__title, and search in ...
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 ...
0
votes
1
answer
714
views
How do I check Mobile Application's Code base as a layman?
I'm doing research around a series of mobile applications that exist in the Google Play and Apple App store. We're trying to avoid apps that have been built in SwiftUI as references.
Is there a way 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 ...
0
votes
0
answers
40
views
Switching between 2 versions of a class on a code base
Background:
I am working on a C++ code-base with around 10 files each having 100+ lines of code. There is a data class that is fundamental to my project and is used in other classes/functions ...
2
votes
1
answer
277
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 ...
-2
votes
1
answer
419
views
Can we use same codebase for iPhone and Apple watch app?
I need to develop an application which works in both iPhone and Apple Watch. Both apps have the same features like fall detection and reporting but the UI will be different in both devices. So can we ...
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
264
views
Can separate codebases be used for Installable and Instant versions of an app
I have a large game app that uses external resources like Firebase database I'd like to have an Instant App option for on Google Play. So far the most complete tutorial I've found to do this is the ...
0
votes
1
answer
415
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
48
views
Codename One - Improve Layout Animation Usage
Following the instructions in this documentation about Animations and Transitions, it is noted that animation done on the Form level requires taking the contentpane as the actual Container. So instead ...
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 ...
-3
votes
1
answer
122
views
One Codebase with Web Sites of Multiple Languages
I've been assigned a project to demonstrate one codebase housing multiple web sites. Requests for any one of the housed domains would first come through the main project directory, which would pass ...
1
vote
2
answers
835
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 ...
4
votes
0
answers
144
views
R: Searching package code in CRAN or installed locally
Suppose I wish to find instances of the use of one or more functions in the code of base or submitted packages, for purpose of better understanding idiomatic use of those functions. That is to say, I ...
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 ...
0
votes
0
answers
64
views
Find all double comparisons in a C# codebase
I recently learned the perils of comparing double values. Now, I want to find all of the double comparisons in our rather large c# codebase so that I can replace them. I've been doing this using full ...
-4
votes
1
answer
250
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 ...
0
votes
1
answer
276
views
How to run bootstrap.py to setup Firefox code base?
I followed the steps provided here. I ran python bootstrap.py, it prompted me to enter a choice, I entered 2, Firefox for Desktop Artifact mode.
How to resolve this?
-1
votes
1
answer
290
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
2
answers
62
views
Reasons not to update broken code in a live system?
In my current job, there is an error in the live code base which has been identified in one service.
We have identified a relatively small code change which would fix the issue and it has been ...
1
vote
1
answer
519
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
69
views
Python __gettattr__ returning function
I am currently trying to read python codebase - I picked up the crayons by Kenneth Reitz as it seems very well written and rather simple, but I am having issues understanding the meaning of the ...
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 ...
-2
votes
6
answers
165
views
Create lots of apps with most of the same code
I have searched the internet for an answer but can't really find what I am looking for. Im looking to have a master code base that I can use across lots of apps. The only differences are the app Icon, ...
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 ...
0
votes
2
answers
666
views
Building two different android apps on the same codebase that only differ by const
I am building two android applications, which relay on the same codebase but differ by the server address which they grab their files from.
Till now i've created two line of my server's address ...
-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 ...
-1
votes
1
answer
430
views
Setting up ssh config file for multiple Codebase accounts [duplicate]
The agency I work for have a Codebase account that I sometimes need to work with at home, but I have just setup a Codebase account for my freelance work, too.
However, I keep getting permission ...
0
votes
1
answer
44
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, ...
0
votes
1
answer
244
views
java applet ClassNotFoundException with codebase
I'm starting to work on an applet that will replace an existing one. Having never developed an applet before, I thought I'd get going with the popular HelloWorld example. I am able to run it a couple ...
1
vote
1
answer
836
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 ...
3
votes
1
answer
257
views
One WorkSpace for multiple applications
I want to create one code base for multiple applications.
I know that in ecllipse,we can have multiple applications and library project in one workspace.In this way we had a benefit that we have all ...
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....
0
votes
1
answer
506
views
Java Remote Method Invocation(RMI): codebase property
How to use the codebase java property to download the(Interface and Stub class)from the sever to the client computer, in java RMI(Remote Method Invocation)?