The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
6 views

Creating a different type of e-tail site

I'd like to know if anybody can help me conceptualize an e-commerce online store, that works a little bit differently than your average e-tail configuration. The company I work for is a distributor ...
-1
votes
3answers
49 views

When should I be using an index in MySQL?

I would like to know when should I be using an index in MySQL. Coud you explain me some examples about an index correctly applied and an index incorrectly applied? Please don't use the primary key as ...
-4
votes
2answers
50 views

How does the working of compiler differs in both cases although in both cases, n is unknown to compiler during compile time?

Code 1: int n; int c[n]; scanf("%d",&n); Code 2: int n; scanf("%d",&n); int c[n]; The first one gives segmentation fault but second one works fine.
0
votes
0answers
8 views

formal concept analysis: lattice generation software based on necessity and possibility operators ( new galois operators )

please, is there any implémentation of lattice generation based on new glois connection N and "PI" (necessity and possibility operators) http://www.irit.fr/~Didier.Dubois/Papers0804/DDSCP_FI07.pdf ...
-1
votes
1answer
43 views

SOA - The four tenets [closed]

I'm reading about SOA and the four tenets thats required to make a SOA-application. I have tried different sources, but the explainations is twisting. Im searching for something that is a bit less ...
0
votes
1answer
45 views

why use simple_list_item_1 when calling ArrayAdapter

I understand that simple_list_item_1 is a pre written xml layout file that we use when we are creating a listview. We pass it in as one of the parameters to the constructor of ArrayAdapter<>. But ...
0
votes
1answer
13 views

What's the relationship between those two “heaps”?

There're two concepts named "heap" in computer science. One is the memory pool used in memory management, the other is an algorithm. I know they are different, but what's the relationship between ...
0
votes
1answer
104 views

Nested mixins in LESS behaviour

Would it be possible in LESS to have a mixin nested inside another one so that the former gets called only when the element is child of an element with the latter mixin? I know, confusing, here is a ...
0
votes
3answers
54 views

“Client” concept in OOP Design Patterns?

I read many topics about OOP Design Patterns of GoF, but i am not sure about "Client" concept. So what is it? How can we realize it in our application. Thank!
0
votes
0answers
31 views

An exercise about Real Time System

(a) The execution times of the jobs in the precedence graph in Figure 4P–2 are all equal to 1, and their release times are identical. Give a nonpreemptive optimal schedule that minimizes the ...
0
votes
1answer
119 views

AngularJS directive communication not having same parent

Let's imagining that I have a directive that contains some data and I want to interpolate it somewhere else in a second component (directive or else), without having a controller linking them. For ...
0
votes
0answers
58 views

Activate jquery function after “splash screen”

I am working at a school project for a site with a simple navigation. So i am using keyup functions for scrolling. Demo model is on my webpage The concept is quite simple, a screen pops up. You type ...
1
vote
1answer
37 views

The concept of software reuse

I don't quite get the concept of software reuse ... Wikipedia provided "code reuse" & "re-usability" nothing specific about SOFTWARE reuse ... Please, if you could explain the concept clearly, I'd ...
1
vote
1answer
59 views

What is a distributed cache?

I am confused about the concept of Distributed Cache. I kinda know what it is from google search. A distributed cache may span multiple servers so that it can grow in size and in transactional ...
2
votes
1answer
115 views

Generic programming with concepts clashing with copy constructor

I'm trying to use a generic coding style to wrap a restricted concept API over generic stacks. The problem I'm running into is that one of my constructors, the most important one that takes a ...
1
vote
1answer
83 views

Introduction to object databases

I'm trying to understand the idea of noSQL databases, to be more precise, the concept behind neo4j graph database. I have experience with SQL databases (MySQL, MS SQL), but the limitations of managing ...
-1
votes
1answer
28 views

Real world objects [closed]

If we treat tree as an object then what will be its leaf and branches? Similarly, if we treat dog as an object then what will be its legs,mouth and eyes?
0
votes
2answers
124 views

Understanding C's fork() through a simple example

#include <stdio.h> int num = 0; int main(int argc, char*argv[]){ int pid; pid = fork(); printf("%d", num); if(pid == 0){ /*child*/ num = 1; }else if(pid > ...
0
votes
4answers
344 views

How to create background application running on Window Server

I need to write an application that run in the background (i.e., invisible to user). It should be always running when the server is on, regardless of user login or off. Or at least it should run on ...
-1
votes
1answer
32 views

What do we need installations for?

This is a conceptual question and I hope it fits into Stackoverflow's question and answer style. I wonder what the concept of installing applications is good for. In my naive understanding of ...
0
votes
0answers
73 views

Android Data handling and XML version control concept

I’m fairly new to Android development, but have experience in other fields. I’m running in some problems with the concept of an app and hope to find some answers here. The conditions There are 4 xml ...
2
votes
3answers
79 views

Are there parsers which parse while you type?

Context: When I learned about parsers, the process of compiling code (say, C++) was explained like this: Write code in a file and save it. Put the file in a compiler. The compiler first parses the ...
1
vote
1answer
22 views

Assign return value to variable warning

In netbeans I use to call a method that returns a value, but I am directly calling it where I have to pass a parameter to the function i.e. Function(getValue()) where getValuue() returns String. So ...
4
votes
5answers
405 views

Interact with other programs using Python

I'm having the idea of writing a program using Python which shall find a lyric of a song whose name I provided. I think the whole process should boil down to couple of things below. These are what I ...
2
votes
2answers
112 views

Searching depending on the category with filters

What is the best practice to do a searching form with filters, where the filters are depending on the category? e.g.:If you go to visit the ebay and select a category then the filters are different on ...
0
votes
2answers
532 views

The concept of Inodes and block sizes

