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

learn more… | top users | synonyms (1)

-1
votes
2answers
49 views

how to structure Java code for reuse? [closed]

I am looking for something like a compiler directive in C or C++ or something like it for Java. Why you ask? I have a body of Java code, it used to be for one project. Then a second project, code was ...
0
votes
1answer
23 views

Reusable user interface in PHP?

For most of my projects I make an administration interface, which has the same design for every project. The design of the header, the footer, the topbar, the leftmenu, the css, etc. are always the ...
0
votes
1answer
14 views

How do I adapt Django ForeignKey to a reusable app?

I have written a carousel plugin for Django-CMS which displays screenshots. The underlying model has some carousel-related parameters (height, animation style etc), and a ForeignKey to ...
0
votes
0answers
16 views

professional advice required for java module programming

When I write a program, I usually think a lot. Like, if this page will be used extensively or not. If I think the page will used by many times, then I try to do the coding from the scratch such that ...
1
vote
2answers
71 views

How to reuse the same piece of C code with different typedef within the same program?

I have a dynamic array ADT whose element type is void* // In dyn_array.h typedef void* element; void append(array *a, element e); inline void set(array *a, int i, element e); ... // dyn_array.c ...
0
votes
1answer
19 views

c# asp.net Centralized UI Development

We have a lot of websites with common functionality developed by 3 persons, in the business logic we use a common library project (in a shared directory) so we all use the same functions. This way the ...
4
votes
3answers
150 views

DLL written in C vs the same written in C++

I was having a discussion with a colleague today. He claimed that writing a DLL in C would allow for any other application, written in whatever language, to use that DLL. BUT, if that DLL is written ...
0
votes
1answer
83 views

Sharing classes between Xamarin.Android and ASP.Net MVC 4

I have created a solution with 3 projects in Xamarin Studio: A ASP.Net Server with POCOs, a Shared Library Core and an Android Project but referencing the shared library project on the Android side ...
1
vote
1answer
38 views

Re-Using complete Parent MVC project code but with different style

The Scenario : I have my main base MVC project, with the model + view + controller that I want to re-use in my children MVC projects. But the children MVC projects's CSS styles are all different, and ...
1
vote
2answers
29 views

Warning: adding a reference to a device project may produce unexpected results

I have a class library that targets Windows Mobile CF, and I want to use the same dll on some Desktop/Web application. When adding a reference to the project I get the following error. adding a ...
1
vote
2answers
102 views

reuse header ui design and functionality in all activities

I am working on application which have same header in all activites,in which there are some views in image views, buttons, textviews etc. Now the The question is i want to use these header views in ...
0
votes
1answer
42 views

Android: Implementing a reusable HTTP Async Method

I've been searching but I do not find any implementation of a method that allows to make an HTTP post request receiving both the URL and the data as parameters of the function. I mean, all the ...
0
votes
1answer
76 views

Function Reuse in Verilog

I have a function f(), defined in a verilog module, M1. I would like to reuse this same function in a different module, M2, is there anyway of doing this without redefining the function in M2? --- ...
0
votes
1answer
69 views

C# code re-use public class Foo<T> method parameters

I was hoping someone could help me with a problem. I am attempting to make a new class of Type: public class Foo<T> whose only method's job is to iterate through another classes' properties. ...
3
votes
1answer
48 views

Doubts on concurrency with objects that can be used multiple times like formatters

Maybe a stupid question to ask but I need some confirmations on it. Usually, when I deal with objects that can be used multiple times within my application I use an approach like the following. ...
0
votes
0answers
29 views

Include same layout with own methods in different layouts

I have a Sliding menu which I want to be invoked from anywhere in the app by sliding from left. It looks like this. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
2answers
66 views

Most efficient was to reuse classes across iOS Projects

I have created a number of re-usable classes that I use across xcode projects, for example: Utility EmailController MarketingController FlashLightController etc I had been simply copying these class ...
0
votes
0answers
60 views

