Questions tagged [identify]
196 questions
1
vote
1 answer
PowerShell script to identify and stop one specific service
I try to make a PowerShell script to do the following:
I want to identify the antivirus running on my PC.
I use command to do that:
$AntiVirusProduct = Get-WmiObject -Namespace root\SecurityCenter2 -Class AntiVirusProduct
Write-Output…

Skyn3t
- 29
- 4
1
vote
1 answer
Which symbology is this barcode and why can't I scan it?
I'm trying to use some barcodes applied to product by another company, but we can't!
We have Symbol LS1203 tethered scanners and Linea Pro 5s in our business, but both have failed to scan these codes. I've gone through the programming document for…

MrWedders
- 156
- 8
1
vote
1 answer
Identify parameters of ARIMA model
I am trying to build ARIMA model, I have 144 terms in my standardized time series, which represent residuals form original time series. This residuals, on which I would like to build ARIMA model, are obtained when I subtracted linear trend and…

nick_name
- 161
- 10
1
vote
1 answer
How to use identify to a horizontal dendrogram of class "dendrogram" in R
I am using identify to explore specific features of clusters in a dendrogram in R. Identify is working perfectly fine by using a 'hclust' object, but I need it for a horizontal dendrogram of class 'dendrogram' instead of 'hclust'. I have the package…

jedgroev
- 115
- 5
1
vote
1 answer
IRC Bot Python | Identify Nickname
Here is my trouble: The Bot loads the IRC information fine, but when its suppose to Identify itself, he doesn't.
The following is the relevant part of the code. I guess the problem is on line 9 but I can't figure out why.
import socket
server =…

Afonso Pinto
- 45
- 8
1
vote
2 answers
how can I Uniquely identify a computer
I would like to develop an application that can connect to server and uniquely identify clients then give them permissions to run a specific query on server's database.
How can I identify clients in a unique way. Is MAC address reliable enough? or…

Sarah Aziziyan
- 498
- 9
- 22
1
vote
1 answer
Why does Python swaps variable ids when swaps variables
I thought every object take an id based on key.
>>> a = 10
>>> b = 20
>>> id(a)
1876869280
>>> id(b)
1876869440
>>> a,b=b,a
>>> id(a)
1876869440
>>> id(b)
1876869280
When swap the variables, their ids are swapped too. If every object has a unique…

GLHF
- 3,835
- 10
- 38
- 83
1
vote
1 answer
Communication between child processes in C POSIX
I have a problem about communication between child processes of the same process father.
A father process create N child processes.
Each child process have an ID.
ID of the first child is N, the second is (N-1),... and the last is (1):
process…

minh-hieu.pham
- 1,029
- 2
- 12
- 21
1
vote
1 answer
Need the name for a URL that contains lots of garbage expect the name. (Advanced BASH)
http://romhustler.net/file/54654/RFloRzkzYjBxeUpmSXhmczJndVZvVXViV3d2bjExMUcwRmdhQzltaU5UUTJOVFE2TVRrM0xqZzNMakV4TXk0eU16WTZNVE01TXpnME1UZ3pPRHBtYVc1aGJGOWtiM2R1Ykc5aFpGOXNhVzVy <-- Url that needs to be…

Narayana
- 323
- 3
- 16
1
vote
2 answers
Need a simple tool for analysing unicode characters
I'm surprised I can't find a simple tool for this. Basically, sometimes as a result of text munging, or using some piece of software, I end up with some text that has some troublesome characters - such as looking a lot like other characters, but…

Steve Bennett
- 114,604
- 39
- 168
- 219
1
vote
1 answer
Identify corrupt .xml files that begins with hex 00 00 00 00
I have two ways forward at the moment. Either would work but I'm not quite there with the batch programming yet. I sometimes get corrupt .xml files in a folder and need to delete such. When that happens the .xml file consist of only hex 00 00 00 00…

user3299411
- 13
- 3
1
vote
1 answer
Determine the sender from a received DatagramPacket in a Multicast group
I am trying to implement a Multicast group in Java whose members can both send and receive DatagramPackets by using MulticastSockets. The sender relies on acknowledgements from the receiving members in order to ensure, say, that all members have…

Basil
- 111
- 1
- 5
1
vote
1 answer
Select points by identify() in multiple plots
I have a data frame df, each of its columns is plotted as a simple scatter plot. I want to select a single point in each graph by identify() and store it in a list s - one graph after another. Here is my approach:
x1 <- c(12:4, 5:8, NA, NA)
x2 <-…

Markus
- 347
- 1
- 3
- 14
1
vote
3 answers
Identifying MySQL ID in a form
Using the following code:
";
?>
Is giving me the…

Filip Ionita
- 67
- 1
- 9
1
vote
1 answer
How to identify the keyboard keys using C#
I have an C# application runing at the back ground. Now i want to stop this application when the system is locked. how can i do that. Any help regarding this is really appreciated.
Thanks Hougen for the solution. could you please suggest me should…
user176500