Difference between revisions of "Learning Hub"

From Series Bible
Jump to: navigation, search
(Created page with "Category:Learning == IT / SQA == Category:SQA === 10/22/18 === ==== Copy Request/Response Headers for Andy ==== On network console in Chrome, you can: # Copy to...")
 
(IT / SQA)
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
  
 
[[Category:SQA]]
 
[[Category:SQA]]
 +
 +
=== Nginx Logs ===
 +
 +
Powershell/Ubuntu SSH Client
 +
 +
* ssh username @IP
 +
* cd /var/log/nginx
 +
* ls
 +
** sudo cat error.log
 +
** sudo zcat zipped
 +
** sudo grep/zgrep 'error' filename
  
 
=== 10/22/18 ===
 
=== 10/22/18 ===
Line 19: Line 30:
  
 
On compatibility issues, look up messages on https://caniuse.com/.
 
On compatibility issues, look up messages on https://caniuse.com/.
 +
 +
== CIC ==
 +
 +
# Turnaround to Shipment Date:
 +
## ManufacturingStartDate should be:
 +
### the business day after materials collection + 1 (external) OR
 +
### the business day after materials collection (internal)
 +
## Look up postcard ManufacturingDaysMin and Max in ProductConfigurationExpediting table WHERE PCfgTypeID = '38'
 +
## Shipment Date = ManufacturingDaysMax + ManufacturingStartDate, assuming no ExpeditedDays
 +
# Transit Times: look up ShipZoneID + ShipTypeID in ShipZoneShipType table. Use MaxTransitDays.
 +
## ShipZoneID is found in table Shipping_Zones WHERE zipcode = '[first three digits of postal code]'
 +
## Shipment Types:
 +
### Ground: 1
 +
### 3 Day: 2
 +
### 2 Day: 3
 +
### Next Day: 4
 +
### PPO: 5
 +
### TPO: 6
 +
## Look up CicDestinationScfDays and CicLocalScfDays in ShippingParameters table
 +
# Target-in-home Date should be equal to materials collection days (external: +1) + ManufacturingDaysMax + MaxTransitDays + CIC days to SCF when there is no expedited days.

Latest revision as of 11:46, 30 October 2018


IT / SQA

Nginx Logs

Powershell/Ubuntu SSH Client

  • ssh username @IP
  • cd /var/log/nginx
  • ls
    • sudo cat error.log
    • sudo zcat zipped
    • sudo grep/zgrep 'error' filename

10/22/18

Copy Request/Response Headers for Andy

On network console in Chrome, you can:

  1. Copy to Powershell,
  2. add to notepad,
  3. save as .txt, and
  4. drop on the trello card for Andy

Look Up Error Messages on This Site

On compatibility issues, look up messages on https://caniuse.com/.

CIC

  1. Turnaround to Shipment Date:
    1. ManufacturingStartDate should be:
      1. the business day after materials collection + 1 (external) OR
      2. the business day after materials collection (internal)
    2. Look up postcard ManufacturingDaysMin and Max in ProductConfigurationExpediting table WHERE PCfgTypeID = '38'
    3. Shipment Date = ManufacturingDaysMax + ManufacturingStartDate, assuming no ExpeditedDays
  2. Transit Times: look up ShipZoneID + ShipTypeID in ShipZoneShipType table. Use MaxTransitDays.
    1. ShipZoneID is found in table Shipping_Zones WHERE zipcode = '[first three digits of postal code]'
    2. Shipment Types:
      1. Ground: 1
      2. 3 Day: 2
      3. 2 Day: 3
      4. Next Day: 4
      5. PPO: 5
      6. TPO: 6
    3. Look up CicDestinationScfDays and CicLocalScfDays in ShippingParameters table
  3. Target-in-home Date should be equal to materials collection days (external: +1) + ManufacturingDaysMax + MaxTransitDays + CIC days to SCF when there is no expedited days.