How to access APIs of a module from another module (Backbone Marionette)

this is my first attempt at using marionette and I have design the application infrastructure of my app as seen below. Essentially, the idea was to have a 'Answers' module that can be reused in ...
2
votes
3answers
78 views

How to use a method in other classes?

I have a method that I want to use in almost all the classes within a same c# project. public void Log(String line) { var file = System.IO.Path.GetPathRoot(Environment.SystemDirectory)+ ...
0
votes
1answer
129 views

Network Interface does not contain a definition for “”

I recently created this code for a WPF application that I was doing. The project where I'm reusing the code is a Windows 8 application. The code itself is the same so I don't really see what could be ...
1
vote
2answers
91 views

Avoiding re-writing logic twice for server side and client side

I am writing a piece of software that will allow user to select different options for a product. Prices will vary depending on what options are selected. The server is using a LAMP stack. The client ...
5
votes
1answer
169 views

How to add events to javascript runtime created html widgets

I'm developing a web community in CakePHP and started to have doubts about using jQuery to provide useful widgets around the views when needed. For example, I've wrote a jQuery plugin which searches ...
2
votes
1answer
192 views

Re-using MVC4 components in WebAPI

I have a sizable investment in an MVC4 site that has a large array of custom model binders, value providers etc. I now want to add some WebAPI controllers to the site and re-use some of the MVC4 ...
-1
votes
3answers
68 views

Using the same activity but changing the contents that are displayed

I am developing an application in which when an activity loads it shows a textfile(.txt) in a scrollview. Just Below the text file I have two buttons(playAnimation and playAudio) which when pressed ...
3
votes
1answer
141 views

A way to reuse JavaScript code inside my MVC framework [closed]

I'm developing a web community in CakePHP and started to have doubts about using jQuery to provide useful widgets around the views when needed. For example, I've wrote a jQuery plugin which searches ...
0
votes
1answer
113 views

How can I improve my code reuse by utilising delegates?

I am writing a class which utilizes a USING statement to connect to the task scheduler on a server and "does things"; like enable/disable a task, start and stop etc. I want to improve code reuse, ...
0
votes
3answers
143 views

How to achieve code reuse with nested enums

I'm trying to build a class such that its subclasses will have a C++11 enum class attribute, with an associated setter/getter: class Base { public: enum class MyEnum { A, B ...
0
votes
0answers
51 views

Code reusability in frontend project [closed]

Are there any client frameworks that deal with code reusability in a modular way, structuring the codebase by components instead of the classic folder structure where all the controllers, models, ...
1
vote
2answers
204 views

Port existing c code to iOS/iPhone

I have the source code for a video decoder which is written in C. The code has successfully compiled and and executed under linux OS. Later i also ported this decoder in an android application with ...
0
votes
4answers
120 views

Reuse a Java Package across different Projects

I'm a Java developer using Eclipse and Maven. There are some modules I created in a project that I'd like to reuse in my future projects. Is there any standard way to accomplish this using Maven? I ...
2
votes
1answer
43 views

Reuse JEditorPane across application