So I'm doing some exam review problems, and one of them states "In UNIX system V, the length of a block is 1 KB and each block can hold a total of 256 block addresses. Using the inode scheme, what is ...
0
votes
0answers
15 views

Conceptional hint building a Ruby on Rails App

I was reading "Ruby on Rails Tutorial" by Michael Hartl, and got along. My next step would be learning-by-doing so I start a little project. In general it is going to be a little system to keep track ...
1
vote
2answers
331 views

Handle multiple EntityManager in Java EE application

I have Java EE application with about 10 EntityManagers (number of EMs will probably increase). My application also contains many stateless, statefull and message driven beans. Rather than inject in ...
0
votes
1answer
260 views

Open source concept mining tools?

Are there to day any concept mining open source tools available? I have only be coming across like Leximancer, which although seem to fit the role is not open source and quite expensive for a ...
-1
votes
1answer
96 views

AsyncTask concept issue [closed]

Let me explain the problem first, so you can understand the situation. I'm developing a news kind of app, with widgets and so on and I load the data from a RSS feed. I have, basically, one Activity ...
0
votes
2answers
156 views

Javascript concept using history object

I am interested in making a website that flashes through a visitors entire web history when they visit. I plan on using JavaScript to grab the history on each viewer's computer and animate through it ...
1
vote
0answers
38 views

How do I make an application or website with features that lolking.net or leagueofstats.com have?

To ramp you up, I like to play video games, but this is not just limited to video games. I know when I play video games I am actually acting as a client and I am sending my actions to the server via ...
0
votes
1answer
69 views

How to compare similarity between two concept maps

I am doing a CV short listing project for a company. I have a concept map for whole company documents. And also i have extracted the data from CV and now I have a concept map for each CV. I want to ...
0
votes
0answers
69 views

Clickable grid over image - a lot of elements - how to implement in JavaScript?

I have a concept of displaying an image divided in many squares (say, up to 200x200) in the form of regular grid. Such grid could be useful for many game boards, that would react to click on given ...
2
votes
1answer
193 views

Need assistance with a Base85 (Ascii85) Encoder

Base85 ASCII Encoder/Decoder LOOK HERE FOR INTIAL REFERENCE ->> Base85 Wikipedia Page I am making a Base85 encoder/decoder for java, I don't want the answer or solution to my programming or code ...
0
votes
2answers
126 views

Mapping GPS coordinates to an area

I have devices moving across the entire country that report their GPS positions back to me. What i would like to do is to have a system that maps these coordinates to a named area. I see two ...
4
votes
1answer
100 views

What are values of function(a, b)?

I am testing module example from JavaScrit: The Good Parts. I don't know who passes in a and b in function(a, b). Somehow it works. Function.prototype.method = function(name, f) { ...
0
votes
0answers
60 views

How can one accelerate the transition from requirements analysis to specification with Enterprise Architect? [closed]

problem the company that I work for does IT consulting and develops e-commerce solutions. As it so happens, most of the web shops resemble each other in many aspects of their functionality. Plus, for ...
8
votes
4answers
391 views

The difference between a `global variable` and a `field`?

Fields are variables within a class or struct, local variables sit within a method and global variables are accessible in every scope (class and method included). This makes me think that fields ...
1
vote
1answer
146 views

Hadoop for the Wikipedia pagecount dataset

I want to build a Hadoop-Job that basically takes the wikipedia pagecount-statistic as input and creates a list like en-Articlename: en:count de:count fr:count For that I need the ...
0
votes
0answers
51 views

How to do concept based indexing in LUCENE

I am working on an information retrieval project where I need to do concept based indexing rather than full text indexing.What I mean by concept based indexing is that I want to index a document based ...
0
votes
0answers
46 views

What is the definition of 'arbitration' in operating system or in computer science? [closed]

I heard about arbitration and abstraction, I don't understand what is arbitration's meaning?
0
votes
1answer
107 views

How to use Java Dialog parameter?

this is a newbie question. I am experimenting a little with Java, and I stumbled across a method which is supposed to call an empty dialog. The method, however, has a Dialog parameter in the ...
0
votes
0answers
36 views

Methods for concept/ context/ semantics analysing [closed]

What are the methods for concept/ context/ semantics analyzing? So far, I have find semantic web (RDF/ Ontology), Concept mining (text mining, data mining), ANN (Artificial Neural Networks). Is there ...
0
votes
0answers
63 views

How to create an android homescreen that is tilted at 30degrees and is like iida home (but tilted) [closed]

First of, I am new to this and is just starting to learn android. As per the question i want to create a homescreen replacement that is kind of like iida home but is tilted at an angle uhmm abit like ...
3
votes
2answers
447 views

Which one is fast, Abstract class or Interface? [duplicate]

Possible Duplicate: Why are interface method invocations slower than concrete invocations? I recently had a chance to appear in an interview in which interviewer asked which one is faster ...
3
votes
3answers
81 views

What is the difference between these two jQuery usage

Im a jquery starter so if its a wrong one forgive me :) I just want to know why placing the content at different positions made this script working, although to my best i think script to kept in head ...
5
votes
1answer
144 views

Java concept idea

** SOLVED ** I'm fairly new to Java and so far I love it! So I'm just asking if someone has a idea that could help me out. So here's what I would like to do. What I'm working on right now is a ...
0
votes
3answers
3k views

Abstraction vs Encapsulation in Java [duplicate]

Possible Duplicate: Abstraction VS Information Hiding VS Encapsulation I know this question might have been asked thousands times on this forum, even net is also filled with lots of ...
1
vote
1answer
54 views

How can I describe the concept of instance or static affiliation?

When I was writing documentation for a method taking a parameter of type MethodAttributes (.NET), I had trouble to refer to the concept of a member being either a static or an instance member. Is ...

1 2 3