This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import OSLog | |
| import XPC | |
| /// Executes an asynchronous end-to-end XPC round‑trip against the bundled XPC service | |
| /// to validate connectivity, code‑signing requirements, request/response encoding, | |
| /// and basic message handling. | |
| /// | |
| /// The function: | |
| /// - Creates an `XPCSession` targeting the XPC service with bundle identifier | |
| /// `io.polyium.dx.XPT`. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # -*- Coding: UTF-8 -*- # | |
| # -*- System: Linux -*- # | |
| # -*- Usage: *.* -*- # | |
| # | |
| # Shellcheck Ignore List | |
| # | |
| # shellcheck disable=SC1073 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Combine | |
| import OSLog | |
| import Persistables | |
| import SwiftData | |
| import SwiftUI | |
| extension Tags { | |
| public enum Views {} | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // Prose.swift | |
| // Swift-Predicates | |
| // | |
| // Created by Segmentational on 9/28/25. | |
| // | |
| import Foundation | |
| /// A predicate-based expression. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type(scope): description | |
| # <Type>(<Optional-Scope>): <Description> | |
| # | |
| # Body - Present Tense (e.g. "change", not "changed" || "changes") | |
| # | |
| # Footer - Issue Reference, Breaking Change, Additional Contributors, Commit SHA(s) | |
| # Type Reference | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Customizations | |
| .idea | |
| ### Languages - https://github.com/github/gitignore | |
| ## Swift | |
| # Xcode | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # -*- Coding: UTF-8 -*- # | |
| # -*- System: Linux -*- # | |
| # -*- Usage: *.* -*- # | |
| # | |
| # General Bash Template | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # -*- Coding: UTF-8 -*- # | |
| # -*- System: Linux -*- # | |
| # -*- Usage: *.* -*- # | |
| # | |
| # Advanced Bash Example | |
| # | |
| # Script makes use of the following concepts: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import argparse | |
| import glob | |
| import json | |
| import logging | |
| import os | |
| import pathlib | |
| import shlex | |
| import shutil |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ==================================================================================== | |
| # Project Specific Globals | |
| # ------------------------------------------------------------------------------------ | |
| # | |
| # - It's assumed the $(name) is the same literal as the compiled binary or executable. | |
| # - Override the defaults if not available in a pipeline's environment variables. | |
| # | |
| # - Default GitHub environment variables: https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/store-information-in-variables#default-environment-variables | |
| # |
NewerOlder