2
votes
4answers
55 views
How do I apply the DRY principle to iterators in C++? (iterator, const_iterator, reverse_iterator, const_reverse_iterator)
OK, so I have two (completely unrelated, different project) classes using iterators now. One has iterator and reverse_iterator working as intended, and the other, current one has i …
0
votes
3answers
62 views
Common Libraries at a Company
I've noticed in pretty much every company I've worked that they have a common library that is generally shared across a number of projects. More often than not this has been a sin …
0
votes
8answers
101 views
Do good tests enable sloppy coding?
Let's say you're coding, and you come across an opportunity for simple code resuse (e.g. pulling a common piece of code out to an accessible place like a Utility class or base clas …
1
vote
3answers
56 views
Html reuse without code
I am creating some static html pages outside a .net and outside a ruby-on-rails environment.
I created a menu I want to share between several pages, but I'm wondering how this is …
0
votes
3answers
127 views
Java: Finding matches between Strings
Given 2 strings, I want to find the first match of at least four characters.
This is the code I currently have to do it. It works correctly, but I'm thinking there may be a better …
7
votes
10answers
560 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 t …
4
votes
3answers
122 views
Malicious Code Examples/Snippets
What is the best way to prevent introduction of malicious code when using snippets, skins, etc.?
Obviously this is less of a problem with sites like StackOverflow; however, how of …
5
votes
7answers
100 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. …
4
votes
7answers
145 views
In-House Propriety vs. Open Source
Is there a reason not to use wordpress and develop your own blogging system?
Same goes with Durpal and our own CMS.
I am wondering since my marketing women disagrees with me tha …
12
votes
11answers
336 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 ag …
6
votes
7answers
211 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 sn …
1
vote
3answers
183 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 …
2
votes
2answers
60 views
Best Place to Put SelectListItem Generators in ASP.NET MVC Application
In my first venture into ASP.NET MVC, I am coming across a few situations where I have dropdown lists that are limited in their purpose to a single view. A good example is that I …
1
vote
5answers
186 views
What is the best way to reuse code in PHP?
Code:
if ( $_GET['tab'] == 'newest' ) {
// Go through each question
foreach( array_reverse( $end_array, true ) as $tags_and_Qid['question_id'] => $titles_and_Qid[' …
8
votes
16answers
587 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 …
