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 | |
| # |
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
| --- | |
| repos: | |
| - repo: "https://github.com/pre-commit/pre-commit-hooks" | |
| rev: "v4.6.0" | |
| hooks: | |
| - id: check-added-large-files | |
| - id: check-case-conflict | |
| - id: check-merge-conflict | |
| - id: check-executables-have-shebangs | |
| - id: check-json |
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
| function unset-aws-environment-variables() { | |
| unset AWS_ACCESS_KEY_ID | |
| unset AWS_SECRET_ACCESS_KEY | |
| unset AWS_SESSION_TOKEN | |
| unset AWS_PROFILE | |
| unset AWS_DEFAULT_PROFILE | |
| } |
NewerOlder