diff --git a/.obsidian/community-plugins.json b/.obsidian/community-plugins.json index e5c80a3..1af3423 100644 --- a/.obsidian/community-plugins.json +++ b/.obsidian/community-plugins.json @@ -59,5 +59,6 @@ "vscode-editor", "obsidian-link-converter", "image-converter", - "nexus-ai-chat-importer" + "nexus-ai-chat-importer", + "copilot" ] \ No newline at end of file diff --git a/00-INBOX/Obsidian Plugin URI.md b/00-INBOX/Obsidian Plugin URI.md new file mode 100644 index 0000000..c393eeb --- /dev/null +++ b/00-INBOX/Obsidian Plugin URI.md @@ -0,0 +1,3 @@ +``` +obsidian://show-plugin?id= +``` \ No newline at end of file diff --git a/00-INBOX/R Shiny Card Based Design.md b/00-INBOX/R Shiny Card Based Design.md new file mode 100644 index 0000000..51f3f4e --- /dev/null +++ b/00-INBOX/R Shiny Card Based Design.md @@ -0,0 +1,121 @@ +--- +creation_date: 2024-09-30 +modification_date: 2024-09-30 +author: Jimmy Briggs +tags: + - Type/Note + - Topic/Dev + - Topic/Dev/R + - Topic/Dev/R/Shiny + - Status/WIP +aliases: + - R Shiny Card Based Design +publish: true +permalink: +description: +image: +cssclasses: +--- + + +# R Shiny Card Based Design + +> [!SOURCE] Sources: +> - *[[05-SYSTEM/Documents/PDFs/RShiny-CardBasedDesign.pdf|RShiny-CardBasedDesign]]* + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Overview + +> [!NOTE] About +> This note summarizes the concepts introduced in a published PDF: [[05-SYSTEM/Documents/PDFs/RShiny-CardBasedDesign.pdf|RShiny-CardBasedDesign]]. + +The document describes using a card-based design for building dashboards in [[04-RESOURCES/Tools/Tool - R Shiny|R Shiny]]. Card-based design, adopted by companies like Apple and Google, helps create an intuitive and organized [[04-RESOURCES/Definitions/Acronyms/User Experience (UX)|User Experience (UX)]]. The article explains the steps to develop such a design in R Shiny, focusing on: + +1. **Data Source Management:** Understanding the data and identifying analysis subjects to guide the application's content. + +2. **Divide Contents into Units & Assign Cards:** Classify data into units and select appropriate card types for visualization. It introduces various card types such as basic cards, cards with multiple tabs, cards with sidebars, and user info cards. The article emphasizes using the [[04-RESOURCES/Tools/Tool - R bslib|{bslib}]] package first for card creation and then exploring others like [[04-RESOURCES/Tools/Tool - R shinydashboardPlus|{shinydashboardPlus}]] if needed. + +3. **Organization:** Discusses creating the layout for a card-based app using [[04-RESOURCES/Tools/Tool - R Shiny|R Shiny]]'s native layout functions for stability and compatibility. It presents two main layout functions: + + - `fluidRow` from [[04-RESOURCES/Tools/Tool - R Shiny|{shiny}]] for arranging cards in rows using a 12-column grid system. + - `layout_column_wrap` from [[04-RESOURCES/Tools/Tool - R bslib|{bslib}]] for automatically distributing cards across rows. +4. **Decorate:** Talks about enhancing the dashboard with themes and icons using the [[04-RESOURCES/Tools/Tool - R bslib|{bslib}]] package for theme adjustments. It highlights how to change themes easily with `bs_theme()` and the inclusion of icons using [[Tool - FontAwesome|FontAwesome]]. + +5. **Conclusion:** Recommends using native Shiny functions for layouts and [[04-RESOURCES/Tools/Tool - R bslib|{bslib}]] for card design, decorating with themes, and icons. It also suggests mastering [[04-RESOURCES/Definitions/Acronyms/Cascading Style Sheets (CSS)|CSS]] and [[04-RESOURCES/Code/JavaScript/_README|JavaScript]] for further customization. + +The paper provides practical guidance for creating polished, professional dashboards in R Shiny without requiring advanced front-end development skills. + +## Diagrams + +```mermaid +graph LR + A[Data Source Management] --> B[Divide Contents Into Units & Assign Cards] + B --> C[Organization] + C --> D[Decorate] + D --> E[Deploy] +``` + +```mermaid +graph LR + A[Card Type] --> B[Basic card] + A --> C[Profile card] + A --> D[Metric card] + A --> E[Flib card] + A --> F[Card with static image] + A --> G[Card with multiple tabs] + A --> H[Card with sidebar] + A --> I[Card with dropdown menu] + + B --> B1[bslib::card] + B --> B2[shinydashboardPlus::box] + + C --> C1[shinydashboardPlus::userBox] + + D --> D1[bslib::value_box] + D --> D2[summarybox::summaryBox] + D --> D3[shinydashboard::infoBox] + + E --> E1[shinydashboardPlus::flipbox] + + F --> F1[bslib::card_image] + F --> F2[shinydashboardPlus::box] + + G --> G1[bslib::navset_card_tab] + G --> G2[shinydashboardPlus::tabbox] + + H --> H1[bslib::layout_sidebar] + H --> H2[shinydashboardPlus::boxSidebar] + + I --> I1[shinyWidgets::dropdownButton] + I --> I2[shinydashboardPlus::boxDropdown] +``` + +## Resources + +*** + +## Appendix + +*Note created on [[2024-09-30]] and last modified on [[2024-09-30]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[R Shiny Card Based Design]] AND -"CHANGELOG" AND -"//R Shiny Card Based Design" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 \ No newline at end of file diff --git a/00-INBOX/Shebang.md b/00-INBOX/Shebang.md new file mode 100644 index 0000000..daf5dea --- /dev/null +++ b/00-INBOX/Shebang.md @@ -0,0 +1,100 @@ +--- +creation_date: 2024-10-02 +modification_date: 2024-10-02 +author: Jimmy Briggs +tags: + - Type/Note + - Topic/Dev + - Topic/Dev/Linux + - Topic/Dev/Shell + - Status/WIP +aliases: + - Shebang +publish: true +permalink: +description: +image: +cssclasses: +--- + + +# Shebang (`#!`) + +> [!SOURCE] Sources: +> - ** + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Overview + +> [!NOTE] About +> A shebang (`#!`) tells the [[operating system]] which interpreter to use when executing a script. +> For example, in a bash script, you might see `#!/usr/bin/bash` at the top of the script. + +A **shebang** (#!) tells the operating system which interpreter to use when executing a script. + +This specifies that the system should use the [[../04-RESOURCES/Code/Bash/_README|Bash]] shell located at `/bin/bash`. + +While these hardcoded paths work well in many environments, they can sometimes limit the script’s portability. + +That's where `env` becomes useful. + +## Environment Based Shebangs + +Using `env` in the shebang *ensures that the script dynamically locates the interpreter based on the user's environment*, instead of directly interpreting a hard-coded path. You can let `env` search the system's `PATH` environment variable in order to find the appropriate interpreter. + +For example: + +```bash +#!/usr/bin/env bash +``` + +instead of + +```bash +#!/usr/bin/bash +``` + +By using `env`, you remove the reliance on a specific path, allowing the system to select the interpreter from wherever it’s defined in the user’s `PATH`. This is particularly helpful in various environments where the interpreter’s path might not be as predictable as you think. + +### Key Advantages of Using `env` + +1. **Portability Across Systems** + On many Linux distributions and macOS, `/bin` is commonly a symbolic link to `/usr/bin`. This means that `#!/bin/bash` or `#!/usr/bin/python3` will often work without issue. However, in some specialized environments, custom installations, or more niche Unix-like systems, interpreters might be installed in non-standard locations. By using `env`, your script remains adaptable and can locate the interpreter wherever it resides in the `PATH`, regardless of the system setup. +2. **Flexibility with Virtual Environments** + Many developers, especially in the Python ecosystem, rely on virtual environments to manage dependencies. Virtual environments allow you to isolate the interpreter and its packages for specific projects. By using `env`, the script will automatically use the interpreter from the active virtual environment rather than the system-wide installation, providing greater flexibility and avoiding conflicts. +3. **Handling Multiple Versions of an Interpreter** + Systems often have multiple versions of the same interpreter (e.g., Python 2 and Python 3, or different Bash versions). When you use `env`, the script will execute with the version that’s prioritized in the user’s `PATH`, ensuring compatibility with the version of the interpreter they intend to use. +4. **Avoiding Hardcoded Paths** + Hardcoding paths like `/bin/bash` or `/usr/bin/python3` assumes that the interpreter will always be installed in that exact location, which isn’t always the case. Using `env` abstracts this away, ensuring that your script remains functional regardless of where the interpreter is installed. + + + +## Resources + +*** + +## Appendix + +*Note created on [[2024-10-02]] and last modified on [[2024-10-02]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[Shebang]] AND -"CHANGELOG" AND -"00-INBOX/Shebang" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 \ No newline at end of file diff --git a/03-AREAS/Journal/2024-09-27.md b/03-AREAS/Journal/2024-09-27.md new file mode 100644 index 0000000..507301f --- /dev/null +++ b/03-AREAS/Journal/2024-09-27.md @@ -0,0 +1,105 @@ +--- +creation_date: 2024-09-27 +modification_date: 2024-09-27 +author: Jimmy Briggs +tags: + - Type/Journal/Daily + - Type/Journal + - Topic/Journal + - Topic/Journal/Daily + - Status/Ongoing +aliases: + - 2024-09-27 + - September 27th, 2024 + - Friday 27th September, 2024 +publish: true +permalink: areas/journal/daily/2024-09-27 +description: Daily Journal Note for 2024-09-27. +banner_icon: +banner: +cssclasses: + - daily +--- + + +# [[2024-09-27|Friday, September 27, 2024]] + +<< [[2024-09-26]] | [[2024-09-28]] >> + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Daily Journal + +> [!NOTE] Personalized daily activity logs. + +- `...` + +## Daily Discoveries + +> [!NOTE] Anything relevant that was discovered on this day (i.e. new tools, technologies, code snippets, ideas, videos, podcasts, people, etc.) + +- `...` + +## Daily Tasks + +> [!TODO]- Todoist Tasks +> ```todoist +name: Highest Priority & Date +filter: "today & ##No Clocks" +sorting: + - priority +groupBy: project +``` + + +## Metadata & Links + +> [!META]- Metadata: +> - Year:: [[2024]] +> - Month:: [[2024 September]] +> - Quarter:: [[2024Q3]] +> - Week:: [[2024 395524 39]] + +> [!log] Created Notes Log: +> ```dataview +TABLE file.folder AS Folder +WHERE file.cday = date(this.file.name) AND file.name != (this.file.name) +SORT file.folder ASC, file.name ASC +``` + +> [!log] Modified Notes Log: +> ```dataview +TABLE file.folder AS Folder +WHERE file.mday = date(this.file.name) AND file.name != (this.file.name) +SORT file.mtime asc +``` + +*** + +## Appendix + +*Note created on [[2024-09-27]] and last modified on [[2024-09-27]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[2024-09-27]] AND -"CHANGELOG" AND -"03-AREAS/Journal/2024-09-27" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 + + + diff --git a/03-AREAS/Journal/2024-09-28.md b/03-AREAS/Journal/2024-09-28.md new file mode 100644 index 0000000..115c043 --- /dev/null +++ b/03-AREAS/Journal/2024-09-28.md @@ -0,0 +1,105 @@ +--- +creation_date: 2024-09-28 +modification_date: 2024-09-28 +author: Jimmy Briggs +tags: + - Type/Journal/Daily + - Type/Journal + - Topic/Journal + - Topic/Journal/Daily + - Status/Ongoing +aliases: + - 2024-09-28 + - September 28th, 2024 + - Saturday 28th September, 2024 +publish: true +permalink: areas/journal/daily/2024-09-28 +description: Daily Journal Note for 2024-09-28. +banner_icon: +banner: +cssclasses: + - daily +--- + + +# [[2024-09-28|Saturday, September 28, 2024]] + +<< [[2024-09-27]] | [[2024-09-29]] >> + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Daily Journal + +> [!NOTE] Personalized daily activity logs. + +- `...` + +## Daily Discoveries + +> [!NOTE] Anything relevant that was discovered on this day (i.e. new tools, technologies, code snippets, ideas, videos, podcasts, people, etc.) + +- `...` + +## Daily Tasks + +> [!TODO]- Todoist Tasks +> ```todoist +name: Highest Priority & Date +filter: "today & ##No Clocks" +sorting: + - priority +groupBy: project +``` + + +## Metadata & Links + +> [!META]- Metadata: +> - Year:: [[2024]] +> - Month:: [[2024 September]] +> - Quarter:: [[2024Q3]] +> - Week:: [[2024 396624 39]] + +> [!log] Created Notes Log: +> ```dataview +TABLE file.folder AS Folder +WHERE file.cday = date(this.file.name) AND file.name != (this.file.name) +SORT file.folder ASC, file.name ASC +``` + +> [!log] Modified Notes Log: +> ```dataview +TABLE file.folder AS Folder +WHERE file.mday = date(this.file.name) AND file.name != (this.file.name) +SORT file.mtime asc +``` + +*** + +## Appendix + +*Note created on [[2024-09-28]] and last modified on [[2024-09-28]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[2024-09-28]] AND -"CHANGELOG" AND -"03-AREAS/Journal/2024-09-28" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 + + + diff --git a/03-AREAS/Journal/2024-09-30.md b/03-AREAS/Journal/2024-09-30.md new file mode 100644 index 0000000..d349b48 --- /dev/null +++ b/03-AREAS/Journal/2024-09-30.md @@ -0,0 +1,105 @@ +--- +creation_date: 2024-09-30 +modification_date: 2024-09-30 +author: Jimmy Briggs +tags: + - Type/Journal/Daily + - Type/Journal + - Topic/Journal + - Topic/Journal/Daily + - Status/Ongoing +aliases: + - 2024-09-30 + - September 30th, 2024 + - Monday 30th September, 2024 +publish: true +permalink: areas/journal/daily/2024-09-30 +description: Daily Journal Note for 2024-09-30. +banner_icon: +banner: +cssclasses: + - daily +--- + + +# [[2024-09-30|Monday, September 30, 2024]] + +<< [[2024-09-29]] | [[2024-10-01]] >> + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Daily Journal + +> [!NOTE] Personalized daily activity logs. + +- `...` + +## Daily Discoveries + +> [!NOTE] Anything relevant that was discovered on this day (i.e. new tools, technologies, code snippets, ideas, videos, podcasts, people, etc.) + +- `...` + +## Daily Tasks + +> [!TODO]- Todoist Tasks +> ```todoist +name: Highest Priority & Date +filter: "today & ##No Clocks" +sorting: + - priority +groupBy: project +``` + + +## Metadata & Links + +> [!META]- Metadata: +> - Year:: [[2024]] +> - Month:: [[2024 September]] +> - Quarter:: [[2024Q3]] +> - Week:: [[2024 401124 40]] + +> [!log] Created Notes Log: +> ```dataview +TABLE file.folder AS Folder +WHERE file.cday = date(this.file.name) AND file.name != (this.file.name) +SORT file.folder ASC, file.name ASC +``` + +> [!log] Modified Notes Log: +> ```dataview +TABLE file.folder AS Folder +WHERE file.mday = date(this.file.name) AND file.name != (this.file.name) +SORT file.mtime asc +``` + +*** + +## Appendix + +*Note created on [[2024-09-30]] and last modified on [[2024-09-30]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[2024-09-30]] AND -"CHANGELOG" AND -"03-AREAS/Journal/2024-09-30" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 + + + diff --git a/03-AREAS/Journal/2024-10-02.md b/03-AREAS/Journal/2024-10-02.md new file mode 100644 index 0000000..8c1471b --- /dev/null +++ b/03-AREAS/Journal/2024-10-02.md @@ -0,0 +1,105 @@ +--- +creation_date: 2024-10-02 +modification_date: 2024-10-02 +author: Jimmy Briggs +tags: + - Type/Journal/Daily + - Type/Journal + - Topic/Journal + - Topic/Journal/Daily + - Status/Ongoing +aliases: + - 2024-10-02 + - October 2nd, 2024 + - Wednesday 2nd October, 2024 +publish: true +permalink: areas/journal/daily/2024-10-02 +description: Daily Journal Note for 2024-10-02. +banner_icon: +banner: +cssclasses: + - daily +--- + + +# [[2024-10-02|Wednesday, October 02, 2024]] + +<< [[2024-10-01]] | [[2024-10-03]] >> + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Daily Journal + +> [!NOTE] Personalized daily activity logs. + +- `...` + +## Daily Discoveries + +> [!NOTE] Anything relevant that was discovered on this day (i.e. new tools, technologies, code snippets, ideas, videos, podcasts, people, etc.) + +- `...` + +## Daily Tasks + +> [!TODO]- Todoist Tasks +> ```todoist +name: Highest Priority & Date +filter: "today & ##No Clocks" +sorting: + - priority +groupBy: project +``` + + +## Metadata & Links + +> [!META]- Metadata: +> - Year:: [[2024]] +> - Month:: [[2024 October]] +> - Quarter:: [[2024Q4]] +> - Week:: [[2024 403324 40]] + +> [!log] Created Notes Log: +> ```dataview +TABLE file.folder AS Folder +WHERE file.cday = date(this.file.name) AND file.name != (this.file.name) +SORT file.folder ASC, file.name ASC +``` + +> [!log] Modified Notes Log: +> ```dataview +TABLE file.folder AS Folder +WHERE file.mday = date(this.file.name) AND file.name != (this.file.name) +SORT file.mtime asc +``` + +*** + +## Appendix + +*Note created on [[2024-10-02]] and last modified on [[2024-10-02]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[2024-10-02]] AND -"CHANGELOG" AND -"03-AREAS/Journal/2024-10-02" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 + + + diff --git a/04-RESOURCES/Cheatsheets/Cheatsheet - Windows CPL and MSC Commands.md b/04-RESOURCES/Cheatsheets/Cheatsheet - Windows CPL and MSC Commands.md new file mode 100644 index 0000000..20df971 --- /dev/null +++ b/04-RESOURCES/Cheatsheets/Cheatsheet - Windows CPL and MSC Commands.md @@ -0,0 +1,90 @@ +--- +creation_date: 2024-10-02 +modification_date: 2024-10-02 +author: Jimmy Briggs +tags: + - Type/Guide + - Type/Cheatsheet + - Type/Code/CMD + - Topic/Dev + - Topic/Dev/Windows + - Topic/Dev/CMD + - Topic/Dev/PowerShell + - Status/WIP +aliases: + - Windows CPL and MSC Commands + - Windows CPL and MSC Commands Cheat Sheet + - Windows CPL and MSC Commands Guide +publish: true +permalink: +description: +image: +cssclasses: +--- + +# Windows CPL and MSC Commands Cheat Sheet + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Overview + +> [!SOURCE] Sources: +> - ** + +The [[../Tools/Tool - Microsoft Windows|Microsoft Windows]] operating system includes a variety of [[../Definitions/Acronyms/Control Panel (CPL)|Control Panel]] (`.cpl`) and [[../Definitions/Acronyms/Microsoft Management Console (MSC)|Microsoft Management Console]] (`.msc`) commands / shortcuts that allow users to quickly access various system settings and management interfaces. + +Here is a list of some commonly used `.cpl` and `.msc` shortcuts. + +## Control Panel (.cpl) Shortcut Commands + +- `appwiz.cpl`: Opens the Programs and Features window where you can uninstall programs. +- `desk.cpl`: Opens the Display settings. +- `inetcpl.cpl`: Opens Internet Properties, where you can change internet options. +- `main.cpl`: Opens the Mouse properties. +- `mmsys.cpl`: Opens the Sound settings. +- `ncpa.cpl`: Opens Network Connections where you can view and change network settings. +- `powercfg.cpl`: Opens Power Options to adjust power plans. +- `sysdm.cpl`: Opens System Properties, which shows basic information about your computer and provides access to system settings. +- `timedate.cpl`: Opens the Date and Time settings. + +## Microsoft Management Console (.msc) Shortcut Commands + +- `compmgmt.msc`: Opens the Computer Management Console, which includes tools like Device Manager, Disk Management, and Event Viewer. +- `devmgmt.msc`: Opens the Device Manager, where you can manage hardware devices. +- `diskmgmt.msc`: Opens Disk Management, where you can manage disk partitions. +- `eventvwr.msc`: Opens the Event Viewer, which displays system logs. +- `gpedit.msc`: Opens the Local Group Policy Editor (Note: not available in Windows Home editions). +- `lusrmgr.msc`: Opens the Local Users and Groups manager, where you can manage user accounts and groups (Note: not available in Windows Home editions). +- `services.msc`: Opens the Services console, where you can manage system services. +- `taskschd.msc`: Opens the Task Scheduler, where you can automate tasks. + +## Conclusion + +These shortcuts can be executed in several ways, including through the Run dialog box (which you can open by pressing `Win + R`), in the search box in the Start menu, or in the address bar of File Explorer. Remember, the availability of certain features might vary depending on your version of Windows, and some features might require administrative privileges to access. + +*** + +## Appendix + +*Note created on [[2024-10-02]] and last modified on [[2024-10-02]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[Cheatsheet - Windows CPL and MSC Commands]] AND -"CHANGELOG" AND -"04-RESOURCES/Cheatsheets/Cheatsheet - Windows CPL and MSC Commands" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 \ No newline at end of file diff --git a/04-RESOURCES/Code/PowerShell/PowerShell - Check for Non-Microsoft Signed Services.md b/04-RESOURCES/Code/PowerShell/PowerShell - Check for Non-Microsoft Signed Services.md index fcea649..93fbc0b 100644 --- a/04-RESOURCES/Code/PowerShell/PowerShell - Check for Non-Microsoft Signed Services.md +++ b/04-RESOURCES/Code/PowerShell/PowerShell - Check for Non-Microsoft Signed Services.md @@ -33,7 +33,7 @@ debugInConsole: false # Print debug info in Obsidian console ## Overview > [!SOURCE] Sources: -> - *[Powershellisfun/Check for non-Microsoft Signed Windows Services/Get-Non\_Microsoft\_Signed\_Services.ps1 at main · HarmVeenstra/Powershellisfun](https://github.com/HarmVeenstra/Powershellisfun/blob/main/Check%20for%20non-Microsoft%20Signed%20Windows%20Services/Get-Non_Microsoft_Signed_Services.ps1)* +> - *[Get-Non_Microsoft_Signed_Services.ps1 · HarmVeenstra/Powershellisfun](https://github.com/HarmVeenstra/Powershellisfun/blob/main/Check%20for%20non-Microsoft%20Signed%20Windows%20Services/Get-Non_Microsoft_Signed_Services.ps1)* ## Code Snippet diff --git a/04-RESOURCES/Code/PowerShell/PowerShell - Reset DNS Cache.md b/04-RESOURCES/Code/PowerShell/PowerShell - Reset DNS Cache.md new file mode 100644 index 0000000..8c9066a --- /dev/null +++ b/04-RESOURCES/Code/PowerShell/PowerShell - Reset DNS Cache.md @@ -0,0 +1,78 @@ +--- +creation_date: 2024-09-27 +modification_date: 2024-09-27 +author: Jimmy Briggs +tags: + - Type/Code + - Type/Code/PowerShell + - Topic/Dev + - Topic/Dev/Windows + - Topic/Dev/PowerShell + - Status/WIP +aliases: + - Reset DNS Cache + - Reset DNS Cache on Windows with PowerShell +publish: true +permalink: +description: +image: +cssclasses: + - code +--- + +# Reset DNS Cache on Windows with PowerShell + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Overview + +> [!SOURCE] Sources: +> - ** + +## Code Snippet + +```powershell +ipconfig /flushdns +nbtstat -R +nbtstat -RR +netsh int reset all +netsh int ip reset +netsh winsock reset +``` + +## Details + +> [!NOTE] About +> This note is about ... + +## See Also + +- [[04-RESOURCES/Code/PowerShell/_README|PowerShell Code]] +- [[MOC - PowerShell|PowerShell Map of Content]] + +*** + +## Appendix + +*Note created on [[2024-09-27]] and last modified on [[2024-09-27]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[PowerShell - Reset DNS Cache]] AND -"CHANGELOG" AND -"04-RESOURCES/Code/PowerShell/PowerShell - Reset DNS Cache" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 \ No newline at end of file diff --git a/04-RESOURCES/Code/PowerShell/_README.md b/04-RESOURCES/Code/PowerShell/_README.md index 12dd734..b7ba963 100644 --- a/04-RESOURCES/Code/PowerShell/_README.md +++ b/04-RESOURCES/Code/PowerShell/_README.md @@ -62,7 +62,7 @@ SORT file.name asc ### Backlinks ```dataview -LIST FROM [[_README]] AND -"CHANGELOG" AND -"04-RESOURCES/Code/PowerShell/_README" +LIST FROM [[_README]] AND -"CHANGELOG" AND -"04-RESOURCES/Code/PowerShell/_README" AND -"05-SYSTEM/" AND -"99-ARCHIVES/" ``` *** diff --git a/04-RESOURCES/Code/R/R - Retrieve a JWT from Auth0.md b/04-RESOURCES/Code/R/R - Retrieve a JWT from Auth0.md new file mode 100644 index 0000000..82db8c3 --- /dev/null +++ b/04-RESOURCES/Code/R/R - Retrieve a JWT from Auth0.md @@ -0,0 +1,78 @@ +--- +creation_date: 2024-10-01 +modification_date: 2024-10-01 +author: Jimmy Briggs +tags: + - Type/Code/R + - Topic/Dev/R + - Topic/Dev/Auth + - Status/WIP +aliases: + - Retrieve a JWT from Auth0 using R + - Auth0 JWT with R +publish: true +permalink: +description: +image: +cssclasses: + - code +--- + +# Auth0 JWT R Code + +> [!NOTE] +> Retrieve [[../../Definitions/Acronyms/JSON Web Token (JWT)|JSON Web Token (JWT)]] from [[Tool - Auth0|Auth0]] via [[../../Tools/Tool - R|R]] + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Overview + +> [!SOURCE] Sources: +> - ** + +## Code + +```R +#' Get a JSON Web Token from Auth0 +#' +#' @description +#' +``` + +## Details + +> [!NOTE] About +> This note is about ... + +## See Also + +- [[MOC - R|R Map of Content]] +- [[04-RESOURCES/Code/R/_README|R Code Index]] +- [[Tool - R|R Programming Language]] + +*** + +## Appendix + +*Note created on [[2024-10-01]] and last modified on [[2024-10-01]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[R - Retrieve a JWT from Auth0]] AND -"CHANGELOG" AND -"04-RESOURCES/Code/R/R - Retrieve a JWT from Auth0" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 \ No newline at end of file diff --git a/04-RESOURCES/Definitions/Acronyms/Client URL (cURL).md b/04-RESOURCES/Definitions/Acronyms/Client URL (cURL).md new file mode 100644 index 0000000..ced9911 --- /dev/null +++ b/04-RESOURCES/Definitions/Acronyms/Client URL (cURL).md @@ -0,0 +1,66 @@ +--- +creation_date: 2024-10-02 +modification_date: 2024-10-02 +author: Jimmy Briggs +tags: + - Type/Acronym + - Topic/Dev + - Topic/Dev/CMD + - Topic/Dev/CLI + - Topic/Dev/Networking + - Status/WIP +aliases: + - Client URL (cURL) + - cURL + - Client URL +publish: true +permalink: +description: +image: +cssclasses: +--- + +# Client URL (cURL) + +> [!SOURCE] Sources: +> - ** + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Overview + +> [!NOTE] About +> This note is about the `cURL` "acronym" which stands for "Client URL". + +`cURL` is a notorious and awesome [[Networking]] [[../../Lists/List - Command Line Tools|command line tool]] used to send [[Hypertext Transfer Protocol (HTTP)|HTTP]] requests to a server and fetch data from a [[Uniform Resource Loader (URL)|URL]]. + +## Resources + +*** + +## Appendix + +*Note created on [[2024-10-02]] and last modified on [[2024-10-02]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[Client URL (cURL)]] AND -"CHANGELOG" AND -"04-RESOURCES/Definitions/Acronyms/Client URL (cURL)" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 + + diff --git a/04-RESOURCES/Definitions/Acronyms/Control Panel (CPL).md b/04-RESOURCES/Definitions/Acronyms/Control Panel (CPL).md new file mode 100644 index 0000000..3d635d9 --- /dev/null +++ b/04-RESOURCES/Definitions/Acronyms/Control Panel (CPL).md @@ -0,0 +1,60 @@ +--- +creation_date: 2024-10-02 +modification_date: 2024-10-02 +author: Jimmy Briggs +tags: + - Type/Acronym + - Topic/Dev/Windows + - Status/WIP +aliases: + - Control Panel (CPL) + - CPL + - Control Panel +publish: true +permalink: +description: +image: +cssclasses: +--- + +# Control Panel (CPL) + +> [!SOURCE] Sources: +> - ** + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Overview + +On [[../../Tools/Tool - Microsoft Windows|Microsoft Windows]], the `.cpl` extension is used for *Control Panel*. + +See Also: [[../../Cheatsheets/Cheatsheet - Windows CPL and MSC Commands|Windows CPL and MSC Commands Cheat Sheet]] + +*** + +## Appendix + +*Note created on [[2024-10-02]] and last modified on [[2024-10-02]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[Control Panel (CPL)]] AND -"CHANGELOG" AND -"04-RESOURCES/Definitions/Acronyms/Control Panel (CPL)" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 + + diff --git a/04-RESOURCES/Definitions/Acronyms/End User Computing (EUC).md b/04-RESOURCES/Definitions/Acronyms/End User Computing (EUC).md new file mode 100644 index 0000000..bd0a991 --- /dev/null +++ b/04-RESOURCES/Definitions/Acronyms/End User Computing (EUC).md @@ -0,0 +1,62 @@ +--- +creation_date: 2024-10-02 +modification_date: 2024-10-02 +author: Jimmy Briggs +tags: + - Type/Acronym + - Topic/Dev + - Topic/Dev/Windows + - Status/WIP +aliases: + - End User Computing (EUC) + - EUC + - End User Computing +publish: true +permalink: +description: +image: +cssclasses: +--- + +# End User Computing (EUC) + +> [!SOURCE] Sources: +> - ** + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Overview + +> [!NOTE] About +> This note is about ... + +## Resources + +*** + +## Appendix + +*Note created on [[2024-10-02]] and last modified on [[2024-10-02]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[End User Computing (EUC)]] AND -"CHANGELOG" AND -"04-RESOURCES/Definitions/Acronyms/End User Computing (EUC)" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 + + diff --git a/04-RESOURCES/Definitions/Acronyms/Federal Information Processing Standard (FIPS).md b/04-RESOURCES/Definitions/Acronyms/Federal Information Processing Standard (FIPS).md new file mode 100644 index 0000000..8ec5f13 --- /dev/null +++ b/04-RESOURCES/Definitions/Acronyms/Federal Information Processing Standard (FIPS).md @@ -0,0 +1,62 @@ +--- +creation_date: 2024-10-01 +modification_date: 2024-10-01 +author: Jimmy Briggs +tags: + - Type/Acronym + - Topic/Dev + - Topic/Dev/Cryptography + - Status/WIP +aliases: + - Federal Information Processing Standard (FIPS) + - FIPS + - Federal Information Processing Standard +publish: true +permalink: +description: +image: +cssclasses: +--- + +# Federal Information Processing Standard (FIPS) + +> [!SOURCE] Sources: +> - *https://csrc.nist.gov/pubs/fips/140-2/upd2/final* + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Overview + +> [!NOTE] About +> This note is about ... + +## Resources + +*** + +## Appendix + +*Note created on [[2024-10-01]] and last modified on [[2024-10-01]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[Federal Information Processing Standard (FIPS)]] AND -"CHANGELOG" AND -"04-RESOURCES/Definitions/Acronyms/Federal Information Processing Standard (FIPS)" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 + + diff --git a/04-RESOURCES/Definitions/Acronyms/Microsoft Management Console (MSC).md b/04-RESOURCES/Definitions/Acronyms/Microsoft Management Console (MSC).md new file mode 100644 index 0000000..9441225 --- /dev/null +++ b/04-RESOURCES/Definitions/Acronyms/Microsoft Management Console (MSC).md @@ -0,0 +1,61 @@ +--- +creation_date: 2024-10-02 +modification_date: 2024-10-02 +author: Jimmy Briggs +tags: + - Type/Acronym + - Topic/Dev/Windows + - Status/WIP +aliases: + - Microsoft Management Console (MSC) + - MSC + - Microsoft Management Console +publish: true +permalink: +description: +image: +cssclasses: +--- + +# Microsoft Management Console (MSC) + +> [!SOURCE] Sources: +> - ** + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Overview + +> [!NOTE] About +> This note is about ... + +## Resources + +*** + +## Appendix + +*Note created on [[2024-10-02]] and last modified on [[2024-10-02]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[Microsoft Management Console (MSC)]] AND -"CHANGELOG" AND -"04-RESOURCES/Definitions/Acronyms/Microsoft Management Console (MSC)" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 + + diff --git a/04-RESOURCES/Definitions/Acronyms/Physical-to-Virtual (P2V).md b/04-RESOURCES/Definitions/Acronyms/Physical-to-Virtual (P2V).md new file mode 100644 index 0000000..293c8be --- /dev/null +++ b/04-RESOURCES/Definitions/Acronyms/Physical-to-Virtual (P2V).md @@ -0,0 +1,62 @@ +--- +creation_date: 2024-10-02 +modification_date: 2024-10-02 +author: Jimmy Briggs +tags: + - Type/Acronym + - Topic/Dev + - Topic/Dev/Cloud + - Status/WIP +aliases: + - Physical-to-Virtual (P2V) + - P2V + - Physical-to-Virtual +publish: true +permalink: +description: +image: +cssclasses: +--- + +# Physical-to-Virtual (P2V) + +> [!SOURCE] Sources: +> - ** + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Overview + +> [!NOTE] About +> This note is about ... + +## Resources + +*** + +## Appendix + +*Note created on [[2024-10-02]] and last modified on [[2024-10-02]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[Physical-to-Virtual (P2V)]] AND -"CHANGELOG" AND -"04-RESOURCES/Definitions/Acronyms/Physical-to-Virtual (P2V)" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 + + diff --git a/04-RESOURCES/Lists/List - Command Line Tools.md b/04-RESOURCES/Lists/List - Command Line Tools.md new file mode 100644 index 0000000..41db58c --- /dev/null +++ b/04-RESOURCES/Lists/List - Command Line Tools.md @@ -0,0 +1,209 @@ +--- +creation_date: 2024-09-28 +modification_date: 2024-09-28 +author: Jimmy Briggs +tags: + - Type/List + - Type/Tool + - Topic/Dev + - Topic/Dev/CLI + - Topic/Dev/Linux + - Topic/Dev/Windows + - Status/WIP +aliases: + - Command Line Tools + - Command Line Tools List +publish: true +permalink: +description: +image: +cssclasses: +--- + +# Command Line Tools List + +```table-of-contents +title: ## Contents +style: nestedList # TOC style (nestedList|inlineFirstLevel) +minLevel: 1 # Include headings from the specified level +maxLevel: 4 # Include headings up to the specified level +includeLinks: true # Make headings clickable +debugInConsole: false # Print debug info in Obsidian console +``` + +## Overview + +> [!SOURCE] Sources: +> - ** + +## List + +- `bat`: + - Use [[../Tools/Tool - bat|bat]] as a modern replacement for `cat` *with wings*. + - Repository: [sharkdp/bat: A cat(1) clone with wings. (github.com)](https://github.com/sharkdp/bat) +- `fd` + +- `gix` +- `dura` +- `delta` +- `git-cliff` +- `git-extensions` +- `gh` +- `gk` +- `tig` + +- `ripgrep` +- `fzf` + +- `exa` +- `lsd` +- `natls` + +- `nvm` +- `fnm` +- `Volta` + +- `just` + +- `topgrade` + +- `s-cli` + +- `hexyl` + +- `jq` +- `yq` + +- `zsh` +- `oh-my-zsh` +- `oh-my-posh` +- `powerlevel10k` +- `zsh-autosuggestions` +- `zsh-...` + +- `aider` +- `ai` +- `llm` + +- `asciinema` + +- `Zellij` + +- `zoxide` +- `z` + +- `snips` + +- `legit` +- `mklicense` +- `rebound` +- `foy` +- `bcal` +- `bitwise` +- `grex` +- `iola` +- `add-gitignore` +- `is-up-cli` +- `reachable` +- `loadtest` +- `diff2html-cli` +- `speedtest-cli` + +- `nvim` + +- `surge` + +- `pgcli` +- `mycli` +- `sqlline` +- `iredis` +- `usql` + +- `azure-cli` +- `aztfexport` +- `azd` +- + +- `aws-cli` +- `SAWS` +- `s3cmd` +- `` + +- `htconvert` +- `flog` +- `PingMe` +- `updatecli` + +- `lscli` +- `dockly` +- `lazydocker` +- `docker-pushrm` + +- `release-it` +- `GitVersion` +- `clog` +- `git-cliff` +- `release` +- `np` +- `semantic-release` + +- `npm` +- `pnpm` +- `npx` +- `bun` +- `updates` +- `wipe-modules` + +- `yo` +- `boilr` +- `cookiecutter` +- `mevn-cli` +- `scaffold-static` + +- `pip` +- `pipx` +- `venv` +- `poetry` + +- `serve` +- `simplehttp` +- `shell2http` +- `HTTPie` +- `HTTP Prompt` +- `ain` +- `curlie` + +- `doing` + +- `tldr` +- `cheat.sh` +- `devdocs` + +- `ffsend` + +- `obs`: [[../../03-AREAS/Obsidian/_README|Obsidian]] CLI + + + + +## Conclusion + +*** + +## Appendix + +*Note created on [[2024-09-28]] and last modified on [[2024-09-28]].* + +### See Also + +- + +### Backlinks + +```dataview +LIST FROM [[List - Command Line Tools]] AND -"CHANGELOG" AND -"04-RESOURCES/Lists/List - Command Line Tools" +``` + +*** + +(c) [No Clocks, LLC](https://github.com/noclocks) | 2024 diff --git a/05-SYSTEM/Documents/PDFs/RShiny-CardBasedDesign.pdf b/05-SYSTEM/Documents/PDFs/RShiny-CardBasedDesign.pdf new file mode 100644 index 0000000..3abfcdd Binary files /dev/null and b/05-SYSTEM/Documents/PDFs/RShiny-CardBasedDesign.pdf differ