Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
22
votes
15answers
11k views

“The breakpoint will not currently be hit. The source code is different from the original version.” What the hell does this mean?

I'm really hoping someone can help me out with this one. When debugging in Visual Studio, sometimes I add a breakpoint but it's hollow and VS says "The breakpoint will not currently be hit. The source ...
22
votes
8answers
4k 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 ...
21
votes
1answer
313 views

Scala bomb? (like a zip bomb)

Please excuse the funny title, I am using it in analogy with "zip bomb". Is it possible to create a scala source file, that will, when compiled, produce a large number of class files (or a very large ...
21
votes
7answers
25k views

Installing Ruby 1.9.1 on Ubuntu?

I wonder about installing the latest version of Ruby on Ubuntu 9.04. Now I can run through the ./configure and make stuff fine, but what I wonder about: how to avoid conflicts with the packaging ...
19
votes
11answers
956 views

How to navigate around and get familiar with large C or C++ code base? [closed]

Possible Duplicate: What’s the best way to become familiar with a large codebase? Dear fellow C and C++ programmers, today I got my hands on a new base of code which is around 800,000 ...
17
votes
13answers
590 views

Java source refactoring of 7000 references

I have a huge problem. My supervisors want me to change a piece of java code which can effect whole project. I need to change the signature of the void log(String) method which should take two more ...
14
votes
13answers
1k views

Open source Python project to contribute to

Until recently, I was a Linux Administrator for a company which went out of business. I don't need money so I don't plan to work for a while. With all this free time, I'd like to work on my ...
11
votes
2answers
263 views

Where can I get an open source Radio driver and RIL for an android phone?

I am looking for a phone (preferably android) where I can use software to have full control over the cellular radio hardware. anyone know of such a device? preferably a popular device on the market :) ...
11
votes
11answers
3k 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 ...
10
votes
11answers
446 views

Do you know of any programs worth reading?

One of the top tips for new programmers is to read programs, like the "old masters" who studied paintings of their ancestors, all programmers should also study programs of their colleagues. The ...
10
votes
2answers
1k 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?
10
votes
6answers
50k views

WPF Image Dynamically changing Image source during runtime

I have a window with a title on it. When the user selects a choice from a drop down list, the title image can change. The problem is when the image loads, it's a blurred, stretched, and pixelated. ...
9
votes
9answers
1k views

Where to put include statements, header or source?

Should I put the includes in the header file or the source file? If the header file contains the include statements, then if I include that header file in my source, then will my source file have all ...
9
votes
7answers
853 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 ...
9
votes
2answers
166 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 ...
8
votes
3answers
4k views

How do I install Arc to get a Hacker News clone website?

I've downloaded the source code for arc3.1 and extracted it into a folder. I've downloaded and installed version 372 of MzScheme (on Mac OSX). What do I do next? The install instructions on the arc ...
8
votes
3answers
360 views

Is there a way to trace through only project source in Delphi?

I'm using Delphi 2010 and I'm wondering if there's a way to trace through code which is in the project without tracing through calls to included VCLs. For example - you put in a breakpoint and then ...
8
votes
4answers
1k views

How do I change the locations of source files in a symbols file (pdb)

Basically what I want to do it this: a pdb file contains a location of source files (e.g. C:\dev\proj1\helloworld.cs). Is it possible to modify that pdb file so that it contains a different location ...
7
votes
2answers
154 views

What is the difference between Eclipse “Import” and “Create project from existing source” for Android projects?

I know there are two ways to import the existing Android projects into Eclipse. That is, "import" and "create project from existing source". But what are the differences between the two import ...
7
votes
2answers
12k views

how to implement a pop up dialog box in iOS

After a calculation, I want to display a pop up or alert box conveying a message to the user. Does anyone know where I can find more information about this? Thanks
7
votes
5answers
224 views

What free tools can help untangle hairy C++ sources?

I've been hired to fix bugs etc on a huge messy set of C++ sources. These make multiple .so and executables. Written by several people, there are classes upon classes upon classes with many short ...
7
votes
2answers
752 views

How do you keep Xcode project source files in sync with your file system directories?

I'm new to XCode and I find the file management a huge pain. In most IDEs, you can simply have the project source tree reference a directory structure on disk. This makes it easy to add new files to ...
7
votes
6answers
2k views

Can .NET source code hard-code a debugging breakpoint?

I'm looking for a way in .NET (2.0, C# in particular) for source code to trigger a debugging break as if a breakpoint was set at that point, without having to remember to set a specific breakpoint ...
6
votes
3answers
161 views

Rscript vs. source: What are the key differences?

This might be a very basic question, but have not found a convincing answer yet. When executing an R script within the R environment, I can either do source(foo.R) or system("Rscript foo.R"). Is there ...
6
votes
2answers
167 views

sbt to exclude source directory

How do I config build.sbt to exclude src/main/java directory? I would like to put my Java sources there but I don't want to compile them. Also, can I exclude a file or group of files specify with RE. ...
6
votes
2answers
2k views

Best way to attach Android Source to Eclipse

