Where can I get the source code for Eclipse?
I want to get the Eclipse platform source code and build it myself. Where could I get it? ...
I want to get the Eclipse platform source code and build it myself. Where could I get it? ...
I want to add a breakpoint in a class in Eclipse, but I don't have the source code for it. Is it possible to add a breakpoint in it anyway? In my case I really only need to know when a method is called. (As a side note: does anyone have the source code for j2ee_api_1_3.jar?) ...
Does anyone has been able to step into the definition of the DataSource member of an ASP .NET control? They all inherit from BaseDataBoundControl. I've been trying to step into the framework but apparently the symbol for that assembly is not available in the public server I took from here. Basically I'd like to know how they serialize ...
You wrote at: Opened SerialPort crashes C# application "A look into the .NET Framework source code helped a lot. But I think the thrown ObjectDisposedException should be caught by the SerialPort, not by the user." I'd like to take a look on source code for serialPort. How can I do it? ...
What is the best Windows program to print out source code (more generally, text files)? I'd like the following features: Includes line numbers Option of printing 2 or 4 pages on a single sheet of paper. Header includes filename and timestamp. ...
We have been using fogbugz and have been pasting code in tickets, but it always comes out hammered. is there any way to denote that a block of text is code? You know.. Like this (edit) Is it possible to put some simple html to set the text apart or something?? (edit again) based on my research, html code can be put in the Cases, b...
i have the source code of a website in the below address http://www.sourcecodeonline.com/details/aspportal.html How to run this website and edit it in VS 2008 ? there is no solution files here .. ...
Hello, I need some descriptors of MPEG7 in Matlab. The descriptors are dominant color, color layout, color structure, scalable color, edge histogram and homogeneous texture. Do you know where can I find Matlab source code for these descriptors? Thanks ...
I need to know if it's possible to use a tool like ctags or cscope to find all the usages of a function but filter the results depending on the value of one of its parameters. For example, let's assume we have a function void foo(int a, int b) that is used a thousand times along all the source tree and I need to check if it's being call...
Is there some free tool (preferably command line based) that you can give your root source directory and it will inspect all files and sub-folders and generate a set of nice "statistics"? Like... lines of code, number of classes, etc? I just thought it would be quite a nice and interesting way for us to keep track of the project's growt...
Hello everyone. Sometimes one needs to dig into someone else's code, understand it and maybe refactor/fix it. So I'm wondering what tools/practices do you use to do that? It's not about any specific language or platform, rather some advises in general. I myself find it very useful to run the code in question under debugger (if it is pos...
Is there a way to acces the page HTML source code using javascript? I know that i can use the document.body.innerHTML but it contains only the code inside the body. I want to get all the page source code including head and body tags with their content, and, if it's possible, also the html tag and the doctype. Is it possible? ...
What's a good source control repository that meets these conditions? Free Direct integration with Visual Studio, as VSS/TFS do Server-based Supports multiple applications Supports branching & merging Has a license suitable for one user ...
Apologies if this is a duplicate question. I am looking for a free private online Bazaar source host. Does anybody know of any? I had a quick look and it seems there are lots of Git, Mercurial, and SVN options, but no Bazaar? EDIT: Just to clarify, when I say "private" I mean in the sense that you get your own private repository where ...
Hi, How can i get the SubSonic 3.0.0.3 source code. ...
Hello, I know that there are many questions regarding the color themes in Eclipse. The problem is that all of them are for Java or PyDev and, of course, they don't work for C/C++. Do you have any cool syntax highlight theme for C++ under Eclipse? ...
Only JSF 1.1_01+ and 1.2 sources seems to be available. Links are dead for 1.1 and 1.0 sources : javaserverfaces.dev.java ...
In Visual Studio 2008, how can I easily find unused code in a source file? I've got a source file with 2800+ lines of code in it, and doing an individual 'find all references' would get a bit tedious. ...
Here is how I'm implementing my simple pygames now (I'm following a tutorial): import pygame, sys from pygame.locals import * def run_game(): pygame.init() SIZE = (640, 400) BG_COLOUR = (0, 0, 0) LINE_COLOUR = (255, 255, 255) screen = pygame.display.set_mode(SIZE) clock = pygame.time.Clock() while True: ...
I want to create a function which receives a single argument that holds the path to a PHP file and then parses the given file and returns something like this: class NameOfTheClass function Method1($arg1, $arg2, $arg2) private function Method2($arg1, $arg2, $arg2) public function Method2($arg1, $arg2, $arg2) abstract class Anot...