reusability Questions

4

Solved

This code: Then %{I should see the following data in the "Feeds" data grid: | Name | | #{name} |} And this one: Then "I should see the following data in the \"Feeds\" data grid: | Name | | #{...
Polygyny asked 27/10, 2010 at 12:33

2

Solved

I have a queue of jobs and I want to make a pool of four threads where I can throw my jobs at. What I am stuck at is in how to make the threads and keep them suspended while there is no work. JOB...
Biggs asked 5/8, 2011 at 9:53

1

Solved

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 virt...

1

Solved

Apple's iOS TableView and cell reuse is killing me. I searched and searched and studied, but can't find good docs or good answers. The problem is that when the TableView reuses cells things like C...
Claudie asked 11/6, 2011 at 10:1

3

I am somewhat of a Django beginner and have been trying to decouple my applications as much as possible and build it in as small re-usable pieces as possible. Trying to follow James Bennett's strat...
Irredeemable asked 11/5, 2011 at 3:34

1

Solved

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 ...
Apology asked 13/4, 2011 at 2:18

2

Solved

Have JSF 1.2 two pages(one.xhtml and other.xhtml), that are included to the current page by following rule: ... <c:if test="#{flowScope.Bean.param1}"> <ui:include src="one.xhtml"/> ...
Marchant asked 13/3, 2011 at 17:43

1

Solved

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
Zumstein asked 6/3, 2011 at 14:57

1

I'm using an instance of NSURLConnection on the iPhone to request data from a server, managed by a delegate as usual. The requests are quite frequent (maybe once every 2 minutes say) and have a com...
Misbeliever asked 4/3, 2011 at 0:42

1

Solved

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 p...

1

Solved

When using UITableView, we can reuse its cells using [[ UITableViewCell alloc] initWithStyle: reuseIdentifier:] and [uiTableViewInstance dequeueReusableCellWithIdentifier:] methods. This helps keep...
Nabokov asked 6/2, 2011 at 16:10

3

Solved

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 featu...
Primine asked 9/11, 2010 at 11:29

2

Solved

I can't find a good example of how to create a reusable named pipe listener that runs asynchronously. I can make a reusable listener: NamedPipeServerStream pipeServer = new NamedPipeServerStream("...
Tergiversate asked 27/9, 2010 at 17:27

3

Solved

I have a class representing a set of values that will be used as a key in maps. This class is immutable and I want to make it a singleton for every distinct set of values, using the static factory...
Mines asked 24/8, 2010 at 14:37

3

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...
Fredfreda asked 26/1, 2010 at 15:11

3

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 arra...
Christenson asked 15/6, 2010 at 14:59

5

Solved

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 h...
Lashelllasher asked 19/4, 2010 at 17:18

6

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 attribut...
Stanwin asked 24/2, 2010 at 15:30

4

Solved

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 intere...
Define asked 30/1, 2010 at 13:11

1

Solved

ViewHolder pattern improves ListView scrolling framerate, as seen in following example: https://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/List14.html Is it...
Acetophenetidin asked 17/1, 2010 at 16:2

3

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 cs...
Ligialignaloes asked 16/10, 2009 at 4:56

1

Solved

Is there a way to reuse the simple expand [+] and collapse [-] buttons that appear next to nodes in a WPF TreeView? I would like to have a similar graphic elsewhere in my application for expanding ...
Virge asked 30/9, 2009 at 15:51

10

Solved

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 some...
Avictor asked 3/9, 2009 at 15:3

9

Solved

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...
Bowing asked 19/8, 2009 at 19:27

2

Solved

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) --|-- utils (pom...
Spectrograph asked 2/9, 2009 at 8:54

© 2022 - 2024 — McMap. All rights reserved.