Refers to an object that is distinctly different from any other object in a collection.
0
votes
1answer
40 views
Can a unique list accept lower and upercase entries
My script logs information about all the unique file types in a directory and subdirectory. In the process of creating a unique list of file extensions the current code considers that jpg, Jpg and JPG ...
0
votes
0answers
4 views
Is there an issue with putting a longer input string to a hashing algorithm than the algorithm outputs?
Currently I'm designing a hashing system for user emails, but what happens if the user email is longer than the hash output. I usually use sha1 sha256 or sha512 if it makes a difference based on ...
0
votes
0answers
4 views
ManyToMany without unique constraint in Doctrine
I'm trying to set up a Many to Many relationship in Doctrine. Specifically I want to link my table for chemical compounds with the table for chemical elements. This works perfectly for NaCl salt, for ...
0
votes
2answers
17 views
validates :name, uniqueness: {scope: user_id}
I have added a validation like this one to my model:
validates :name, uniqueness: {scope: user_id}
And added an add_index like this on my migration:
add_index(:posts, :name)
But I just read on ...
0
votes
1answer
10 views
Removing identical facts in CLIPS
How do you remove identical facts in CLIPS?
Presuming I have
(fact 2)
(fact 3)
(fact 2)
(fact 4)
I want to remain only with (fact 2), (fact 3) and (fact 4). How can I do that?
0
votes
1answer
23 views
DjangoRestFramework serializing custom user models
I have defined a custom user model class as follows
class LabUserManager(BaseUserManager):
"""
A new user manager for both standard and administrative users
"""
def create_user(
...
0
votes
1answer
38 views
MySQL SELECT COUNT DISTINCT
I am getting from the below query
SELECT co.mobility_theme, COUNT(DISTINCT ca.user_id) AS n
FROM courses_apply AS ca LEFT JOIN dy41s_courses AS co ON ca.course_id = co.id
WHERE ca.submission IS ...
0
votes
1answer
30 views
Unique attributes with xpath not working
I would like to validate a xml document with an xsd schema file. The xml document contains information about windows services, I would like to set the Name attribute from Service to a unique value.
...
0
votes
0answers
25 views
MYSQL UNIQUE for date part of a date field
I have the field sync_date (type DATETIME) in my table visit. I would like that sync_date can not repeat in the same day. So, I have the idea to have sync_date as an UNIQUE field. But it doesn't work ...
0
votes
0answers
36 views
Why HardwareIdentification class doesn't return unique hardware ID?
I was just surfing Stack Overflow and read two question regarding identifying device using HardwareIdentification class. But today I got to know that, hardware ID is different in every app. So anyone ...
-1
votes
4answers
40 views
Unique Random Integer Generator
I'm trying to make a random Integer generator that produces unique numbers.
Does anyone has any ideas how's that possible?
-3
votes
0answers
68 views
GO: Generating Unique Key (Finger Print) for a Computer for Licensing Purposes
For licensing purposes I want to generate a unique key for the client's machine and provide a corresponding license key for that key.
For this purpose, I want to use the unique id of the client's ...
0
votes
1answer
35 views
MySQL unique user ID trigger using substring concatenated columns
I'm trying to create a trigger to generate a unique ID using the first two characters of the persons first name, and the first three characters of their last name.
This is the error I'm currently ...
0
votes
2answers
69 views
Can I use just one SQL query for auto increment and unique constraint?
I have an SQL database. A table in the database contains a column which is ID. I want to write an SQL query that alters that table so the values for ID column are automatically incremented (ID is ...
4
votes
1answer
74 views
Getting unique elements from a container [c++]
I was looking to get only the unique elements from a container. Let's say srcContainer is the container from which I want unique elements. I looked at three options:
Using std::unique
...
0
votes
2answers
22 views
how to generate list of (unique) words from text file in ubuntu?
I have an ASCII text file. I want to generate a list of all "words" from that file using one or more Ubuntu commands. A word is defined as an alpha-num sequence between delimiters. Delimiters are by ...
0
votes
1answer
14 views
Nhibernate, how to make unique string column
I have example 'object' with Id, FkAnotherObject, and string. Which attribute I have to use to have ony unique strings in table. Is there any option to do this?
0
votes
2answers
31 views
How to make column data unique for each user_id in ruby on rails
The problem is that I have a table customers with some customers related columns like customersID.
Also I have a column user_id So that the customers data only relate to one user.
class Customers
...
0
votes
1answer
13 views
EclipseLink nullable column but unique
is it possible to define a column with EclipseLink, which can be null but if a value != null exists, there should only be unique values within the column. How I can model that?
Thank you
Andre
0
votes
1answer
22 views
$.unique with jQuery, not working for this
I'm trying to understand where is my mistake,but can't see it right now, my js is valid and working with other html template :
//DATES : wrap the submenu by year
var arr = $("#submenu ...
1
vote
3answers
59 views
How to pick 3 unique arrays?
var arr = ['1','2','3','4'];
How can I pick 3 unique arrays from arr ?
I can only pick one by one like..
function pick(a){
var i = Math.floor(Math.random()*a.length);
return a[i];
}
...
0
votes
1answer
24 views
Neo4j Unique Labelled Node
Note: I am working with Neo4J 2.0.0-M02.
In previous applications, who worked with earlier versions of Neo4j (mostly 1.8.x), I've used the UniqueNodeFactory with an index on for instance, a person ...
0
votes
3answers
47 views
generate fingerprint of client using javascript
How can i generate unique fingerprint of each client?
I know must use navigator object but some properties like navigator.battery cannot use in this method.
// battery included and unique may ...
0
votes
0answers
19 views
Unique objects from a random list, only one of each type can ever be present universally (Java)
Currently I am writing a program (in Java) that mimics the process of cellular reproduction (Both Mitotic and Meiotic reproduction(In plain English: Sexual and Asexual reproduction)), alongside of the ...
-1
votes
0answers
66 views
Powershell - Reading ini files
I have a load of .ini files for which I wish to compare and extract only the unique sections.
For example,
file1:
**[CONFIG]
Path=c:\**
file2:
[CONFIG]
Path=D:\
file3:
[CONFIG]
...
0
votes
1answer
31 views
django provide same session everywhere
I'm working on a django app which use an external base to authenticate user.
After login, some informations are retrieved to the session.
The issue is that this initialized session is the same with ...
0
votes
1answer
25 views
Uniquely identify a user on WinRT and WP8 using (f.ex.) LiveID?
I am looking for a way to uniquely identify a user in WinRT and preferably in WP8 as well. In WP7 applications, I could get a hash of the Live ID to do this, but I am not sure of how to approach this ...
-1
votes
1answer
31 views
(MySQL) How do you get the no of unique values in a column from the resultant table of a Natural Join in a single query?
I have two Tables:
Employee
emp_id, emp_name, emp_dept, emp_sal
1 A A 1
2 B B 2
3 C C 3
4 D D ...
1
vote
1answer
36 views
XSLT 1.0 - Create a Unique, Ordered List
I'm trying to create a transform where I generate an ordered unique list (where a hyphen separates two values.
I have source
<?xml version="1.0"?>
<results>
<result>
...
-1
votes
2answers
34 views
Unique lines in bash
I'm absolutely novice in bash, so here is my problem:
Any number of lines of text is given from standard input.
Output: number of non repeating lines.
For example:
INPUT:
She is wearing black ...
1
vote
1answer
36 views
python pandas index is_unique not working
I'm new to python so please call me on not including relevant information.
I've installed python, ipython, and am using the notebook on an Ubuntu installation in a VM.
I'm working through examples ...
0
votes
2answers
80 views
How do I make my ArrayList add 52 unique objects instead of all the same?
I've been stuck on this forever, but I think I've realized that my deck builder is ending up making a deck of cards all of the same, last value in the loop.
Here is my code for the deck builder and a ...
0
votes
0answers
42 views
Matlab - unique function strange output
While using unique function to delete duplicate rows from my matrix, I found difficulties to solve this problem:
Using the code:
X = unique(X, 'rows','stable');
the matrix I've obtained seemed ...
0
votes
5answers
48 views
Generate a List of Unique Random Numbers
So, I have a random number generator, where it generates 10 numbers between 1 and whatever the user inputs as the maximum. It worked well, but I want to make it so it doesn't generate duplicate ...
0
votes
0answers
6 views
How do I save project files in my application, which contains text and images, into a single project file with a unique file extension?
I'm working on a program in which the user creates a project. The user will enter text in text boxes, check checkboxes and radiobuttons and import images into pictureboxes throughout the project.
In ...
0
votes
2answers
58 views
HashSet contains duplicate entries
A HashSet only stores values ones, when the equals method says that they're the same. Thats what I thought.
But now i'm adding Elements to a HashSet where the equals method returns true and the size ...
-1
votes
1answer
37 views
Count function for combinations of repeated observations and factors in a dataframe within and across time
Suppose I have data of the following type:
df <- data.frame(student = c("S1", "S2", "S3", "S4", "S5", "S2", "S6", "S1", "S7", "S8"),
factor = c("A", "A", "A", "A", "A", "B", "B", ...
0
votes
2answers
64 views
php how many unique values in specific array column
I'm getting the desired results back from my query and now I'm having trouble figuring
out how to manipulate the data into something usable.
The ultimate goal is a json output to be used by google ...
0
votes
2answers
61 views
Finding unique Values in two arrays - Perl
I have two arrays @results and @results2 that between them have masses of numbers. e.g (12345678 182937439 18329741 etc)
In both arrays if I combined them I could get duplication which I do not want. ...
0
votes
1answer
33 views
T-SQL: logical unique table rows in table
I have simple table containing information about bidirectional links between elements. Table looks like this:
link_id | link_side_a_element_id | link_side_b_element_id
...
0
votes
1answer
44 views
MATLAB Remove rows with second/third occurence of duplicate index
I have a large matrix with two columns. First is an index, second is data. Some indices are repeated. How can I retain only the first instance of rows with repeated indices?
For Example:
x =
1 ...
0
votes
1answer
43 views
stacking character vectors in R
I have two factor variables in a data frame and the end goal is to combine both columns to find a list of the unique factors of both the columns combined (some of the factors in variable one are ...
0
votes
4answers
19 views
Unique file name based on SRC attibute [duplicate]
On my project I have image linked from other domain
<img src="http://www.somewhere.com/images/whatever-image.jpg">
I would like to resave it locally with some name based on its original ...
1
vote
3answers
54 views
Bash CSV sorting and unique-ing
a Linux question: I have the CSV file data.csv with the following fields and values
KEY,LEVEL,DATA
2.456,2,aaa
2.456,1,zzz
0.867,2,bbb
9.775,4,ddd
0.867,1,ccc
2.456,0,ttt
...
The field KEY is a ...
0
votes
0answers
13 views
Unique visitor, for affiliate program
So my question is more conceptual, since I'm interested to see how affiliate programs count unique visitors. What is unique visit in affiliate programs or in goggle analytics for example ?
Right now ...
0
votes
1answer
15 views
Uniquely identifying an NSScreen
I'm working on a project which has settings for each display. I want my application to support a display being removed and later re-added, possibly with another display used in between, with the ...
1
vote
2answers
89 views
R: Count unique values by category
I have data in R that looks like this:
Cnty Yr Plt Spp DBH Ht Age
1 185 1999 20001 Bitternut 8.0 54 47
2 185 1999 20001 Bitternut 7.2 55 50
3 31 1999 20001 Pignut 7.4 71 ...
0
votes
2answers
50 views
Delete unique rows in Excel file
I've been asked quite a strange thing, even though I guess it's very simple.
Eliminate unique rows from an Excel file and just leave duplicates in.
Is there a simple way to do that ?
All the options ...
0
votes
2answers
32 views
Compare two multidimensional arrays then create array of only unique
I've been trying to get this for hours now.
I have two multidimensional arrays
$newData (
[0] => Array(
[id] => 1
[name] => John
[sex] => male
)
...
0
votes
0answers
29 views
Tips for comparing two arrays to get new data
I am working with various social network's APIs and I am thinking of a way to mimic a real time update. I know some APIs offer this, but it won't work with the way I am structuring this website.
...




