Questions tagged [spc]

24 questions
25
votes
6 answers

Joining GoDaddy-issued .spc and .key files into a complete .pfx / .cer certificate

I have a GoDaddy-issued code signing certificate in a .spc file. Also, I have a private key in .key file. The code signing has been issued some 13 months ago, then it expired and was renewed with GoDaddy. During the renewal process no private key…
Ondrej Tucny
  • 26,009
  • 6
  • 63
  • 87
7
votes
1 answer

Generating Certificate Signing Request using Management Console

I am following https://godaddy.com/help/windows-generate-csr-for-code-or-driver-signing-certificate-7282 guide to generate a CSR to request a code signing/software publishing certificate. In management console when I Right-click Certificates, and…
mhsarosh
  • 188
  • 6
4
votes
2 answers

Does .NET 4 support any 6-Sigma calculation?

I will need to write an app to run statistical analysis on a DataGrid. Pp and Ppk is easy to do with standard deviation calculation in C#. But Some number such as estimated deviation (rBar/d2) used for Cp and Cpk - that is too complex (for me ) to…
KMC
  • 18,443
  • 53
  • 146
  • 238
3
votes
0 answers

Certificate from Goddady

I created a certificate through GoDaddy. I need to create a pfx or p12 certificate in order to sign it in a windows executable. I followed GoDaddy's instructions from this link, but I was unable to generate the pfx file. I have .spc and .pem files…
3
votes
1 answer

Error obtaining key request data: AVFoundationErrorDomain reason: Optional("An unknown error occurred (-42650)")

I am implementing Apple Fireplay DRM for delivering encrypted content to devices. I was able to successfully load the certificate, but when I try to obtain SPC data from AVAssetResourceLoadingRequest, I am getting this error. Error obtaining key…
abhinavroy23
  • 2,382
  • 1
  • 9
  • 18
3
votes
1 answer

Predicting SPC (Statistical Process Control)

I will give a brief explanation to my scenario. The company mass produces components like valves/nuts/bolts etc which need to measured for dimensions (like length,radius,thickness etc) for quality purposes. As it is not feasible to inspect all the…
Sreenath1986
  • 167
  • 2
  • 14
3
votes
4 answers

Reasoning about consecutive data points without using iteration

I am doing SPC analysis using numpy/pandas. Part of this is checking data series against the Nelson rules and the Western Electric rules. For instance (rule 2 from the Nelson rules): Check if nine (or more) points in a row are on the same side of…
codeape
  • 89,707
  • 22
  • 139
  • 171
2
votes
1 answer

GeoTools, Java: How to convert shapefile data from DOR to usable polygons with Latitude and Longitude coordinates

The shapefiles I'm concerned with can be found here, though I'm sure this could apply to any shapefile using coordinates based on state plane coordinates: http://dor.wa.gov/content/FindTaxesAndRates/stshpdownloads.aspx I'm currently using GeoTools,…
Eric
  • 23
  • 2
1
vote
3 answers

How to generate a PKCS12 (.p12) from a .SPC (code signing certificate) and .PKCS12 (private key)?

I have a code-signing certificate (SPC) file from GoDaddy. The file was generated from an existing private key: -----BEGIN RSA PRIVATE KEY----- MIIEpAIBAAKCAQEAvcG2SEalg9pvkTvtMI8cZg07tVA0RuK7LeGlFdk1smXgqrsH .... snipped…
user72003
  • 355
  • 1
  • 3
  • 7
1
vote
0 answers

PySPC (or any other Statistical Process Control library for Python)

I'm looking to add Statistical Process Control as a control chart in PowerBI. It seems I'll need to pre-process the data as I doubt PowerBI has this built in. I've found a library called PySPC, but cannot find supporting docs or examples in…
Dean
  • 63
  • 1
  • 8
1
vote
0 answers

Trying to draw a SPC Chart in R

I am trying to create a control chart using the code below but I am getting the error below. The data has the first Column as date then 12 other columns with different variables of data. library("qcc") attach(data) Data_Frame_Data <-…
James Anon
  • 31
  • 1
  • 6
1
vote
0 answers

How to generate a Control Chart using D3.js?

I need a solution to represent the below data in D3.js Ideally the chart should look similar to the example below. Based on the following dataset I need to generate a Control Chart for the Javascript application am currently working on. I know D3.js…
Coder Absolute
  • 3,659
  • 3
  • 21
  • 33
1
vote
1 answer

SPC - Control Charts by Group in R

I want to create a statistical process control chart for each Name in this dataframe and extract the rows that are out of control for each individual Name. Below is the dataframe: DATE <- as.Date(c('2016-06-18', '2016-06-19', '2016-06-20', …
nak5120
  • 3,410
  • 3
  • 23
  • 62
1
vote
1 answer

How can I read a .spc file from C++?

I have PKCS #7 Certificates (.spc) file generated from some equipment. It has an array of floats, that I need to read into my C++ program. Before, I was using an external program to generate a .csv file. However, I lose some precision here since it…
user4513421
1
vote
1 answer

Exponentially weighted moving average- without mean or standard deviation?

Hi I have collected some process data for 3 years and I want to mimic a EWMA prospective analysis, to see if my set smoothing parameter would have detect all the important changes (without too many false alarms). It seems like most textbooks and…
1
2