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
1 answer

authenticating application codebase

So I have been working on a client/server application written in java. At the moment I am looking for a way to verify that the code of the client application has not be changed and then recompiled. I've been searching Google for some time without a…
0
votes
2 answers

Java Applet issue in eclipse html file

I wanted to apologize for the question I figured it out it was the codebase but also an issue with eclipse after changing: codebase="F:\Apps Workspace\Java24\bin" as well as changing the use of the internal web browser to the external web browser…
0
votes
1 answer

Does Junit test classes available which are used for jdk 1.6 or 1.7

Is there any way to get junit test classes used to test jdk1.6 code base. JDK is coming with src.zip, in the same way can I get test.zip which contains all test cases for all jdk classes.
Shanmukhan
  • 27
  • 5
0
votes
2 answers

performance of a group of small libraries versus a single big one java

I collecting up many of my older projects and random code fragments and organizing them in a codebase. I'm trying to figure out if smaller libraries would be more efficient than a large one. The codebase will be used in Browser Applets, Desktop…
th3barri3
  • 31
  • 6
0
votes
1 answer

RMI rebind JRMP error

Since a few days i get the following error when I try to run my java server application: SEVERE: Stratego server exception: java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception is:…
Hans Leautaud
  • 1,742
  • 1
  • 19
  • 34
0
votes
2 answers

How to separate ArrayCollection's into seperate files in Flex?

I build Adobe Air applications using Flex. After you introduce a few things like list of countries and list of nationalities in ArrayCollection format code gets messy and incredibly long. Is it possible to place ArrayCollection's into separate…
Cninroh
  • 1,796
  • 2
  • 21
  • 37
-1
votes
3 answers

RMI codebase, connecting to local codebase

I am trying to do some testing using RMI. I have a .jar file having the classes with methods I need to call. On my netbeans projects I have a class TestClient which has to connect to ShareBroker which is my Remote interface. My problem is how to…
Giannis
  • 5,286
  • 15
  • 58
  • 113
-1
votes
1 answer

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 and finally hosting it on an AWS:S3/EC2 or AWS:…
-1
votes
1 answer

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 files. The files were originally developed with…
Reid
  • 4,376
  • 11
  • 43
  • 75
-1
votes
1 answer

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 the codebase to share the code that requires it?
XuDing
  • 1,982
  • 18
  • 27
-1
votes
1 answer

Setting up ssh config file for multiple Codebase accounts

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 errors when pushing up to the repo because my ssh…
Jay
  • 326
  • 2
  • 18
-1
votes
1 answer

- RMI code base doesn't work - Registry Lookup very slow and doesn't work

I can not understand how to use the codebase. I have the following structure: CLIENT: Client.java client.policy SERVER: Server.java Hello.java HelloInterfaces.java HelloInterfaces.java public interface HelloInterfaces extends Remote…
Stackuser
  • 140
  • 1
  • 12
-1
votes
1 answer

How to convert codebase to a hard-to-rip version?

For a job interview I have to hand them some code I wrote to determine my object oriented programming skills. Now have I been working for about two years at the same company and we have a project which I copied. But I can't just send them this…
baklap
  • 2,145
  • 6
  • 28
  • 41
-2
votes
1 answer

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 have a single code base for iPhone app and Apple…
Kalyan
  • 263
  • 5
  • 22
-2
votes
6 answers

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, a background image, app name and a url to a…
Luke Chase
  • 322
  • 1
  • 18
1 2 3
10
11