Questions tagged [identify]
196 questions
0
votes
2 answers
Using Bash find to recursively check non square jpg image dimensions, im very close
I am trying to recursively loop through all directories and print a full path list of all jpg files that are not perfectly square.
here is something I was using to find directories between 2 and 6 deep that are missing a cover.jpg:
find . -mindepth…

Jieiku
- 489
- 4
- 15
0
votes
0 answers
Nativescript - Get the mail/name of the user who downloaded the app
I'm on nativescript 6 with angular.
I wanted to know if that's possible already (i didn't found it) , to get the mail or name of the user who downloaded the app.
I explain myself, if the user is on android this will get the google play mail or name…

Sacha Krief
- 11
- 4
0
votes
2 answers
Why am I getting Error at line 3: ORA-00907: missing right parenthesis in my SQL when using IDENTITY
I am trying to create a table using SQL commands on an Oracle database 12C Enterprise Edition 12.2.0.1.0.
I want a new TRANS_num to be created when I add a new values to the table starting at 1 and incrementing by one.
my code is as follows:
CREATE…

Noiz
- 23
- 1
- 5
0
votes
1 answer
Delete/move files which in all respects have same file name except one set has a specific prefix added
I have a large set of working files of the form a.mp4 b.txt c.avi d.doc etc (the extension is irrelevant to the question). I also have a set of files which include the same named files except with a common specific prefix "broken_" eg…

Richard L
- 99
- 1
- 6
0
votes
1 answer
How to identify duplicated data in a data.frame in R?
I have a data.frame - e.g.: data1.csv - (100 000 rows x 5 cols).
N - ID - DATE - TEXT - LANG
Next, I did a sample of 3000 without set.seed:
num <- c(1:100000)
aleat <- sort(sample(num, 3000, replace = F))
data2 <- data1[aleat,c(1,4)]
Notice…
0
votes
4 answers
What steps should I take to identify this algorithm
I have a application that stores passwords in a ms sql database, I wish to replicate the algorithm used to generate those passwords.
I have to admit I am abit lost at exactly what I should try next.
Str in => Output
0 = 0x81
00 = 0x81 0x95…

Scott
- 3
- 2
0
votes
2 answers
Azure Face Identify more than 10 faces in a Person Group
So, a straightforward question. My first on SO. Asking here because it says so on the Azure Docs to ask here.
I understand that the Face API can identify at most 10 faces in an API call. Is it possible to get this limit raised to, say, 50? Maybe…
0
votes
1 answer
Assigning ID values to obs that share multiple characteristics
have the followign dataset
data = {'Country': ['UK','Ireland', 'Ireland', 'South Africa','Botswana','Italy','Greece'],
'Sub_ISO': ['Europe', 'Europe', 'Europe', 'Southern Africa','Southern Africa','Europe', 'Europe'],
'Language':…

Filippo Sebastio
- 1,112
- 1
- 12
- 23
0
votes
1 answer
How can I define width/height of svg-sprite and write these values to the file (with Linux or Mac CLI)
I'm trying to create svg-sprite using npm package svg-sprite. Eventually I get sprite, that looks like this:
// icons-test.svg
...
0
votes
1 answer
Identify BlackBerry phones
How can I identify a BlackBerry KeyOne or Key2 phone from within Java on Android? I'm thinking that I could check Build.MANUFACTURER or Build.PRODUCT, but I don't have one of these phones on hand to test at the moment.
I have an app that has a bug…

user10504
- 94
- 6
0
votes
1 answer
How do I generate a unique code based on the content?
Picture that you're typing in a input. For each character you add (including special characters, like @ . # ¤ % & ~ and so on), a unique code will generate based on the content. Not a hash! This unique code will only be 20 characters…

Airikr
- 6,258
- 15
- 59
- 110
0
votes
1 answer
imagemagick return file format using identify
Current I am able to get the file format using identify -verbose filename.hpg, I get Format: JPEG (Joint Photographic Experts Group JFIF format) from the array.
How can I return this exact same line using the -format option,
example: identify…

john
- 2,613
- 2
- 17
- 7
0
votes
1 answer
How do uniquely identify each client thread among the rest in Python
I cannot find a way to unique identify each thread that gets created and kept on the server. Each client thread has to store its own information which is used to relay information back to its respective the client. Obvious details for server…

Jeff
- 45
- 2
- 6
0
votes
1 answer
python string processing, when directly put word is ok when b[1] is not
I want to judge if all words in a string are proper English words.
I am using a function to check it:
is_word_english(word: str)
Returns a boolean value
The function can only process a word so I use split()to take out spaces between words.
Here…

Terry Yu
- 3
- 4
0
votes
1 answer
Rails 3 & Devise: Keeping track of who-owns-profile for user posts
My app has a user model and a post model, where user has_many posts and posts belong_to users. Posts are displayed on a user's profile page. I'd like for any user to be able to post on his own, or any other user's profile page. However, the problem…

Will
- 3
- 2