I've previously had success attaching the Android Source to Eclipse by following the instructions here: http://johnsenf.blogspot.com/2009/12/android-sources-and-javadoc-in-eclipse.html However this ...
6
votes
5answers
2k views

how to add language support to android

hello i hope someone put me on the right direction with my problem i want to work on supporting my language, specially the writing on android we use Arabic characters with little modification ( like ...
6
votes
2answers
256 views

C++ Adobe source libraries impressions?

I just stumbled upon Adobe source libraries, ASL. It is set of templates and functions similar to boost, under MIT license. Some of the utilities in the library I found quite useful and now I consider ...
5
votes
1answer
105 views

Parsing a Source C file and getting a list of function in C#

I want to write a program in C# that uses a library to parse C source files, and provides me with a data structure containing all the functions and parameters associated found in it. I don't need to ...
5
votes
3answers
213 views

Unpretty Print Source Code

Is there any tool that will "un-pretty print" source code? Basically, get rid of all spaces, all comments, all new lines and transform the code into one humongous line? I don't want obfuscation Its ...
5
votes
1answer
923 views

Attaching Java Source to Android projects in Eclipse

How can I attach Java source to an Android project? I'm able to browse java source for a Java project, but not for an Android project. I modified project properties and add Java source in ...
5
votes
6answers
633 views

Java static source analysis/parsing (possibly with antlr), what is a good tool to do this?

I need to perform static source analysis on Java code. Ideally, I want the system to work out of the box without much modification from me. For example, I have used Antlr in the past, but I spent a ...
5
votes
1answer
2k views

WPF Image change source when button is disabled

I'm trying to show a different image when the button is disabled. Should be easy with triggers, right?! For some reason, I have not been able to get the image source to switch to the disabled image ...
5
votes
2answers
1k views

Where to find source code for java.lang native methods?

I'm vaguely familiar with the JNI, and I'm curious to see my machine-specific implementation for some native methods in the java.lang package. Thread#currentThread(), for example. I've found a bunch ...
5
votes
1answer
707 views

Change Multiple Image Sources Javascript

I am creating a simple image gallery, and I would like to create multiple sets of images. On the click of a link all of the images in the link's given set will change. here is my current code: ...
5
votes
4answers
400 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
913 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 ...
5
votes
8answers
514 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 ...
5
votes
8answers
1k views

C++ source code comprehension tools

I'm starting work on a huge C++ codebase, and was wondering if someone could suggest good source code comprehension tools. I usually use doxygen but was curious to see if anything better existed. ...
5
votes
1answer
759 views

Switching off the .net JIT compiler optimisations

I have a curly one here. When we remote a method (that is using generics) the remoting sink cannot seem to discover our method from the other identical named ones. Debugging with .net source code ...
4
votes
4answers
100 views

Do I need .CPP files at all? Use headers only and make everything inline?

GCC 4.6.1, specifically. I am aware that CPP files serve to separate interface from implementation; that's not of interest right now. Looking at this, I don't see any reason not to use only headers ...
4
votes
2answers
179 views

How to run multiple apps on the same screen in Android?

I want to customize the Android source Code in a way that it can run multiple Application on same Screen. Is that possible? Can somebody have any ideas about this, Please share. You can check out ...
4
votes
2answers
184 views

RoutedEventArgs.Source vs Sender

What is the difference of sender vs source in wpf event handling, I googled it but didn't find any useful answer. Like if I had an ellipse in a canvas, and I click on the ellipse, the ellipse would be ...
4
votes
4answers
109 views

C++ One Header Multiple Sources

I have a large class Foo: class Foo { public: void apples1(); void apples2(); void apples3(); void oranges1(); void oranges2(); void oranges3(); } Splitting the class is ...
4
votes
4answers
117 views

Team Foundation Server: How to configure workspaces for two applications that share assemblies?

I have a question about Workspaces on TFS. Currently, I am using TFS 2008 (though I will soon be migrating to TFS 2010), and I have two workspaces: Workspace1 Workspace2 Workspace1 and Workspace2 ...
4
votes
3answers
83 views

Linux: change OS source code OR automate launching a script

I'm a complete Linux newbie so please don't murder this thread with negative votes if my question is stupid. Here's exactly what I want to do: have a script that, upon detecting that a new file has ...
4
votes
2answers
458 views

Where is the latest JDK6 source code?

On oracle's site [1], the latest JDK binary is "Java SE 6 Update 24". but the latest source code is for Update 23. Where is the source code for Update 24? There's probably not much difference, but ...
4
votes
9answers
1k views

How to get the HTML source of a webpage in Ruby

In browsers such as Firefox or Safari, with a website open, I can right click the page, and select something like: "View Page Source" or "View Source." This shows the HTML source for the page. My ...
4
votes
1answer
682 views

GDB - 'reload' source files

OK, this is my problem: I use a virtual machine with a debug kernel, so I can connect to a local instance of gdb, and can debug kernel modules. The modules are compiled with debug info on, and this ...

1 2 3 4 5 17