Tagged Questions

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.

learn more… | top users | synonyms

32
votes
19answers
2k views

What's the best way to become familiar with a large codebase?

Joining an existing team with a possibly-large codebase already in place can be daunting. What's the best approach; Broad; try to get a general overview of how everything links together, from the ...
11
votes
7answers
164 views

Alternatives to commented out code for historical purposes

Does anyone have a valid alternative for using commented out code checked into the repository for findability reasons? The reason I ask is because I had a discussion with a fellow developer recently ...
11
votes
9answers
517 views

How do you familiarize with a codebase that has no documentation?

I don't know, I've been told that the previous developers did fine in picking up and heading straight into coding with no major problem. I wonder if I am doing it wrong by requesting my manager for ...
9
votes
7answers
676 views

Organizing the source code base when mixing two or more langauges (like Java and C++)

I ran into a problem a few days ago when I had to introduce C++ files into a Java project. It started with a need to measure the CPU usage of the Java process and it was decided that the way to go was ...
5
votes
11answers
1k views

Understanding a Large, Undocumented Set of Source Code?

I have always been astonished by Wine. Sometimes I want to hack on it, fix little things and generally understand how it works. So, I download the Wine source code and right after that I feel ...
4
votes
4answers
63 views

How do I handle two separate yet very similar code-bases with git /github?

What is the best method to handle two separate, but very similar code-bases in git and git-hub? Background I have a git repository for a small shell script project. It only has 2 or 3 files of code ...
4
votes
5answers
283 views

Source Control system for not-so-smart programmers

