Tagged Questions

11
votes
3answers
900 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 …
9
votes
18answers
936 views

What’s the most stupid thing you have ever done in software programming?! [closed]

Duplicate: Confessions of your worst WTF Moment. (What not to do.) Me first! Accidentally deleting the source code I have written for about 3 weeks. :(
7
votes
2answers
120 views

Geolocated version control?

Much like it's possible to geotag pictures, I wonder if there is a way to automatically geolocate the code associated with a commit - or any changes - in a version control system like SVN? I …
7
votes
7answers
823 views

Tool for adding license headers to source files?

I'm looking for a tool that will, in bulk, add a license header to some source files, some of which already have the header. Is there a tool out there that will insert a header, if it is not already …
6
votes
1answer
185 views

In source-control terminology what is a spike?

I've seen the word "spike" used in relation to source-control. For example, a project I'm working with has three top-level folders: trunk, branches and spikes. What's the meaning of this term?
5
votes
4answers
68 views

Utilities to generate an XML representation of a Java package/class?

I'm looking to generate an XML representation of the AST for a given java class (by parsing its source). Overall, what I want to do is write XSLT queries to find meta patterns in the source code - …
5
votes
2answers
437 views

Is there a Delphi library which returns all effective source paths for a project?

For static code analysis tools, it is necessary to know all effective source paths for a given Delphi project, which are defined on project level and in the global IDE configuration. Is there a …
4
votes
5answers
70 views

Including source files?

So I get the point of headers vs source files. What I don't get is how the compiler knows to compile all the source files. Example: example.h #ifndef EXAMPLE_H #define EXAMPLE_H int example(int …
4
votes
8answers
453 views

Why is Microsoft source code so complex?

I have been looking at the source code for Microsoft .NET Libraries such as System.Web...... Whenever I look inside the code, I see flags, events, a whole ecosystem of rather complicated code which …
4
votes
2answers
121 views

Source code of libraries downloaded with ivy

I use ivy with the ivy eclipse plugin to download dependencies. Works great. But how can I attach the source code for those libraries, in order to step into these libraries?
4
votes
8answers
330 views

linux, directories, where should stuff go

I'm currently trying to get to grips with using linux. I'm running mint linux (an ubuntu variant). When I install something using apt-get, files seem to get scattered across various system …
4
votes
11answers
670 views

C++ Header order

What order should headers be declared in a header / cpp file? Obviously those that are required by subsequent headers should be earlier and class specific headers should be in cpp scope not header …
3
votes
3answers
44 views

Managing databases in Open Source Software Projects

I was wondering how databases are managed in open source projects which are usually hosted in repositories like CVS or SVN. Placing codes in the SVN is very logical as it allows different team members …
3
votes
5answers
126 views

Is my source/development file hierarchy a good one?

I'm looking to organise my source code file hierarchy. I'm a C# (.NET) developer and come from an only Windows background (no Linux/Mac). I plan on using Subversion for source control. This is what …
3
votes
2answers
52 views

Which open source licenses allow distribution of binary executable/library without a copyright notice?

Let's say write a C library, and I want all versions of the source to carry my copyright/license, but I want users of the library distributing executable code, static or dynamically linked library to …

1 2 3 4 5 9 next
15 30 50 per page