Questions tagged [extensible]
54 questions
15
votes
3 answers
Extensible Haskell Type Classes
I am reading a paper on dependently-typed programming and came across the following quote:
"[...] in contrast to Haskell's type classes, the data type [...] is closed", in the sense that one cannot add new types to the universe without extending the…

AnaK
- 685
- 5
- 10
7
votes
1 answer
Can I extend Androids Contacts database?
I was wondering is it possible to extend the Android Contacts database?
From here - http://d.android.com/reference/android/provider/ContactsContract.html
It says:
ContactsContract defines an extensible
database of contact-related
…

Donal Rafferty
- 19,707
- 39
- 114
- 191
5
votes
2 answers
Any XML/XSD Tutorials For The Novice?
Does anyone know of any tutorials about XSD/XML for the novice, that explains things simply but goes into great detail on how to do things?

MatiasRaudzus
- 67
- 2
5
votes
3 answers
Best practices for implementing an addin/addon/plugin strategy
My application should be extensible. For my own needs I have implement some services. These services are based on the IoC/DI princple. So the services encapsulate the concept of the application.
For exsample, there are an IApplicationService. The…

Carnation
- 257
- 3
- 10
5
votes
2 answers
Scalable VS Extensible
I'm not sure if this type of question is allowed here, but it is related to software projects.
Is there a difference between scalable and extensible?
Is extensible a sub-set of scalable? I.e. Scalable (extensible)
Some regard it as the same, others…

John Vasiliou
- 977
- 7
- 27
- 48
4
votes
3 answers
MEF + Plug-In not updating
I asked this on the MEF Codeplex forum already, but I haven't gotten a response yet, so I figured I'd try StackOverflow. Here's the original post if anyone's interested (this is just a copy from it):
MEF Codeplex
"Let me first say that I'm…

user64718
- 827
- 3
- 9
- 22
3
votes
0 answers
Is there an extensible open address hash table?
I'm implementing a key-value store in memory used as a real-time service. It needs to be fast and low latency. Because the number of elements is not known in advance, the table should grow gradually. I prefer open-address hash tables since they are…

user3547691
- 227
- 2
- 9
3
votes
7 answers
What are the extensible languages people are using today?
Wikipedia says:
Extensible programming is a term used in computer science to describe a style of computer programming that focuses on mechanisms to extend the programming language, compiler and runtime environment.
For example, Tcl lets you write…

Geo
- 93,257
- 117
- 344
- 520
3
votes
3 answers
Java; Runtime Interpretation; Strategies To Add Plugins
I'm beginning to start on my first large project. It will be a program very similar to Rosetta Stone. It will be a program, used for learning a foreign language, written in Java using Swing. In my program I plan on the user being able to select…

Joseph Pond
- 75
- 1
- 8
3
votes
2 answers
Extensible domain model with NHibernate
I'm currently designing solution where the domain model & the repository can be extended by application plugins. Now, i have come across a few issues that i am listing below.
My first issue is making domain model extensible. I was thinking about…
Sergey
2
votes
1 answer
Haskell extensible effects: effect in another effect
I'm trying to use extensible-skeleton package.
Stacking an effect in another effect results compile error.
I tried some other language extensions and type annotations but could not remove these errors.
How to resolve these errors?
{-# LANGUAGE…

gtgteq
- 25
- 4
2
votes
1 answer
C# - Extensible method for adding variable types to a dictionary management class
I am currently working on a system for storing and retrieving data from a master dictionary class. Imagine something like this:
public class Manager {
Dictionary _categories;
public T GetValue(string category, string…

Kyle
- 45
- 1
- 5
2
votes
0 answers
Extendible Hashing Repointing Pointers After Directory Doubling
I need to understand the rules of re-pointing the pointers once the directory has doubled. Each bucket will have two times its current pointers, but my question is how to determine which of the directory entries to point to each of the buckets? …

Daniel Valland
- 1,057
- 4
- 21
- 45
2
votes
0 answers
Adding views and controllers from external dll ASP.NET MVC 5
I'm working on a project where I need to create an extensible ASP.NET MVC Web App which can load 'modules' (views and controllers) from external dll files. I have heard MEF could work but I am stuck on how to implement this. Does anyone know how it…

AdamTups
- 61
- 6
2
votes
1 answer
How do I change a color of an event in extensible calendar?
By digging through some example code I figured out that an event has a number of properties such as id, title, start, end :
"evts" : [{
"id" : 1001,
"cid" : 1,
"title" : "TRACPaket1",
"start" : makeDate(-20,…

Oliver Watkins
- 12,575
- 33
- 119
- 225