Tagged Questions
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.
161
votes
35answers
13k 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 ...
153
votes
17answers
18k 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?
62
votes
31answers
12k 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 ...
53
votes
14answers
20k 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.
38
votes
7answers
7k views
Is TortoiseGit ready for prime time yet?
I'm a big fan of the simplicity of TortoiseSVN. I also am interested in digging into git, and think it would make a good fit for an upcoming project. However, a strictly command-line based app can be ...
32
votes
13answers
1k views
How do I begin reading source code?
I understand the value of reading source code, and I am trying my best to read as much as I can. However, every time I try getting into a 'large' (i.e. complete) project of sorts, I am overwhelmed.
...
29
votes
9answers
2k 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 ...
28
votes
4answers
6k 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 ...
27
votes
10answers
14k views
What's the best way to generate a UML diagram from Python source code?
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 ...
25
votes
25answers
2k views
Do you pseudo-code?
Do you use pseudo-code to help you program? Does it help you write your programs faster with less bug-prone code or does it simply waste time?
Should it be standard practice to declare what you're ...
24
votes
7answers
673 views
When is someone else's code I use from the internet “mine”?
EDIT:
I thought my original question was too wordy, so here's the condensed version:
If you get some code snippet from the internet and end up rewriting most of it, changing names, adding exception ...
24
votes
23answers
6k 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 ...
23
votes
9answers
5k views
Exemplary Haskell Game Code
I know several games have been coded in Haskell, but being a newbie I don't yet consider myself capable of judging quality of coding (idiomatic style, etc.)
Can anyone recommend the source of a ...
23
votes
9answers
8k 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 ...
22
votes
18answers
8k views
Do you put copyright notices in your (proprietary) code?
I'm wondering if, when working on source for your employer, people include a copyright notice.
For example
/*
* Developer : Developer Name (developer.name@company.com)
* Date : xx/yy/zzzz
* All ...
21
votes
8answers
782 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 ...
21
votes
5answers
1k views
Does HTML5 mean the end of “rich” closed source programs for the web? [closed]
Unlike Flash, if you develop an application in HTML5 using Canvas, since it uses JavaScript, doesn't that mean the code is wide open? Does using HTML5 mean the end of closed code on the web browser? ...
21
votes
10answers
24k 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 ...
20
votes
23answers
1k views
Do you save the code you wrote at your previous jobs?
If so, how do you organize it? Do you refer to it often? Are there ethical implications?
I have a bunch of tarballs lying around that I keep telling myself I'll organize some day, but I've yet to ...
20
votes
13answers
3k views
What is the best rails example app?
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 ...
20
votes
30answers
4k 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 ...
20
votes
5answers
1k views
How do I avoid having the database password stored in plaintext in sourcecode?
In the web-application I'm developing I currently use a naive solution when connecting to the database:
Connection c = DriverManager.getConnection("url", "username", "password");
This is pretty ...
17
votes
21answers
1k views
How do you flag code so that you can come back later and work on it?
In C# I use the #warning and #error directives.
#warning This is dirty code...
#error Fix this before everything explodes!
This way the compiler will let me know that I still have work to do. What ...
17
votes
9answers
5k 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 ...
16
votes
8answers
911 views
Get original innerHTML source without the Javascript generated contents
I have this code:
<div id="test">
<script type="text/javascript">document.write("hello");</script>
</div>
If I do:
alert(document.getElementById('test').innerHTML);
...
16
votes
9answers
6k 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
11answers
523 views
Armchair Linguists: 'code' vs. 'codes'--or why I write 'code' and my manager asks for 'codes'
I wanted to tap into the collective wisdom here to see if I can get some insight into one of my pet peeves, people who treat "code" as a countable noun. Let me also preface this by saying that I am ...
16
votes
2answers
2k views
Visual Studio - Attach Source Code to Reference
My C# project references a third-party DLL for which I have the source code. Can I somehow tell Visual Studio the location of that source code, so that, for example, when I press F12 to open the ...
16
votes
8answers
6k views
Subversion and shared files across repositories/projects?
I am migrating a client's SourceSafe repository (3 projects) to SVN and two of the projects share source files. (These projects are separate products - with different names and release versions, etc)
...
16
votes
26answers
9k views
Best file comparison tool [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 ...
15
votes
8answers
711 views
How to convince people that a single class with 11975 lines of code is bad? (isn't it?)
I have a dejavu feeling when reading [What to do about a 11000 lines C++ source file?] post, but I don't think I can start taking action on my own since I do not have the authority to take action. So ...
15
votes
7answers
769 views
Source code annotation tool
I'm looking for a tool with which I can annotate source code.
I have some 3rd party source code (JavaScript) I need to understand and I don't want to change it (add inline comments) so that
line ...
15
votes
15answers
4k views
How many lines of debugged code do you produce in a day's work?
How many lines of debugged code do you produce in a day's work and what language would that be?
I know some languages are a little more difficult to work with but on average, how many?
14
votes
3answers
247 views
Where does the limitation of 10^15 in D.J. Bernstein's 'primegen' program come from?
At http://cr.yp.to/primegen.html you can find sources of program that uses Atkin's sieve to generate primes. As the author says that it may take few months to answer an e-mail sent to him (I ...
14
votes
3answers
860 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 ...
14
votes
1answer
10k views
How to generate a Java class which implements Serializable interface from xsd using JAXB?
I would like to introduce caching into an existing Spring project which uses JAXB to expose WebServices. Caching will be done on the level of end points. In order to do that classes generated from XSD ...
13
votes
1answer
80 views
php code organization
We just got new servers for our new system and I want to know what I should do to make my new code as efficient as possible, and how to organize it.
I want a good solution so I don't have to ...
13
votes
5answers
1k views
Writing code with issues for a technical interview [closed]
It's well known that developers have to read and understand code more than write it. So one of my standard interview questions is to give the candidate 10 lines of code and ask the following:
...
13
votes
5answers
843 views
What is “Spaghetti code”? [closed]
I have seen in many forums and technical sites the expression
"Code of our project is spaghetti"
What is the meaning of this expression?
13
votes
5answers
2k 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 ...
12
votes
4answers
293 views
Translating source code into a foreign language
I'm running an educational website which is teaching programing to kids (12-15 years old).
As they don't all speak English in the code source of the solutions we are using French variables and ...
12
votes
9answers
2k views
algorithm to find complementary solution to this problem
I had this coding question in an interview.I couldnt find an optimum solution to this.
what I did was,
for(i=0;i<n;i++)
for(j=i;j<n;j++)
if(a[i]+a[j]==k) print a[i], a[j]
But that would give ...
12
votes
1answer
2k views
Debug .Net Framework's source code only shows disassembly in Visual Studio 2010
I'm trying to debug .Net Framework's source code using Visual Studio 2010 Professional. I followed the steps described in Raj Kaimal's post but I must be doing something wrong since the only code I'm ...
12
votes
5answers
11k 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 ...
12
votes
11answers
743 views
Declaring a looooong single line string in C#
Is there a decent way to declare a long single line string in C#, such that it isn't impossible to declare and/or view the string in an editor?
The options I'm aware of are:
1: Let it run. This is ...
12
votes
7answers
508 views
What am I able to do legally when I'm unpaid for a project as a freelancer?
A company has me developing software on a contract basis. The software is for a client of the company. The project had been split into phases, with the client paying a portion of the total after the ...
12
votes
4answers
907 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?
12
votes
10answers
2k views
Where to find beautiful PHP code to read?
As a way to find inspiration and improve my PHP skills, I am looking for some beautiful PHP source code to read, preferably an open source "standard" web site rather than a more tool-like project such ...
12
votes
5answers
8k views
What's the right way to branch with Visual Source Safe?
What I currently do is I link the project to another location and give it the same name, then check the box where it says "Branch after share."
And then I would Check out the shared project and work ...
12
votes
8answers
3k 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. ...