source-code

Commented Out Functionality? To Remove or Not To Remove?

As I work on a code base there always comes a time when an old rule or some bit of functionality needs to be removed. I often simply comment out the code that needs to be removed. However I wonder whether I should simply delete the lines of code that need to be removed or leave them in? Any recommendations? Thanks! ...

Need some code for html website to protect it from thieves (code to put on site itself)?

i need code that will protect website code that can be put on the webpages of a site thanks in advance! ...

Remove unwanted lines,dead code from source code?

How to make source code free of the following Remove dead codes that are more than few lines between /* c++ codes */ Change more than one line breaks to one Remove modified user name and date /*-------- MODIFICATION DONE by xyz on ------------*/ I have used a code formatter tool to get a nice formatted code but stuck with code with a...

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 them in a text editor before I started to use Eclipse). I put all my .java file into the "game" directory. In Eclipse I created a "New Java ...

Associating Documentation With Source Code

Currently I am writing SQL for a handcoded ETL(extract transform load) process. As I am trudging along I writing documentation for the system. It will not only be helpful in the future but it's really useful to me to document high level process flows and batch jobs so that I make sure the details of my implementation or supporting thes...

XML to Type - Quick way?

Team; How are you doing? Im breaking my head trying to do this that seems simple but I can't figure it out... Suppose I have this XML as a string: <calles> <calle> <nombre>CALLAO AV.</nombre> <altura>1500</altura> <longitud>-58.3918617027</longitud> <latitud>-34.5916734896</latitud> <barrio>Recoleta</barrio> </calle>...

How 'terse' is too terse? -- Practical guidelines for expressing as much intent in as few characters

First, I love writing as little code as possible. I think, and please correct me, one of the golden rules of programming is to express your code in as few of character as possible while maintaining human readability. But I can get a little carried away. I can pack three or four lines into one statement, something like $startDate = $...

Migrate SVN repository from Google code to another repository server (keeping history)

I read some question/answers here about how to do it using svnadmin/dump etc. Actually I did not understand properly what I'm supposed to do. http://stackoverflow.com/questions/939963/how-to-migrate-svn-to-another-repository I think I have to do some sort of dump from the Google code repository using svnadmin, but where do I ge...

Android - where's code for Genie widget?

I've been looking all over http://android.git.kernel.org for Genie Widget code but unfortunately there's no top level search and lot of GITs to go through. If someone can point me to the right location I would really appreciate it. The Genie Widget is also known as News & Weather P.S. According to good folks from Android Developer forum...

Extracting function declarations from a PHP file

I'm looking to create an on-site API reference for my framework and application. Basically, say I have a class file model.class.php: class Model extends Object { ... code here ... // Separates results into pages. // Returns Paginator object. final public function paginate($perpage = 10) { ... more code here ...

Transposing UML into code

Short question. How do you go about transposing UML diagrams into code? The class diagram is an obvious one but what about others like Activity, Use Case, Sequence, State, Package, etc.? ...

What is a good program for storing “chunks” of commonly used source code

I've looked at CodeLocker (poorly styled and relatively unflexible, but free) and Source Code Library (Overzone software - very nicely styled, looks flexible, but very expensive - $80). Ideally, I'm looking for a relatively simple, inexpensive program (not an online website) that I can save text data (source code) with a title and keywo...

Create a Desktop Shortcut to an existing FOLDER using WiX

I have the need to create a Desktop Shortcut to an existing FOLDER (NOT to a file) using Wix. To elaborate more, my installer program has a CustomAction program written using C# associated with it. This CustomAction program creates a folder named "BSS" of which the path is selected by user. C:\ProgramData\MT\BSS Now I need to place a ...

Eclipse Java question - How to "Export" code the right way?

Dear Stackoverflow, I have a whole project in Java and I need to make a code listing in part of my documentation with all my classes and code. I was wondering, what is the best way to export the code? Is it simply just copy and paste, or is there a way to export the code properly to keep all the formatting etc? Basically I need to put ...

Latex + Source Code Import

Hi guys, I'm using latex to write a program listing of all my code and am following this: http://texblog.wordpress.com/2008/04/02/include-source-code-in-latex-with-listings/ It works, but my code runs of the side of the page. How can i fix this? Thanks Edit: Ok i got it working sort of! How can i get it to highlight syntax? I do ha...

convert a sql statement to class?

Is there a tool or code to convert a sql statement to class? Something like: Dim sqlText = "SELECT CustomerID, Name, Address, City FROM dbo.Customer WHERE CustomerID = 1" Dim obj As New ***SqlStatementTool***(sqlText) obj.GetTables() 'Will Return Tables in sqlText obj.GetWheres() 'Will Return conditions in sqltext obj.GetParameters() ...

Print new line in the source-code with jQuery.

I have a simple function in jQuery that creates new elements in the DOM. the problem is in the html source code, it append every element in the same line, and it's very bad to read. function _loadNewElements(elements){ for(var i=0; i<elements.length; i++){ var fixedElement = $('<img />') var position = elements[i].p...

has any gae-simple or gae source code achieve 'group' or 'bbs forum' on google-app-engine..

i want to find some source code about 'group'(like group app in pinax) or 'bbs forum' on google-app-engine, has anyone know this ? thanks ...

How do you run a uncompiled CGI?

I'm going to get right to it. iPage shared hosting. Trying to use mimetex.cgi to render math. Source code is at the link. After preparing everything just as I had with a different shared host (which worked), I get errors. Tech support tells me I need to upload the uncompiled source and use that instead. ??? Rather than going with th...

How do I find latex source-code?

Good morning (PST). Does anyone know where I could find the code that LaTeX uses to typeset inside the tabular environment? In the past I have looked in style files but I don't know where to find intrinsic LaTeX commands. -Thank you so much. ...