Questions tagged [codebase]

The term codebase, or code base, is used in software development to mean the whole collection of source code used to build a particular application or component.

The codebase for a project is typically stored in a source control repository. A source code repository is a place where large amounts of source code are kept, either publicly or privately. They are often used by multi-developer projects to handle various versions and developers submitting various patches of code in an organized fashion. Subversion and Mercurial are popular tools used to handle this workflow, and are common in open source projects.

152 questions
0
votes
2 answers

Possible to use one codebase for a subdomain for multiple sites?

I don't even know if this is even possible, but I thought I'd ask. I am creating a small CRUD application but I have multiple sites. Each site would use the CRUD. The application would have common CRUD methods and style, but each individual site…
REMESQ
  • 1,190
  • 2
  • 26
  • 60
0
votes
2 answers

DB2 Import with pipe delimeter and codebase is japanese script

I m using following import command for importing japanese script into db2 table. Import from './data/product attributes to be uploaded_20120124.txt' of del modified by coldel| CODEPAGE=932 INSERT INTO TEMP_UPLOAD_PRODUCT_ATTRIBUTES…
beetri
  • 1,039
  • 11
  • 24
  • 40
0
votes
1 answer

COM CLSID CodeBase key

When .net assemblies are registered for COM Interop, there is a CodeBase key in the registry that points to the executable. My question is: is the CodeBase key something specific to .NET, or is this a generic COM thing that all registered components…
Tim Long
  • 13,508
  • 19
  • 79
  • 147
0
votes
1 answer

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 Flutter seemed like a really good option to use,…
0
votes
1 answer

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 the server to the power of the local machine? For…
Mastas
  • 3
  • 3
0
votes
0 answers

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.
trz
  • 9
  • 3
0
votes
2 answers

one code base for iphone generic application?

I have built a generic application which can handle different content data - but for each content data, it will be a different iphone application (with a different name). I would like of couse to only keep one code base for all these different apps…
geebee
  • 131
  • 1
  • 11
0
votes
4 answers

How to administer a core code base centrally for many iPhone apps

The situation: I have a basic app with some central functionality. My clients (potentially many dozens) all want their own customized apps in the app store. The problem If I have dozens of apps in the app store and I want to change some of the core…
Mundi
  • 79,884
  • 17
  • 117
  • 140
0
votes
1 answer

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 services at the end of last year. It provides…
jmrivas
  • 137
  • 3
  • 12
0
votes
1 answer

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 my code editor. One step, so fast. However, when…
Victor
  • 121
  • 1
  • 4
0
votes
1 answer

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 peek at this code , my goal is to recreate this…
MJG
  • 73
  • 3
0
votes
1 answer

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 relatively easily check what the code base is…
0
votes
0 answers

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 throughout my pipeline. Initially, the class had 3-4…
0
votes
2 answers

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 in rootdir and I call something like import…
op_lop
  • 1
0
votes
1 answer

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 Codelabs one here…
Androidcoder
  • 4,389
  • 5
  • 35
  • 50