The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
30 views

ways of getting my location on android

This may be a kinda odd question but I am new at Android development and I'm having trouble to learn how to retrieve the user's location to my application. I have looked for this topic but I just ...
1
vote
0answers
17 views

Javascript hand-drawed polygon difference

I'm looking for javascript library or algorithm to draw difference of two hand-drawed closed svg path's (polygones). I've tried to work with Delaunay triangulation, as suggested here. For example ...
1
vote
1answer
16 views

how to get date difference in openerp?

I want to get the number of days between two dates. How can I achieve this in openerp? I need to comapare the current date with a past date and get the number of days in between.
0
votes
0answers
19 views

WPF rendering difference between Windows client versions

I have a TextBlock where the text is getting trimmed at WordEllipsis level. The text is also Wrapped. It's working the way I want it to on all my Windows clients except for one. Example of the ...
-1
votes
2answers
52 views

What is the Difference between CMMI and Agile?

Is there anyone who can tell me what is the difference between CMMI and Agile. I know some obvious difference, but I want to know it further. I will appreciate it a lot if someone can help me! Thanks! ...
1
vote
2answers
16 views

Subtracting hex-valued file names

Using QNX Neutrino, I need to subtract hex-valued file names from their predecessors. The files are named by their creation time in hex. The following gets me a list of pure hex values, but I cannot ...
2
votes
1answer
31 views

Difference in file time

I am writing a script to find the difference between file creation/modification times using a bash script. Running QNX I cannot use any common themed date functions that would make this easy. I am ...
2
votes
6answers
92 views

Find Missing items from arraylist in java

Hi I am newbie to java and was trying my hand on collections part, I have a simple query I have two array list of say employee object class Employee { private int emp_id; private String ...
0
votes
1answer
35 views

Calculate difference between rows in Access

The table looks like this: part value BAC 102 BS1 275 MAV 425 BAC 519 BSF 653 BAC 1072 The result would be: For part BAC part value difference BAC 102 ...
0
votes
2answers
35 views

form submit jquery v javascript difference

in javascript this works fine and the validateForm function fires ContactForm = document.getElementById('EmailForm'); ContactForm.onsubmit=validateForm; function validateForm() { //do stuff here ...
-4
votes
0answers
75 views

Turning from C++ to C [closed]

Is it good to turn from C++ to C programming language ? What pros and cons do you suggest if someone does that. Keeping away the point of paradigm difference between C and C++
0
votes
0answers
16 views

MySQL How take a difference between two Query Results

I have an online game connected to my mysql. There I have a column 'xp' in user table, I wanted to see how much xp a user makes within 60 minutes. What I want to do is something like select id,nick, ...
1
vote
0answers
53 views

With two point sets A and B, what is an efficient way of finding points in B that are not in A

I have a pointset representing a set of polygons which I pass to a polygon boolop (clipping) algorithm. Once I get the result, I want to know what points the boolop newly created -- these would be due ...
-2
votes
0answers
33 views

difference between 2 plots [closed]

I have two matrices, one is 60x2 (tB,B) and the second is 2650x2 (cutted to tA, A). in first colum is time almost same, in second column is position. I need make difference between them. Something ...
-2
votes
0answers
29 views

disparity between load bulk data to sql server, my sql and oracle [closed]

disparity between load bulk data to sql server, my sql and oracle from csv file using jdbc... sql-server:- BULK INSERT dbo.TableForBulkData FROM 'C:\BulkDataFile.csv' WITH ( FIELDTERMINATOR = ',', ...
0
votes
2answers
99 views

Difference between HBase and Hadoop

This is kind of naive question but I am new to NoSQL paradigm and don't know much about it. So if somebody can help me clearly understand difference between the HBase and Hadoop or if give some ...
0
votes
1answer
38 views

differences between 2 qr codes zxing libraries

I have generated two QR codes from the same dataset using zxing libraries on android platform. Is it possible to show the differences between these two using zxing libraries as well? Any other APIs ...
0
votes
1answer
41 views

Algorithm for checking if two HSL color values would have a bad contrast?

In javascript/jquery, if I have two colors in HSL (or hex or rgb) format, is there an algorithm that can check if the contrast is bad? One color is text, and the other color is the background of the ...
-2
votes
1answer
42 views

How to check color difference in javascript/jquery?

In javascript or jquery, given two colors in hex format like #FFFFFF and some threshold value, how can you check if the color difference between the two colors are within the given threshold? Thanks. ...
3
votes
1answer
116 views

Sum of all elements of an array after N iterations

Given an Array arr[ ]={4,6,8,3,6} sum of all elements of the array = 27. Now, let us perform an operation on the array:- For all i < length(arr)-1, arr[i]=arr[i]-arr[i+1] So now the array becomes ...
-1
votes
0answers
49 views

css difference between chrome and mozila firefox [closed]

Would someone please help me out here on why my secondary menu is rendering with a padding difference between Chrome and Firefox? Chrome renders the page correctly, but Firefox is showing the menu ...
1
vote
1answer
50 views

creating a difference file from .csv files

I am creating an application which converts a MS Access table and an Excel sheet to .csv files and then differences the access table with the excel sheet. The .csv files are fine but the resulting ...
0
votes
1answer
19 views

Difference between drop cache through shell command and “clear cache” button in application

anyone can explain what's the different between drop cache with this code : echo 3 > /proc/sys/vm/drop_caches and the classic "Clear cache" button in the app information? Thanks
0
votes
1answer
28 views

is there some difference of component in flex3 and flex4

there some weird problems in my project,I download the objecthandles project which let make a component draggable,resizeable,stretchable and rotatable. it works well in flex3,then in flex4,I add ...
-1
votes
0answers
27 views

Differences between mysql and sqlite queries? [closed]

I want to write a Java application where the user can choose between using SQLITEand MYSQL. So what are the most important differences between sqlite and mysql? And are there any syntax differences?
2
votes
1answer
58 views

What's the difference between “squash” and “fixup” in Git/Git Extension?

I've been using Git Extensions for a while now (it's awesome!) but I haven't found a simple answer to the following: Sometimes, when typing a commit message, a make a typo. My friend showed me how to ...
0
votes
0answers
37 views

TreeSets user input > union, intersection and difference

I'm trying to create two treesets java (using jcreator) and get their union, intersection and difference. whats the catch ? the treesets should be entered by the user and both are closed in ...
-1
votes
1answer
42 views

DOM vs XPath - Difference? [closed]

I'm curious of what the pros and cons are of these two, DOM and XPath. What does XPath provide that DOM does not, and the other way around? I'm not looking for performance or anything like that, just ...
0
votes
2answers
60 views

Difference between two strings in VBScript

I need a way to find the difference between two strings in a Windows application using VBScript. One of the strings is known but the second one is completely unknown during coding. I know there are ...
-2
votes
0answers
16 views

difference between i/o processor and i/o conto [closed]

What is the difference between I/O processor and I/O controller.?? I have been asked this question in interview which was for trainee in electricity board. I couldn't figure out what she was ...