Source code is text written in a computer programming language. It can be automatically translated to binary machine code that the computer can directly read and execute.
59
votes
9answers
6k views
isset() and empty() make code ugly
I have several older applications that throw a lot of "xyz is undefined" and "undefined offset" messages when running on the E_NOTICE error level, because the existence of variables is not explicitly ...
41
votes
4answers
10k views
Python - Parse a .py file, read the AST, modify it, then write back the modified source code
I want to programmatically edit python source code. Basically I want to read a .py file, generate the AST, and then write back the modified python source code (i.e. another .py file).
There are ways ...
23
votes
30answers
5k views
Best rule for maximum function size?
In another question, a popular answer suggested that large functions demonstrate poor form.
How large would you let a function get before you broke it up?
(This could be in lines of code or a more ...
49
votes
10answers
27k views
What's the best way to generate a UML diagram from Python source code? [closed]
A colleague is looking to generate UML class diagrams from heaps of Python source code.
He's primarily interested in the inheritance relationships, and mildly interested in compositional ...
52
votes
14answers
47k views
Get source jar files attached to Eclipse for Maven-managed dependencies
I am using Maven (and the Maven Eclipse Integration) to manage the dependencies for my Java projects in Eclipse. The automatic download feature for JAR files from the Maven repositories is a real time ...
107
votes
31answers
25k views
Do you still limit line length in code?
This is a matter on which I would like to gauge the opinion of the community: Do you still limit the length of lines of code to a fixed maximum?
This was certainly a convention of the past for many ...
19
votes
9answers
7k views
How would you organize a Subversion repository for in house software projects
I work for a company whose primary business is not software related. Most documentation for using source control is written with a development team writing for commercial or open source projects in ...
13
votes
12answers
4k views
How do we define Code Quality? [closed]
Does anyone have a reasonable definition of Code Quality? I don't think there is a good definition, and I see plenty of bad definitions. There are many definitions for Correctness, but I would ...
26
votes
6answers
21k views
Java JDK Source Code?? Where to find it?
I like to see what a method in the Java API does. So I want the JDK Source Code.
Before I re-installed Linux I had the scr.zip package with all the official source code in it. I just had to tell ...
10
votes
8answers
14k views
Best source code formatter for Javascript?
I've been digging through Stack Overflow as well as a number of Google searches, and I cannot find a satisfactory code formatter for Javascript.
I have found several related tools, such as syntax ...
216
votes
16answers
21k views
How can I know which parts in the code are never used?
I have legacy C++ code that I'm supposed to remove unused code from. The problem is that the code base is large.
How can I find out which code is never called/never used?
28
votes
8answers
2k views
Recommended JavaScript annotated source code for learning
I have recently found annotated source code for underscore.js and backbone.js
I'm currently going through these reading them to learn how other authors structure and write javascript code. It's a ...
25
votes
25answers
20k views
Which file comparison tool can handle block movement and multiple revisions? [closed]
I've been using Subversion for a while now. I love it. And the feature I use the most is diff. But sometimes it is really frustrating when your comparison windows is filled with changes like: block ...
17
votes
5answers
13k views
Android Support Library (v4). Getting the source and attaching it to the library/jar in Eclipse
Having the source code attached to external libraries is awesome. Where to find the source code for the v4 support package? Preferably it would be a zip file which could be easily attached to the ...
7
votes
4answers
4k views
Tool for analyzing VB6 source code (like Understand from SciTools)
Does anyone know of a tool to analyze/navigate VB6 source code like the tool from scitools?
http://www.scitools.com/products/understand/
15
votes
9answers
15k views
how do i hide javascript code in a webpage?
Is it possible to hide the javascript code from the html of a webpage, when the source code is viewed through the browsers View Source feature?
I know it is possible to obfuscate the code, but I ...
5
votes
2answers
713 views
Where is the implementation of InternalEquals(object objA, object objB)
while diassembling the .Net Source Code using Reflector, I came upon the Equals implementation in the Object Class and it refers to
bool InternalEquals(object objA, object objB);
Which again ...
2
votes
8answers
745 views
What are the best ways of protecting my source code? [closed]
What is the best way of protecting my source code from being distributed without permission.
I've thought of perhaps moving my source to another server.
Also toyed with the idea of obfuscating my ...
84
votes
14answers
37k views
SVN Repository Search
Is there any good software that will allow me to search through my SVN respository for code snippets? I found 'FishEye' but the cost is 1,200 and well outside my budget.
33
votes
11answers
15k views
Java/Eclipse on MacOSX: where is the src.zip?
With the latest Java update on MacOSX 10.6, Eclipse does not find the Java sources anymore.
I am not exactly sure (i.e. don't remember anymore) if I have downloaded the sources manually in the past ...
16
votes
2answers
4k views
.NET xml docs - inheriting documentation
NDoc has an XML element inheritdoc which allows you to inherit documentation of a member from the parent class (or an implemented interface). However, Visual Studio (i.e. the C# compiler) does not ...
9
votes
9answers
6k views
Java Clustering Library
Thanks for reading my question. I am looking for a light weight clustering library in java. I don't need 100s of clustering algo in that library just 5 to 7 algo would be fine for me.
I am sure, you ...
7
votes
3answers
7k views
Finding C++ interval tree algorithm implementation [duplicate]
I'm trying to find an efficient C++ interval tree implementation (mostly likely based on red black trees) without a viral or restrictive license. Any pointers to a clean lightweight standalone ...
4
votes
6answers
1k views
How to count words in java
I am looking for an algorithm, hint or any source code that can solve my following problem.
I have a folder it contains many text files. I read them and store all text in STRING. Now I want to to ...
2
votes
1answer
2k views
How are arrays implemented in java?
Arrays are implemented as objects in java right? If so, where could I look at the source code for the array class. I am wondering if the length variable in arrays is defined as a constant and if so ...
30
votes
22answers
9k views
Best Application for storing code snippets [closed]
Just wondering if you can point me in the direction of a simple, fast program which stores code snippets. I have been using a local wiki up to now, but I find it a little annoying at times. Ideally I ...
43
votes
10answers
31k views
Xcode source automatic formatting
As a C# developer, I have become highly dependent on the automatic formatting in Visual Studio 2008. Specifically, I will use the CTRL + K , D keyboard shortcut to force things back into shape after ...
14
votes
7answers
5k views
Directory layout for pure Ruby project
I'm starting to learn ruby. I'm also a day-to-day C++ dev.
For C++ projects I usually go with following dir structure
/
-/bin <- built binaries
-/build <- build time temporary object (eg. ...
28
votes
15answers
31k views
What to write in the header comments of a code file?
I'm just starting a new green-field development project, and I'm trying to set some standards. I know that a lot of codebases have header comments in every code file with a copyright notice and other ...
21
votes
5answers
6k views
Automated Java to Scala source code conversion?
(Yes I know I can call Java code from Scala; but that is pointless; I want to DELETE the Java code, not keep it around and have to look at it and maintain it forever!)
Are there any utilities out ...
14
votes
4answers
4k views
How to protect compiled Java classes?
I know, many similar questions has been asked here. I am not asking if I can protect my compiled Java class - because obviously you will say 'no you can't'. I am asking what is the best known method ...
10
votes
5answers
1k views
Trying to decide what branching strategy to use during the development/maintenance of a web application
As the title reveals, I am trying to decide on the best branching strategy for a web application project. I have read many articles/posts about branching strategies in general, I would almost say too ...
8
votes
15answers
822 views
Why are some functions extremely long? (ideas needed for an academic research!)
I am writing a small academic research project about extremely long functions. Obviously, I am not looking for examples for bad programming, but for examples of 100, 200 and 600 lines long functions ...
7
votes
6answers
2k views
Really useful VB6 source code
This isn't a question but I thought I'd start a thread where links to exceptionally useful (and widely applicable) vb6 code could be placed.
My choice is by someone called John Korejwa and is located ...
11
votes
2answers
3k views
R: show source code of an S4 function in a package
I used the packages topGO in R to analyze gene enrichment with the following code:
sampleGOdata <- new("topGOdata", description = "Simple session", ontology = "BP",allGenes = geneList, geneSel = ...
10
votes
4answers
7k views
view source code in R
How do I view source code in R? For example, for function portfolio.optim
> require(tseries)
> portfolio.optim
function (x, ...)
UseMethod("portfolio.optim")
<environment: ...
5
votes
4answers
5k views
Where can I find the source code for Java's Square Root function?
I know that Math.sqrt calls StrictMath.sqrt(double a)
I was wanting to look at the actual code used to calculate it.
7
votes
12answers
1k views
Good practice class line count
I know that there is no right answer to this question, I'm just asking for your opinions.
I know that creating HUGE class files with thousand lines of code is not a good practice since it's hard to ...
6
votes
4answers
8k views
What is “src” directory created by Eclipse?
I just installed Eclipse.
The Eclipse created the "workspace" folder.
In this folder I created a "game" sub-folder (for my class called "game"). I have already .java files for that project (I wrote ...
5
votes
1answer
474 views
How to get surrounding method in Java source file for a given line number
I have a line number of a Java source file and want to get the sourounding method for that line number programatically.
13
votes
4answers
1k views
How to find (and replace) all old C-style data type casts in my C++ source code?
How can I locate all old C-style cast in my source?
I'm using Visual Studio, may be there is some compilator warning that I have to enable? Or use some software tool for this?
9
votes
5answers
7k views
How to get JRE/JDK with matching source?
I'd like to get at least one JRE/JDK level on my Windows machine where I have the JRE/JDK source that matches the exact level of the JRE/JDK. My purpose is to be able to go into the system classes ...
5
votes
3answers
2k views
PHP DOM - append source html to a DOMElement
is there a way of appending source html into a DOMElement? Something like this:
$trElement->appendSource("<a href='?select_user=4'>Username</a>");
it would parse that fragment and ...
2
votes
3answers
834 views
Loading external source code and using them internally (by re-compiling or something)
Is there a way in using externally stored sourcecode and loading it into a Java programm, so that it can be used by it?
I would like to have a program that can be altered without editing the complete ...
5
votes
2answers
324 views
Where can I find JavaEE packages' sources?
I'm developing a JavaEE system (distributed on Weblogic App Server), but I don't have the sources for the JavaEE packages (javax.ejb.*, for instance).
Where can I find the sources (not javadoc) for ...
5
votes
2answers
943 views
How can I set the default file format in the Delphi IDE to UTF8?
Delphi 2009 sets the default file format for new source code files to ANSI, this makes the source code platform-dependent.
Even for a new XSD file created in the IDE, which by default starts with ...
0
votes
5answers
3k views
Does git ignore empty folders?
I created an Android project, added it to my git repo, comitted and pushed my clone to the master. Later I tried checking out the project and Eclipse complained about missing src folders. I checked my ...
192
votes
35answers
15k views
What to do about a 11000 lines C++ source file?
So we have this huge (is 11000 lines huge?) mainmodule.cpp source file in our project and every time I have to touch it I cringe.
As this file is so central and large, it keeps accumulating more and ...
25
votes
13answers
4k views
What is the best rails example app? [closed]
What is the best available non-trivial example app for rails with uptodate source, test suite and adherence to best practices?
[I am looking for an example of a full fledged application - with ...
33
votes
9answers
10k views
How do you actually read source code?
Reading source code is a good way to improve as a programmer, but I've never seen a great explanation of how to do it. We often read textbooks & novels linearly, perhaps taking notes along the ...