Greetings! Problem: A huge code base spanning to several million SLoC, maintained(support/active enhancements etc) by a horde of second/third rate programmers(most of them who do not ...
4
votes
1answer
193 views

List used PHP modules in code base

I need to list all PHP extensions that's required by a given code base. What would be the best way to tackle this problem? My initial thought is to write a script that goes through all files and find ...
3
votes
5answers
101 views

Best ways to become familiar with a Perl codebase?

I recently joined a Perl project and I need to start being productive with the codebase fairly quickly. However, I'm finding that I'm getting stuck because I don't know where I need to change or how ...
3
votes
1answer
201 views

How to merge two seperate - yet similar - codebases into one SVN rep?

I have /var/www/cool_codebase on www.example.com AND I have /var/www/cool_codebase on www.example.net The codebases are for the same web app running on different servers. There is some ...
3
votes
4answers
122 views

Resources for learning how to better read code

I recently inherited a large codebase and am having to read it. The thing is, I've usually been the dev starting a project. As a result, I don't have a lot of experience reading code. My reaction ...
3
votes
7answers
212 views

How is duplicate HTML represented in your codebase, in a non-duplicate way?

Most HTML in a large website is duplicated across pages (the header, footer, navigation menus, etc.). How do you design your code so that all this duplicate HTML is not actually duplicated in your ...
2
votes
1answer
146 views

How to determine what is making Eclipse slow?

We have rather large code base (150+ projects, 400000+ lines of Java code, some Groovy and Gradle code, some Perl code, some XML, a lot of JSPs etc.). I managed to open all those projects in Spring ...
2
votes
10answers
368 views

Adding a field to a structure without breaking existing code

So I'm working with this huge repository of code and have realized that one of the structs lack an important field. I looked at the code (which uses the struct) as closely as I could and concluded ...
2
votes
2answers
100 views

RMI Activation Strange problem

I am trying to get an RMI activatable server to work - but no luck so far. Actually the server seems to run, but the client triggers a strange exception. I have 3 projects: client common server ...
2
votes
2answers
736 views

Assembly.Load(Byte[]) and Assembly.Location/Assembly.Codebase

I'm trying to load an assembly without locking the file. These assemblies could be third party assemblies so we don't necessarily have access to the code and one or two of them make use of ...
2
votes
2answers
79 views

Merging Core Libraries

About a year ago our company rolled a relatively large software package written primarily by two senior developers. For ease of demonstration, I'll call it "project A". Since then, we have been ...
2
votes
9answers
216 views

Is changing a variable name throughout your entire codebase just asking for disaster?

Let’s say that you decide to change the name of Stack Overflow to Frack Overflow. Now, in your code you already have dozens of objects and variables and selectors with some variation of the name ...
1
vote
2answers
59 views

Add on to: How do I protect my Python codebase so that guests can't see certain modules but so it still works?

How do I protect my Python codebase so that guests can't see certain modules but so it still works? My question is an add on question posted on the page above. If there are two svn directories; ...
1
vote
1answer
54 views

Using Codebase to load assembly

Based on this question, I tried using <codebase> to locate an external assembly. Now, when I run the program, I get an error message saying that the private assembly was located outside the ...
1
vote
0answers
48 views

Tomcat Deploy fail in free.hostingjava.it

I am using free.hostingjava.it for my application, but when try to deploy the web app, it gives me an exception: Caused by: java.security.AccessControlException: access denied ...
1
vote
0answers
46 views

Can you use environment variables to replace hardcoded path for href attribute in codebase element

I was curious if CLR could load assemblies from a specific location and this is what I found which basically loads the assembly from C:\MyAssemblies folder. Now, my question is - Is it possible to ...
1
vote
1answer
39 views

How to create website specific configuration files while running multiple ASP.NET websites on a single code base?

I want to create 2 websites on a single code base in asp.net. lets for say : www.domain1.com www.domain2.com I need to keep all the appsetting key name sames but with different values for each of ...
1
vote
1answer
62 views

How to you measure lines of front-end code (HTML, CSS, JS, JSP)?

The company I work for is being audited and I have to provide some metrics on our codebase. I have provided some statistics on our Java code using some plugins for Eclipse. But I also need to ...
1
vote
1answer
48 views

Mozilla codebase checkout hangs

Hi I'm planning to study Mozilla codebase. I tried to checkout repository as follows: C:\mozilla\firefox> hg clone http://hg.mozilla.org/mozilla-central destination directory: mozilla-central ...
1
vote
0answers
41 views

Tools and Advice for “GCD” Language and Automatic Porting to Other Languages

I'm considering building a fairly nontrivial library, but one that could see application in a few different languages/environments. Does anyone have any experience or advice on choosing a base ...
1
vote
1answer
312 views

How can I convert Assembly.CodeBase into a filesystem path in C#?

I have a project that stores templates in a \Templates folder next to the DLLs and EXE. I want to determine this file path at runtime, but using a technique that will work inside a unit test as well ...
1
vote
3answers
83 views

Where to start to build a real codebase from scratch?

Currently, I have a more or less organized set of projects I work or worked on. Some are refactored, documented and unit-tested, others are not. When I want to reuse a code I've written before, I ...
1
vote
2answers
941 views

Using <codebase> element in app.config

I intend to keep few dll's in a folder other than the bin folder for my .NET 3.5 Windows application. I am unsure of how would I use the codebase element or the probing element to specify the right ...
1
vote
2answers
1k views

java.rmi.UnmarshalException: unable to pull client classes by server

I have an RMI client/server set-up on two machines that works fine in a simple situation when the server doesn't require a client-side defned class. However, when I need to use a class defined on the ...
1
vote
4answers
237 views

how to use C# debugger (or anything else) to examine what happens during a GUI event in an open source app?

imagine that you are given a big nice app in C#, with full source code. So you want to figure out what methods are executed when you do a user event, e.g. press a button or press a hotkey or whatever. ...
1
vote
2answers
863 views

Can't get AllPermission configured for intranet applet. Can anyone help?

After doing a lot of reading and testing I've been unable to give all permissions to an intranet applet through the codeBase grant option. This applet need full permissions because it will have to ...
1
vote
1answer
52 views

Open Sourcing a Framework: Ok, I bought the concept, now what?

(Note to moderators: I did my homework, and I know there is a very similar question, I'm putting on a different perspective. Please be somewhat more lenient to me. Yes, I'm asking for forgiveness not ...
1
vote
2answers
284 views

Remote Codebase

I have a dll. That dll is uploaded on a server. I want that each time the application starts to get the "latest" dll from the server, so I've used the following code in my app.config. Why isn't it ...
0
votes
2answers
19 views

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 ...
0
votes
1answer
33 views

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 ...
0
votes
1answer
55 views

How to manage source code in CVS based on different version of a codebase?

I am doing a Java program based on the codebase provided by PTC. Now that codebase has a new version in which the API has been slightly changed, therefore I have to change my code accordingly. Now my ...
0
votes
1answer
169 views

RMI with multiple JAR inclusion

I am coding a RMI program with 3 JAR: RMIServer, contains server-side classes RMIClient contains client-side classes RMIResource contains server & client shared content (interfaces, custom ...
0
votes
2answers
47 views

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 ...
0
votes
4answers
112 views

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 ...
0
votes
0answers
362 views

Java policy file cannot assign permissions to a codebase jar

I have written my java policy file to give allPermission to a jar say "xyz.jar" grant codebase "file:lib/xyz.jar" { permission java.security.AllPermission; }; But while executing the program I ...
0
votes
0answers
45 views

Sequiter's Codebase and C++Builder XE

I'm trying to get Sequiter's Codebase to compile on C++ BuilderXE, but I can't for the life of me get it to work, but it did work fine on C++ Builder 6. Does any one know if this is a definite ...
0
votes
2answers
159 views

Specifying remote codeBase for Java security policy

I have a client-side security policy, with a statement that grants permissions. I want to be able to specify it to grant the set of permissions for an RMI server only. For example this works: grant{ ...
0
votes
1answer
193 views

Versioning and common code-bases with Eclipse

I'd like to bring out an Android app in the near future, so I was wondering how to support a couple of funcitonalities I have got used whilst developing for J2ME and iPhone first the versioning. ...
0
votes
2answers
121 views

How do you sync changes between multiple codebases?

Let's say I want to create a spinoff of a chat application branded under a different name, different UI, and some changed features. How would one sync changes between these to codebases which are 80% ...
0
votes
3answers
2k views

rmi class can not found exception

I wrote an simple project using java rmi and exported to an executable jar file. When I tries to run it, sometimes i got exceptions and sometimes it works. When I specify ...
0
votes
2answers
769 views

Javascript_Java_Interaction applet “Codebase” problem

I saw an article about Javascript_Java_Interaction today at : http://www.rgagnon.com/javadetails/java-0184.html [ You can try the working version on that site ] So I tried it on my PC, after some ...
0
votes
2answers
2k views

Why does my App.Config codebase not help .NET locate my assembly?

I have the following client application and its corresponding config file: namespace Chapter9 { class Program { static void Main(string[] args) { ...
0
votes
4answers
198 views

Add to Wikipedia's code?

I know that the wiki concept is let people from around the world contribute and everything. Now is there a way to add code ("contribute") to Wikipedia's codebase? Open-source? For eg. I'd like to ...