-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpcc_100_system_description.Rmd
More file actions
168 lines (134 loc) · 4.33 KB
/
pcc_100_system_description.Rmd
File metadata and controls
168 lines (134 loc) · 4.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
---
title: "Paylocity Coding Challenge - System Configuration Details"
author: "Eric Milgram, PhD"
date: "1/18/2022"
knit: (function(inputFile, encoding) {
rmarkdown::render(
input = inputFile,
encoding = encoding,
output_dir = here::here("code/Markdown"))
}
)
output:
md_document:
toc: no
number_sections: no
variant: gfm
---
```{r, setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE, include = TRUE, results = "hold", message = FALSE)
```
```{r, InitializeR}
# Load key libraries
library(here)
library(tibble)
library(kableExtra)
```
```{css, echo = FALSE}
pre {
max-height: 800px !important;
overflow-y: auto !important;
overflow-x: scroll !important;
}
pre code {
white-space: pre
}
```
# Paylocity Coding Challenge - System Configuration Details
<div style="font-size: 1.5em; padding-bottom: 0;">Eric Milgram, PhD</div>
<table>
<tbody>
<tr>
<td style="padding: 0; display: none;">
<a href="https://github.com/ScientificProgrammer/PaylocityCodingChallenge">ScientificProgrammer/PaylocityCodingChallenge</a>
</td>
</tr>
<tr>
<td style="padding: 0;">
Created: December 23, 2021
</td>
</tr>
<tr>
<td style="padding: 0;">
Last Updated: `r Sys.time()`</span>
</td>
</tr>
</tbody>
</table>
## Overview
This page contains a summary of the key software components, frameworks, and
operating systems that were used to complete the Paylocity Coding Challenge.
## OS PARAMS
```{r, OSParams}
osparams <- tibble(
params = c(
"OS Name",
"Version",
"System Type",
"Processor",
"BIOS Version/Date",
"Locale",
"Installed Physical Memory (RAM)",
"Total Physical Memory"
),
values = c(
"Microsoft Windows 11 Home",
"10.0.22000 Build 22000",
"x64-based PC",
"Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz, 2801 Mhz, 4 Core(s), 8 Logical Processor(s)",
"LENOVO 4KCN45WW, 1/11/2019",
"United States",
"16.0 GB",
"15.9 GB"
)
)
kblTb1 <- osparams |>
kableExtra::kbl(col.names = c("PARAMETER", "VALUE")) |>
kableExtra::kable_styling(bootstrap_options = c("striped", "condensed", "bordered"))
knitr::raw_html(kblTb1)
```
## Versions of Python Used to Verify Code Base
1. MS Windows: `3.10.1 (tags/v3.10.1:2cd268a, Dec 6 2021, 19:10:37) [MSC v.1929 64 bit (AMD64)]`
1. Debian Linux under WSL: `3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]`
## Editors/IDEs
1. `vim` on *Debian* running under Windows Subsystem for Linux (WSL)
<pre>
eric@Y520-ERIC:~$ cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 10 (buster)"
NAME="Debian GNU/Linux"
VERSION_ID="10"
VERSION="10 (buster)"
VERSION_CODENAME=buster
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
</pre>
1. `Sublime Text 4` on `Windows - Build 4126` with the following installed plug-ins
1. `LSP` & `LSP-pylsp` configured for `flake8 4.0.1` (`CPython 3.10.1` on `Windows`)
1. Lint Checks
1. `pycodestyle 2.8.0`
1. `pyflakes 2.4.0`
1. `mccabe: 0.6.1` (*McCabe complexity checking*)
1. Auto-formatting provided by `Python Black`
## Database Administration Tool - pgAdmin 4 (Microsoft Windows x64)
`)
### pgAdmin4 Specifications
The following table contains a summary of the pgAdmin4 specification values for
the instance that I used to complete this coding challenge.
| Parameter | Value |
|:-----------------|:------------------------------------------------------|
| Version | 6.3 |
| Application Mode | Desktop |
| Current User | [email protected] |
| NW.js Version | 0.59.0 |
| Browser | Chromium 96.0.4664.55 |
| Operating System | Windows-10-10.0.22000-SP0 |
| Release Date | Dec 16, 2021 |
| Download Link | <https://www.pgadmin.org/download/pgadmin-4-windows/> |