Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
1k views

How to re-use a reusable app in Django

Hello Django experts I am trying to create my first site in Django and as I'm looking for example apps out there to draw inspiration from, I constantly stumble upon a term called "reusable apps". I ...
11
votes
11answers
3k views

How do you make code reusable?

Any code can be reused in a way or an other, at least if you modify the code. Random code is not very reusable as such. When I read some books, they usually say that you should explicitly make the ...
8
votes
16answers
971 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 ...
5
votes
4answers
145 views

In PHP how do you create reusable objects?, is there a best practice to this? What do you prefer?

I am creating some reusable objects in php, and I wanted to know whats the best way to build them. Below I have 2 examples of different ways of doing this. Class Uploader{ public $Filename; ...
5
votes
1answer
1k views

Finding the selected Radiobutton's value in ASP.NET

Coding Platform: ASP.NET 4.0 WebForms with C# I have two asp:RadioButton controls which are having the same GroupName which essentially makes them mutually exclusive. Example markup ...
5
votes
4answers
121 views

In house reusable libraries - reuse as dll or as projects?

We have quite a bit of reusable code at work (a good thing). Whenever I create a new project that use them I am used to include their projects as part of my solution, and I was wondering if I should ...
4
votes
1answer
100 views

What is the recommended practice for writing procedures with re-usable code?

I want to check with some of the more experienced Oracle developers here on the best-practices for backend development. I write a lot of packages that print data in XML format and are used by HTTP ...
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 ...
3
votes
3answers
135 views

How to avoid duplicate models in django project?

i'm learning django so i've many questions, and one is how i can reuse a model? i mean the models live in the application folder, but some models are exactly the same between two differents ...
2
votes
2answers
89 views

reusable web services code for iPhone

I am very new to iPhone development ad previously was working with Java. Currently I am using SOAP web services in my project and want to continue with the same. But everytime i have to write the same ...
2
votes
2answers
45 views

Online repository for .NET reusable controls

Is there any online repository exist for .NET reusable controls? Edit I am asking this question because I have few reusable component with me, which I have developed, with source code. I don't want ...
2
votes
2answers
433 views

C# reusable function to dump current value of local variables

I would like to write a reusable function I can call within any method to log a snapshot of all the local variables. For example: void somemethod() { int a = 1; string s = ...
2
votes
1answer
38 views

Design of utilities for diffrent versions of 3rd party library

I've inherited a project where such solution is applied: There are 5 versions of 3rd party library. And there 5 projects in the solution with utilities for corresponding version of 3rd party library. ...
2
votes
1answer
748 views

Simple C/C++ library for triangle-intersection acceleration structure

I'm raytracing and would like to speed it up via some acceleration structure (kd-tree, BVH, whatever). I don't want to code it up myself. What I've tried so far: Yanking the kd-tree out of pbrt. ...
2
votes
1answer
72 views

Vimrc: how to reuse code and definitions for differnt file types?

I have defined my own file types using vim. For example I have: .classNotes .reportJotNotes .homework These file types are defined in .vim files: ~/.vim/syntax/homework.vim ...
2
votes
2answers
202 views

Set django-notification to be opt in rather than the default of opt out

I'm using django-notification to allow my users to opt out of certain alerts I generate in my web-application. By default when I create a new notice type it is enabled rather than disabled In the ...
2
votes
10answers
447 views

Reusable code / class Repositories

I've got several modules containing functions, classes and templates that I keep in a directory called (hah!) 'reuse'. I know the content reasonably well, so to find a particular class or bit of code ...
1
vote
3answers
166 views

Header Files in C and Reusability of Object Oriented Programming?

In interview I was ask that as re-usability is one of the main advantage of Object Oriented but it can also be achieved by include header files in C language? So what is the difference in OOP ...
1
vote
3answers
134 views

Best way to populate SelectList for ViewModel on GET/POST

I have the following ViewModel: public class EditViewModel { public int FooType { get; set; } public IEnumerable<SelectListItem> FooTypes { get; set; } } I originally populated it in ...
1
vote
1answer
697 views

How to create a reusable toggle button in AS3?

I'm trying to make the code below reusable. I need multiple toggle buttons in my flash project. Right now the code below works on one button. If I continue and create more buttons, and follow the ...
1
vote
4answers
190 views

a reusable query with modifications?

i'm using this mysql query alongwith php to search for multiple keywords: $query = "SELECT cQuotes, vAuthor, cArabic, vReference FROM ".$table." WHERE ("; $countFields = count($arrayFields); ...
1
vote
2answers
316 views

Reusable Content Box Data In ASP.NET MVC?

If I create a PartialView for a box that holds a header, image and content what is the best way to store the content without using a database? Example: TurboTax I doubt the content for the boxes in ...
1
vote
1answer
135 views

Reusing a Control in another Windows Forms Project

I've got lots of web experience but am a total novice when it comes to Windows Forms so this might be easy to answer: I have Project1 which I've added a reusable control to which allows filtering and ...
1
vote
1answer
109 views

Multiple representations of the same entity

Thinking about avoiding code replication, I got a question that catches me every time I start developing a new system: Let's say we have a system where I have a customer, have to CRUD it in a ...
1
vote
1answer
1k views

Recursively parsing XML in Actionscript 2

I'm looking for an efficient and reusable way to parse xml into an object in actionscript2. The xml structure itself might change so it's important that im able to parse the xml with out 'hard coding' ...
1
vote
1answer
373 views

How do you reuse html/js/server side code between asp.net projects?

We have a blog system that we sold to a number of different customers (included in many different projects). This system includes a number of different files – a few aspx pages, one or two ascx ...
1
vote
4answers
5k views

Simple / reusable CRUD in PHP (NO famework or big classes)

I'm working on a PHP CMS like project and I'm trying to find out what's the most convenient way of dealing with the CRUD functionality in PHP. The CMS is programmed completely in procedural PHP (no ...
0
votes
0answers
29 views

How to make reusable functions in jquery

How to make a reusable functions in jquery. Like i wanna make a single function for all the same types of dropdowns. i'm certainly new to jquery please guide me.. i am posting an example here... ...
0
votes
1answer
26 views

Rails reusable web component designs

Developing rails has become lots of fun over the year that I've done it, but now I came to a point where I need to build reusable website components such as a Webshop, ContentManagement, ...
0
votes
1answer
93 views

listview reusable component - architecture - android

i have a complex view which contains 4 list views arranged as per the requirement. i have been been able to implement and get it working. but this is a sole activity and data needs to supplied ...
0
votes
4answers
127 views

Simple reusable JavaScript toggle() script?

I am in the process of learning JavaScript and am not sure how to tackle a simple snippet of reusable code. What I need is a piece of code that will hide() #body01, #body02, #body03, 04,05 etc (all ...
0
votes
1answer
28 views

How should I name objects that are extending Android's base objects

I'm creating a custom TextView in Android, which extends android.widget.TextView. What is the best practice to name this object. Should I just name it as TextView or ProjTextView. If I name it just ...
0
votes
1answer
87 views

Reusable code to retrieve data

i have found an very good method for retrieving any result set from the database just by specifying the stored procedure name.i think the code is very much reusable.code is as follows using ...
0
votes
2answers
290 views

Generic ObjectContext? objectContext.GetObjectSet<TEntity>?

Is there a way to get ObjectQuery<T> for specfied generic type? Pseudo: public partial class MyObjectContext { public ObjectSet<TEntity> GetObjectSet<TEntity>() { ...
0
votes
1answer
83 views

Global, CSS independent bar that developers can include on their sites

I am developing a "bar" like what you see on the top of many default Blogger blogs that acts as a unifying element on otherwise different-looking sites. I want to package the code up into a neat ...
0
votes
4answers
208 views

PHP based image management

A reason I've picked up working with the Zend Framework was that I keep hearing how easy it is to reuse code and not have to reinvent the wheel every time you start a new project. I do find this true ...
0
votes
6answers
1k views

Creating reusable html for navigation bar on multiple pages

I thought it would be convenient to have reusable code, especially for the navigation bar because it will be the same across all of my pages. This way I won't have to go through each page and ...
0
votes
1answer
68 views

Where to download Pylons reusable apps

I've learnt some basic in Django.. and there is lots of Django reusable apps available for use. But how about Pylons? Where to download Pylons reusable apps?
0
votes
1answer
105 views

Is using a working method to implement others good programming practice?

I have been working on implementing the first 6 functions of the NSComparisonMethods protocol in Obj-C. I am implementing them for a Fraction object which has the following @interface @interface ...
0
votes
1answer
87 views

What am I doing wrong with reusable Django apps?

Almost always when I try to use a re-usable django app, I end up doing a lot of integration work and/or the end result is really messy. A common, simpler case is sending confirmation messages (with ...
0
votes
2answers
62 views

How can I make this application re-usable?

I made a .NET Windows form that allows users to view a particular document and sign it. I want to make it re-usable for future applications. The challenges are: The text to be signed requires ...
0
votes
4answers
348 views

How to write a reusable code in cakePHP?

hello friends Can any one provide me some tips to write reusable code in PHP / CakePHP thanks in advance
0
votes
1answer
417 views

How to make reusable components/classes from existing iPhone project?

I on the doorstep of a new learning curve . I want to make reusable components / classes from my completed iphone project and with the mention of the following questions , If anyone want to redirect ...
0
votes
2answers
2k views

Android Layout: Is reusable component UI possible?

I'll preface this with, I've just started learning Android so be gentle. I come from an ASP.NET / Silverlight background so I was looking for something along the lines of controls. I want to reuse a ...
0
votes
1answer
256 views

django reusable template code

So as I am architecting my project, I'm thinking I must be doing something wrong. Some pieces of template code are reusable that makes me want to extract the code out of the template, but I can't ...