Tagged Questions

The use of existing software, or software knowledge, to build new software

learn more… | top users | synonyms

40
votes
17answers
2k views

Tools to identify code duplications

I have being reading and tracking some questions on code reuse and I have this question: Are there any tools to identify duplicate or similar code? I have googled this a while ago and found nothing ...
17
votes
7answers
330 views

How to avoid repeated code?

I'm still quite new to programming and I noticed that I'm repeating code: protected void FillTradeSetups() { DBUtil DB = new DBUtil(); DataTable dtTradeSetups; dtTradeSetups = ...
16
votes
5answers
1k views

Does a library to prevent duplicate form submissions exist for django?

I am trying to find a way to prevent users from double-submitting my forms. I have javascript that disables the submit button, but there is still an occasional user who finds a way to double-submit. ...
14
votes
18answers
1k views

Code Reusability: Is it worth it?

We all write reusable classes and code. We factor in configurability to allow us to reuse this fantastic new class again and again. We tell our bosses that spending this extra time now will save ...
12
votes
7answers
469 views

Does it exist: Repeated Code Finder?

In the near future, I will be inheriting a somewhat large project. I've been making some small updates to it recently, and noticed that parts of it could use some refactoring, since there are methods ...
12
votes
6answers
466 views

What techniques do you use to maximise code reuse?

Some years ago I was told about a study into code reuse. Apparently it was found that, on average, programmers have a 7 minute window when searching for code to reuse. If they don't find code that ...
11
votes
11answers
484 views

How do classes help you manage large applications?

This came up in a conversation I was having online, and it occured to me that I have no idea how this is supposed to work: Quite a lot of programmers seem to just take as a given- indeed, obvious that ...
10
votes
1answer
3k views

Errors: “INSERT EXEC statement cannot be nested.” and “Cannot use the ROLLBACK statement within an INSERT-EXEC statement.” How to solve this?

I have three stored procedures Sp1, Sp2 and Sp3. The first one (Sp1) will execute the second one (Sp2) and save returned data into @tempTB1 and the second one will execute the third one (Sp3) and ...
10
votes
2answers
219 views

How do you manage your custom modules?

I write tons of python scripts, and I find myself reusing lots code that I've written for other projects. My solution has been to make sure the code is separated into logical modules/packages (this ...
9
votes
7answers
402 views

Is there a website to look up common, already written functions?

I'm sitting here writing a function that I'm positive has been written before, somewhere on earth. It's just too common to have not been attempted, and I'm wondering why I can't just go to a website ...
9
votes
10answers
1k views

Boost is just great and free … Is there a catch?

The reason for this, I find myself being asked to make replacement classes for boost's classes in a commercial project. And I am asked to test them against the boost class's behaviour. This makes ...
9
votes
14answers
921 views

How do programmers practice code reuse

I've been a bad programmer because I am doing a copy and paste. An example is that everytime i connect to a database and retrieve a recordset, I will copy the previous code and edit, copy the code ...
8
votes
6answers
189 views

How/When to write reusable methods in OOP

I often find myself in a situation where i am repeating two,three lines of code in a method multiple times and then think whether i should put that in a separate method to avoid code duplication. But ...
8
votes
2answers
292 views

How can I promote code reuse in a manner similar to mixins/method modifiers/traits in other languages?

I'm working on some code that interfaces to a database schema that models a persistent graph. Before I go into the details of my specific question, I thought it might help to provide some motivation. ...
8
votes
2answers
666 views

Is it possible to reuse GWT UIBinder panels?

I have a layout in Google Web Toolkit using UIBinder involving a TabLayoutPanel. This layout has the superset of all tabs that will be used by my app (think of it as an admin view). I now need to ...
8
votes
7answers
139 views

Same code on browser/server

I'm writing a web app using PHP, and running into several situations where I need similar code on the server and browser. For example: I want to validate user input, and generate the same error ...
8
votes
9answers
1k views

How do I create and maintain a code reuse library?

I am trying to setup a repository of reusable code. I was thinking about having each reusable code module have a certain “Maturity Level” rating. The rating would be defined as the level at which a ...
8
votes
9answers
333 views

Overcoming bad habit of “fixing it later”

When I start writing code from scratch, I have a bad habit of quickly writing everything in one function, the whole time thinking "I'll make it more modular later". Then when later comes along, I ...
8
votes
14answers
756 views

Coding Priorities: Performance, Maintainability, Reusability?

This came about mainly due to answers to SQL questions. UDF's and Sub Queries are intentionally omitted because of performance. I didn't include reliability not that it should be taken for granted, ...
8
votes
16answers
972 views

What reusable code should every developer have in their toolbox?

I'm trying to build up a library of reusable code to use from project to project. As I write code snippets and components, I'm trying to decide which libraries I will get the most use out of long term ...
8
votes
15answers
882 views

Have we given up on the idea of code reuse?

A couple of years ago the media was rife with all sorts of articles on how the idea of code reuse was a simple way to improve productivity and code quality. From the blogs and sites I check on a ...
7
votes
4answers
1k views

Library for both iOS and OS X apps?

For a while now I have been killing spare time by creating a 2D game programming toolkit/library. It is written in Objective C, and consists of an OpenGL rendering system and a whole bunch of AI, ...
7
votes
4answers
1k views

How can I write reusable Javascript?

I've started to wrap my functions inside of Objects, e.g.: var Search = { carSearch: function(color) { }, peopleSearch: function(name) { }, ... } This helps a lot with readability, but I ...
7
votes
3answers
153 views

How do I deal with multiple common user interfaces?

I'm working on a python application that runs on 2 different platforms, namely regular desktop linux and Maemo 4. We use PyGTK on both platforms but on Maemo there are a bunch of little tweaks to make ...
7
votes
4answers
616 views

How can I cut a large Rails application into smaller applications that work together?

I have worked a bit with Django and I quite like its project/applications model : you can build a Django project by assembling one or more Django applications. These applications can be autonomous, ...
6
votes
6answers
359 views

How to organise large code files?

I am increasingly aware that my code in any single file can often span hundreds of lines quite easily and although I know the implementation might be sound, it still feels messy and unorganised. I ...
6
votes
5answers
215 views

Organizing, Storing, and Keeping Track of code for reuse

Many moons ago I started storing my music as MP3’s. I downloaded like mad and just dumped them all into a folder. After collecting thousands of songs I had a big mess. After two years of organizing ...
6
votes
1answer
231 views

What is the best way to reuse classes from another Java project in Eclipse?

I have multiple Java projects in Eclipse. I would like to reuse some classes in my new project from my old project. What is the best way to do that in Eclipse? I.e. is it possible to add another ...
6
votes
6answers
196 views

Visual Studio: What approach do you use to 'template' plumbing for similiar projects?

When building ASP.NET projects there is a certain amount of boilerplate, or plumbing that needs to be done, which is often identical across projects. This is especially the case with MVC and ALT.NET ...
6
votes
2answers
152 views

General frameworks for preparing training data?

As a student of computational linguistics, I frequently do machine learning experiments where I have to prepare training data from all kinds of different resources like raw or annotated text corpora ...
6
votes
8answers
457 views

Very simple map implemention in C (for caching purpose)?

I have a program that read urls in a file and does a gethostbyname() on each URL host. This call is quite consuming. I want to cache them. Is there a very simple map-base code snippet in C out there ...
6
votes
5answers
1k views

Reusable library to get human readable version of file size?

There are various snippets on the web that would give you a function to return human readable size from bytes size: >>> human_readable(2048) '2 bytes' >>> But is there a Python ...
6
votes
12answers
874 views

Code reuse and refactoring

What's best practice for reuse of code versus copy/paste? The problem with reuse can be that changing the reused code will affect many other pieces of functionality. This is good & bad : good if ...
6
votes
13answers
489 views

Don't you think that 99% of problems you are trying to solve every day are already solved many times? [closed]

What do you do when you have troubles with some algorithm, language, framework? You go to google or stackoverflow. And guess what? There is almost 100% chance that you will eventually find (sometimes ...
6
votes
5answers
306 views

How do I index and make available reusable code?

I have many small files containing code fragments, pseudo-code algorithms, classes, templates, SQL-samples, etc., and I obviously cannot put all these into libraries. I need a practical method to ...
5
votes
1answer
156 views

Use Ada code in Android

Is there any possibility to use old Ada code in Android? I have an old script written in Ada and it would be great if I could just use that code in Android directly (via NDK or JNI etc). Is this ...
5
votes
4answers
207 views

How to use interfaces in exception handling

I'm working on the exception handling layer for my application. I have read few articles on interfaces and generics. I have used inheritance before quite a lot and I'm comfortable with in that area. ...
5
votes
4answers
276 views

Best ways to reuse Java methods

I'm learning Java and OOP, and have been doing the problems at Project Euler for practice (awesome site btw). I find myself doing many of the same things over and over, like: checking if an ...
5
votes
1answer
282 views

Can ASP.NET MVC Views be re-used across different projects?

This is a follow-up question to this question. It's a nice solution to sharing common Views across many projects using source control. However I have a couple of questions, specific to Subversion I ...
5
votes
3answers
241 views

Merge catch blocks with exactly the same code?

I want to merge the catch blocks in the following code for code reuse reasons: try { DoSomeInputOutput(); } catch (InvalidOperationException ex) { HandleKnownException1(ex); } catch ...
5
votes
7answers
196 views

How do you ensure code is reused correctly?

Frequently when we introduce a new feature into an application we may produce artifacts, such as useful methods or classes that could be reused in other areas of our applications. These artifacts are ...
5
votes
10answers
639 views

How to reuse code in SQL stored procedures?

We use SQL Server 2005. All our data access is done through stored procedures. Our selection stored procedures always return multiple result sets. For instance: CREATE PROCEDURE ...
5
votes
4answers
771 views

Does ColdFusion have an answer to ASP.NET's Master Pages?

I'm working on a website that was coded in ColdFusion. I have a CSS/HTML template I would like to apply to the content of every page, without duplicating any more code than necessary. I've gotten kind ...
4
votes
1answer
210 views

Xcode & iPhone - Best way for reusing code within multiple projects?

What is the best way to reuse code within projects? Let's say I implemented a UI Element and I want it to be used in both my iphone and ipad application without having to copy the code over and have ...
4
votes
2answers
336 views

How do you make a re-usable component with Flask-SQLAlchemy?

Lets say I have a part of my Flask app that I want to pull out and use in multiple different projects. It has SQLAlchemy models using Flask-SQLAlchemy, as well as views and templates. I can get the ...
4
votes
6answers
234 views

Any better options than porting from C# to Java?

I have an existing library written in C# which wraps a much lower-level TCP/IP API and exposes messages coming down the wire from a server (proprietary binary protocol) as .NET events. I also provide ...
4
votes
9answers
229 views

How to avoid code duplication

I have three C# methods that largely do identical things. There is much code repetition but at the end, they both perform different functions. This is obviously very inefficient, so what's the best ...
4
votes
8answers
226 views

How to simplify/reuse this exception handling code

I tend to write code like the following a lot: BufferedWriter w = null; // Or any other object that throws exceptions and needs to be closed try { w = new BufferedWriter(new FileWriter(file)); ...
4
votes
1answer
222 views

What is a good strategy for seprating layers for an appication that can be used online and offline?

I have a Java web application that has a 'disconnected' Java Swing desktop app. Using the desktop app users connect to the internet and download data they need from a server. They can disconnect and ...
4
votes
2answers
145 views

How to make these 2 blocks of almost identical code reusable?

I need advice on what I need to do to make the following two blocks of code reusable. I have to produce another table of funds and while I'm doing that, I'd like to create FundsTable.ascx partial view ...

1 2 3 4 5 6