Tagged Questions
The reuse tag has no wiki summary.
34
votes
19answers
1k views
What considerations should be made before reinventing the wheel? [closed]
All too often I see other people reinventing the wheel, and when I do, I wonder what factors played into their decision to do so.
There are times I reinvent the wheel consciously, merely because I ...
11
votes
2answers
260 views
Why are template mixins in C++ not more of a mainstay?
I use template mixins in C++ a lot, but I'm wondering why the technique isn't used more. It seems like the ultimate in reuse. This mix of power and efficiency is one of the reasons I really love C++ ...
10
votes
3answers
2k views
WCF Service Reference generates its own contract interface, won't reuse mine!
my first question so hope it is suitable -
Shared interface assembly - I have a 'shared' assembly which has an interface, let's call it IDocRepository. It's marked with [ServiceContract] and there ...
9
votes
5answers
4k views
Multiple WCF services referencing the same data contracts
I am building a set of WCF services that share common data contracts (or entities if you prefer). These are simple data transfer objects that are decorated with DataContract and DataMember attributes. ...
8
votes
1answer
795 views
How to reuse/recycle custom custom element like uitableviewcell does?
When using UITableView, we can reuse its cells using [[ UITableViewCell alloc] initWithStyle: reuseIdentifier:] and [uiTableViewInstance dequeueReusableCellWithIdentifier:] methods. This helps keep ...
8
votes
3answers
285 views
Why does reusing arrays increase performance so significantly in c#?
In my code, I perform a large number of tasks, each requiring a large array of memory to temporarily store data. I have about 500 tasks. At the beginning of each task, I allocate memory for
an array : ...
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 ...
7
votes
1answer
2k views
Reusing SSL Sessions in Android with HttpClient
I'm having a lot of difficulty resuming an SSL session on Android using HttpClient.
I'm polling a server every 90 seconds (it's for industrial devices with one function only), so I need to resume the ...
7
votes
1answer
115 views
Reusing lists in patterns
When I write:
sort [x] = [x]
Is the compiler smart enough to reuse the same list, or do I have to be explicit about it?
sort xs@[_] = xs
7
votes
4answers
818 views
Reuse MVC arhitecture; Have two layers of UI : ASP.NET MVC and .NET Winforms
Although my question might seem abstract I hope it's not. Suppose I develop an application, an ASP.NET MVC site and later I am tasked to build an Winforms client for this application how much and how ...
6
votes
10answers
550 views
Do you buy the reuse story for the presentation layer in MVP and its variations?
Besides the unit testing benefits, what I heard regarding MVP pattern was that the reusability of the presentation layer. So, you would design one presentation layer and use it for WinForms (rich) ...
5
votes
2answers
61 views
Defining webapp styles in central maven project
Is there a possibility to place a web-app style (CSS files and images) in a reusable maven project? To use this "style-projects" with other WAR projects.
Best regards
Stefan
5
votes
6answers
271 views
How to reuse and override inherited javascript function
I have a class for mouse events. I'm using dojo b/c I like its OO approach
dojo.declare("MouseObject", null, {
constructor: function(){},
onclick : function(){...},
_onClick : function(){...}
...
5
votes
2answers
1k views
One xib File with Multiple “File's Owner”s
I've got three different UITableViews, each in it's own view, accessed via tabs. All three tables would ideally share the same custom UITableViewCell class and .xib file.
I started with one table, ...
5
votes
2answers
289 views
MVVM - Share/Reuse ViewModels between Silverlight and WPF
Is it possible to share viewmodels across platforms - WPF/Silverlight? I started down the path of putting my VMs in a separate assembly and soon came to ICommand - which then led me to ask this ...
5
votes
4answers
218 views
Factors that improve code reusability
Which principles, code qualities, practices, aproaches, language or framework features help you to reuse effectively functions, classes etc in wider range of cases. All of the situations are ...
5
votes
1answer
7k views
Android: ViewHolder pattern and different types of rows?
ViewHolder pattern improves ListView scrolling framerate, as seen in following example:
http://developer.android.com/intl/de/resources/samples/ApiDemos/src/com/example/android/apis/view/List14.html
...
5
votes
3answers
2k views
Can we include common css class in another css class?
I am a CSS newbie. I am just wondering, is that possible to include one common class into another class?
for example,
.center {align: center};
.content { include .center here};
I came across css ...
5
votes
10answers
504 views
Good strategies for developing throwaway code?
I frequently write throwaway code (in a research environment) - for example to explore an algorithm or a model for a scientific property or process. Many of these "experiments" are one-off but ...
5
votes
2answers
518 views
Reusing The .NET Application Icon
How can I reuse the application icon from within my application so I don't have to embedded it twice (once for the application icon and once for internal usage)?
4
votes
1answer
227 views
How to reuse Areas, Controllers, Views, Models, Routes in multiple apps or websites
I have a test solution which only has one area called Admin.
I would like to reuse Admin across a number of other web applications.
I have a web application setup in IIS, I have then added a virtual ...
4
votes
4answers
1k views
How to reuse Cucumber step definition with a table for the last parameter?
This code:
Then %{I should see the following data in the "Feeds" data grid:
| Name |
| ...
4
votes
3answers
169 views
Are RESTful Web services right way for re-using infrastructure?
There is one controversy I see in using Web APIs (RESTful service) to access remote infrastracture. I would be grateful, if you could comment it. The recommendation coming from the article "RESTful ...
4
votes
2answers
1k views
Maven reuse in poms
In our Maven project, we are trying the following directory structure (with about 80 projects total, only a few are shown so that you get the idea):
myappli (pom)
-- module1 (pom)
--|-- ...
4
votes
4answers
498 views
How do you organise your code library?
I am interested to know how people organise their code libraries, particularly with respect to reusable components. I am talking in OO terms below but I am interested in how your organise libraries ...
3
votes
7answers
55 views
jQuery - is there a way to re-use parameters to cut down on code duplication?
Let's say I have some code like this:
jQuery('#retouching-image-1').beforeAfter({
animateIntro: true,
introDelay: 500
});
jQuery('#retouching-image-2').beforeAfter({
animateIntro: true,
...
3
votes
1answer
885 views
Can an ASP.NET MVC3 Controller (and View?) be redistributed as a class library dll?
is it possible to add a single Controller and possibly a view or two, in a class library ... which could then be redistributed (ie. via NuGet) and reused in various applications?
I'm thinking of ...
3
votes
3answers
39 views
How do I efficiently make use of the result of a function call in a MySQL query multiple times without calling the function multiple times?
I have an SQL query like:
SELECT blah
FROM table
WHERE field1 % functCall(otherField1, otherField2) = 0
OR field2 % functCall(otherField1, otherField2) = 0
OR field3 % ...
3
votes
2answers
256 views
Android App - Can we Reuse Images in the Run time?
We have an Android application that throws out of memory error on Android 1.6. It is working fine on 2.0 onwards. We are trying to cut down on the runtime memory usage at this point.
We were ...
3
votes
7answers
277 views
Avoid reinventing the wheel, mental process you use to force yourself not to rewrite existing code
Need help here,
I'm a coder who usually feels a tremendous strong desire to reinvent the wheel. Once it was so strong that I was nearly trying to reinvent a library simialr to jQuery [Note] and this ...
3
votes
1answer
438 views
How to re-use ASP.NET .aspx or .ascx files?
I know if someone wants to re-use some classes (not UI), he must gather all of them and put in a Visual Studio Class Library, build it to some dells and distribute these dlls. In this approach there ...
3
votes
2answers
108 views
Reuse vs. maintainability and ease of testing
Everyone likes to talk about reusability. Where I work, whenever some new idea is being tossed around or tested out, the question of reusability always comes up. "We want to maximize our investment in ...
3
votes
5answers
472 views
Reuse a Variable Multiple Times on an ASP.NET Page
I feel somewhat foolish asking such a simple question, but I can't seem to find an answer. I'm new to ASP.NET (C#), but I'm learning by building a simple set of web pages that display a report. I have ...
3
votes
3answers
602 views
Any way to reuse Bindings in WPF?
I'm getting to the point in a WPF application where all of the bindings on my controls are getting quite repetitive and also a little too verbose. Also if I want to change this binding I would have to ...
3
votes
2answers
907 views
iPhone: Is there a way to loadFromNib AND have a reuseIdentifier?
I am thinking about this problem now for very long.
I try to use different types of cells in my table, that each have their own cell controller and have a reuseIdentifier AND load from NIB.
The ...
3
votes
7answers
766 views
C++ : Code reuse, classes and libraries
Although I consider myself an experienced programmer (lead programmer of 2 commercially released games), I feel lost now that I have started using C++ for my next project.
Right now I want to create ...
3
votes
1answer
3k views
Reusing a JPanel in NetBeans GUI Designer
This is in NetBeans 6.5, Java 6.
I have the following hierarchy in the NetBeans GUI Designer:
JFrame
JTabbedPane
JPanel X
<...>
JPanel
JButton
JPanel Y
...
3
votes
1answer
1k views
UITableViewCell Reuse Identifier with Variable Height Cells
I have five different cells in a table across five sections differing just in height, and text. Will I need to have one reuse identifier or five ? I am using a custom cell.
The Apple document talks ...
2
votes
4answers
92 views
How do I reuse parts of a webpage (using div)?
I have several HTML pages that share a menu area. Every time I update the menu area (eg with new "breaking news") I need to update all 10 pages manually.
With frames, they all point to same frame ...
2
votes
3answers
222 views
Why can a string be assigned to a char* pointer, but not to a char[] array?
Can someone explain why this works with the pointer:
char * str1;
str1 = "Hello1";
str1 = "new string";
// but not this
char str2 [] = "hello";
str2 = "four";
// or this
char str3 [];
str3 = ...
2
votes
3answers
78 views
Use a userscript as a regular javascript?
If I have a userscript that I've found online, and I'd like to incorporate it into a website as a normal javascript (i.e. not userscript), how can I do that?
This seems like it would be something ...
2
votes
2answers
89 views
writing a jquery function to reuse a formula
I have a function that does some stuff and one thing it does is calculates height/width and applies css top/left for centering. Instead of rewriting the formula more than once, I want to be able to ...
2
votes
2answers
164 views
Reusing NSObjects by Overriding release in Obj-C
I am implementing an object reuse scheme using a singleton class.
What I do basically is:
MyClass* obj = [[MyClassBank sharedBank] getReusableItem];
The bank is just an NSMutableSet tweaked for ...
2
votes
2answers
263 views
Reusing MYSQL queries on the same page
I have a header.php and a footer.php file being included on the same page, they both return some of the same information. Specifically I use this query in each file.
<?php
$q3 = "SELECT ...
2
votes
1answer
217 views
XAML-inheritance, code re-use, optimization
In my WPF4 desktop application all windows have the same structure — header & footer with some main menu and copyright marks; left-side navigation menu and body (center of screen) where I show ...
2
votes
2answers
394 views
Reusable UI in ASP.NET MVC
My company is standardizing on 3 different development models for our client code (we use web services for the business layer code):
ASP.NET MVC
SharePoint 2010
WPF
Our goal is to be able to make ...
2
votes
3answers
929 views
what is benefit from socket reuse in C#
I am developing open source socket server library: https://sourceforge.net/projects/socketservers/
And I would to like to add socket reuse feature to this lib. I have implement draft of this feature, ...
2
votes
2answers
204 views
How to store CALayers for reuse?
I have a bunch of identical CALayers that I want to reuse. Often, a few of them should disappear, and then get reused in another position within the same superlayer (half a second or so later).
What ...
2
votes
1answer
305 views
How can I reuse code AND resources in several applications?
How can I reuse code AND resources in several applications? I have a fairly large code base (including resources) that I want to reuse i several applications. How can I do that?
I did try to use the ...
2
votes
2answers
88 views
Reusing expensive UserControls
So we have this legacy code that displays data in a tree format. They pad each node of the tree using spacer images (...yup..ugh)
Unfortunately, the use of these images is controlled by an in-house ...