public class EditorPane extends javax.swing.JPanel { /** * Creates new form EditorPane */ public EditorPane() { initComponents(); } private void launchHyperLink(HyperlinkEvent e) { try { ...
1
vote
0answers
172 views

Switching between two datasets in this d3.js reusable and zoomable line chart

In this example http://bl.ocks.org/4743409 I set up a zoomable line chart containing two lines. But Switching the selection options I obtain a superposition of the two datasets. How can I switch ...
2
votes
1answer
66 views

How to share a validation.Constraint across multiple Forms?

I'm using Constraints on my web forms and I've noticed that several forms have similar validations, for instance I have several types of form with a start date and an end date. In each case, I want to ...
1
vote
0answers
28 views

Is there in Ruby TestUnit a feature analogous to RSpec's shared_examples_for

I have several implementations of the same interface in Ruby. And I want to test them with the same set of test cases (just parametrize them with the implementation class or instance). How can I do ...
1
vote
5answers
112 views

Reuse the same code to do the same logic on different data members of the objcets in a list

specifically I have a list of objects of a class with multiple string object data members(NID, customerNumber, studentNumber, fName, lName). I want to reuse the following code to search for the node ...
2
votes
1answer
832 views

Updating a table in d3.js using a reusable chart

I have this reusable pattern to create a table, inspired by http://bl.ocks.org/3687826, and I have two questions about it. This is the function: d3.table = function(config) { var columns = []; var ...
0
votes
1answer
144 views

Ember namespaces creating reusable apps

Hi I am new in ember I tried to solve my self but no success. Take a look at code: // works window.App = Em.Application.create(); window.Core = Em.Namespace.create({ Beta: Em.Namespace.create() ...
0
votes
5answers
117 views

Using unknown dll in a c# project

I have got a dll from another program on my computer. According to its name it could have the functionality that I need for my own c# project. It seems to be also made with c#. Is it possible to ...
0
votes
1answer
115 views

Reuse function multiple times in jQuery Draggable

So I'm using Jquery UI Draggable and I've got various points which the user can drag about, with the top/left position of every point showed in the respective results divs beneath (this will show ...
0
votes
1answer
148 views

Binding to observable created inside custom binding

I am trying to encapsulate the creation of an observable inside a custom binding, much like isValid of knockoutjs-validation, but without extending the binding because this property in the future will ...
0
votes
0answers
64 views

How to create a custom template in a metro app with xaml?

I'm developing a metro app and I'm a little confused about building custom templates. The app will have some pages and every page will have the same base structure; a grid of three rows: a top-bar, ...
0
votes
2answers
74 views

Search the available Java classes on Internet? [closed]

These days lot of Java code is available on internet and probably whatever class you want to write, someone has already written it in some project. In a simple e.g if I want to create an Address bean ...
0
votes
1answer
116 views

Building a javascript app shared across node.js and client side

I am used to cross platform dev. On the C/C++ side it's simple, but I'm stuck with a problem when using javascript. I want to be able to reuse code from my web-service on the client-side. Currently ...
0
votes
1answer
56 views

Decorate re-using another decorator's implementation

I've implemented a memoize decorator, which allows to cache a function. The cache key includes the function arguments. Similarly the cached decorator caches a function, but ignores the arguments. Here ...
1
vote
1answer
201 views

How can I reuse a UIView and methods - DRY code in iOS

I have 2 methods that add the Previous, Next & Done toolbar above the iOS Keyboard and handle these actions. I'm looking for a way to code these methods once and reuse it across multiple ...
0
votes
2answers
187 views

Code reuse in different rspec contexts

I am trying to reuse some common code in a rails controller spec. I have different contexts for admin users and regular users. However, much of the behavior is the same for particular actions, so I ...
0
votes
1answer
138 views

Integrate C library with Java, Ruby, Node, Python, Go, .NET [closed]

Status Quo For a project of mine I need a client library that communicates with my API for every major programming platform. Currently I implemented just one (Java) and was thinking 'I don't want to ...
5
votes
2answers
104 views

Reusing RSpec behavior validation

In my Rails 3 application, I have a RSpec spec that checks behavior of a given field (role in the User model) to guarantee that the value is within a list of valid values. Now I am going to have the ...
0
votes
1answer
85 views

Avoid scope hitting database if association already loaded

I have 2 models like so: class Country < ActiveRecord::Base has_many :cities end class City < ActiveRecord::Base belongs_to :country scope :big, where("population > 1000000") end ...
2
votes
1answer
101 views

Code reuse for 'all objects of a type are equal' pattern

I have a number of classes that all override their equals and hashCode methods to look like this: final class MyClass { public void statelessMethod() { // ... } @Override public boolean ...

1 2 3 4 5 9