1 Commits

Author SHA1 Message Date
8c7bc782c8 Updated nPort Titles 2025-06-06 12:26:11 -07:00
2 changed files with 5 additions and 64 deletions

View File

@ -6,6 +6,8 @@ updated: 2023-07-08T03:55:16.399Z
# N Port List # N Port List
## 10.95.192.0/2#
| Title | User Name | Password | URL | Notes | Creation Time | Last Modification Time | | Title | User Name | Password | URL | Notes | Creation Time | Last Modification Time |
| ----------------------------- | ----------------- | -------- | ------------------- | ---------------------- | -------------------- | ---------------------- | | ----------------------------- | ----------------- | -------- | ------------------- | ---------------------- | -------------------- | ---------------------- |
| 01 - TENCOR1 | 00:90:E8:65:1F:2B | moxa | http://10.95.192.31 | | 7/23/2019 5:46:43 PM | 7/23/2019 5:51:01 PM | | 01 - TENCOR1 | 00:90:E8:65:1F:2B | moxa | http://10.95.192.31 | | 7/23/2019 5:46:43 PM | 7/23/2019 5:51:01 PM |
@ -23,6 +25,8 @@ updated: 2023-07-08T03:55:16.399Z
| 18 - Spare #4 | 00:90:E8:6E:3C:1A | moxa | http://10.95.192.50 | | 7/23/2019 5:55:33 PM | 7/23/2019 5:55:50 PM | | 18 - Spare #4 | 00:90:E8:6E:3C:1A | moxa | http://10.95.192.50 | | 7/23/2019 5:55:33 PM | 7/23/2019 5:55:50 PM |
| 19 - Spare #5 | 00:90:E8:6E:3C:36 | moxa | http://10.95.192.51 | | 7/23/2019 5:55:51 PM | 7/23/2019 5:56:06 PM | | 19 - Spare #5 | 00:90:E8:6E:3C:36 | moxa | http://10.95.192.51 | | 7/23/2019 5:55:51 PM | 7/23/2019 5:56:06 PM |
## 10.95.154.0/2#
| Title | User Name | Password | URL | Notes | Creation Time | Last Modification Time | | Title | User Name | Password | URL | Notes | Creation Time | Last Modification Time |
| --------------------------------------------------------- | ----------------- | -------------------- | ------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ---------------------- | | --------------------------------------------------------- | ----------------- | -------------------- | ------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ---------------------- |
| 10 - BIORAD4-Share | 1C:6F:65:C3:51:DB | moxa | tcp://10.95.154.10:#### | | 7/23/2019 5:53:56 PM | 11/1/2019 8:58:38 AM | | 10 - BIORAD4-Share | 1C:6F:65:C3:51:DB | moxa | tcp://10.95.154.10:#### | | 7/23/2019 5:53:56 PM | 11/1/2019 8:58:38 AM |
@ -51,7 +55,7 @@ updated: 2023-07-08T03:55:16.399Z
| 32 - Mesa Reactor State Monitoring Proof of Concept - R55 | 00:13:14:02:B8:B7 |   | http://10.95.154.32/indexE.html | | 7/21/2022 7:20:07 AM | 9/15/2022 11:51:38 AM | | 32 - Mesa Reactor State Monitoring Proof of Concept - R55 | 00:13:14:02:B8:B7 |   | http://10.95.154.32/indexE.html | | 7/21/2022 7:20:07 AM | 9/15/2022 11:51:38 AM |
| 33 - Tencor 2 VGA | 00:13:14:02:BB:17 |   | http://10.95.154.33/indexE.html | | 8/16/2022 12:52:36 PM | 9/15/2022 11:51:31 AM | | 33 - Tencor 2 VGA | 00:13:14:02:BB:17 |   | http://10.95.154.33/indexE.html | | 8/16/2022 12:52:36 PM | 9/15/2022 11:51:31 AM |
# EC Advanced_IP_Scanner_2.5.3850 2023-05-31 ## EC Advanced_IP_Scanner_2.5.3850 2023-05-31
| Status | Name | IP | NetBIOS group | Manufacturer | MAC address | Date | Comments | | Status | Name | IP | NetBIOS group | Manufacturer | MAC address | Date | Comments |
| ------ | -------------------------- | ------------ | ------------- | -------------------------------------- | ----------------- | ----------------------------- | ------------------------------------------------- | | ------ | -------------------------- | ------------ | ------------- | -------------------------------------- | ----------------- | ----------------------------- | ------------------------------------------------- |

View File

@ -1,63 +0,0 @@
---
type: "note"
created: "2024-04-16T19:09:30.884Z"
updated: "2024-04-17T09:09:36.234Z"
---
# editorconfig
- [editorconfig](https://editorconfig.org/)
- [editorconfig-how-to-autofix-all-files-in-a-project](https://stackoverflow.com/questions/39343031/editorconfig-how-to-autofix-all-files-in-a-project)
- [eclint-npmjs](https://www.npmjs.com/package/eclint)
- [eclint-github](https://github.com/jednano/eclint)
## eclint
```bash
l:
cd "L:\DevOps\Mesa_FI\OpenInsight"
echo node_modules >> .gitignore
echo [*] > .editorconfig
echo charset = utf-8 >> .editorconfig
echo end_of_line = crlf >> .editorconfig
echo indent_size = 4 >> .editorconfig
echo indent_style = space >> .editorconfig
echo insert_final_newline = true >> .editorconfig
echo tab_width = 4 >> .editorconfig
npm i -D prettier
npx prettier LSL2/STPROC/AC*.txt --check
# npx prettier fix **/*.txt --check
cls
npm i -D eclint
npx eclint fix LSL2/STPROC/AC*.txt
# npx eclint fix **/*.txt
REM
```
## dotnet
```bash
l:
cd "L:\DevOps\Mesa_FI\OI-Metrology\Server"
dotnet build
echo [*] > .editorconfig
echo end_of_line = crlf >> .editorconfig
echo indent_size = 4 >> .editorconfig
echo indent_style = space >> .editorconfig
echo insert_final_newline = false >> .editorconfig
echo tab_width = 4 >> .editorconfig
dotnet format whitespace
REM
```
- [dotnet-format](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-format)
```bash
l:
cd "L:\DevOps\Mesa_FI\OI-Metrology\Server"
dotnet build
del .editorconfig
notepad ../.editorconfig
dotnet format format --report .vscode --verbosity detailed --severity warn
REM
```