Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of Qiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 05:55, 13 January 2026 Ryan talk contribs created page TypeScript 5.9 Study Guide (for JavaScript, Node.js, and React developers) (Created page with "<span id="typescript-5.9-study-guide-for-javascript-node.js-and-react-developers"></span> = TypeScript 5.9 Study Guide (for JavaScript, Node.js, and React developers) = '''Last verified:''' 2026-01-13 '''Latest stable release line shown on the TypeScript site:''' '''TypeScript 5.9''' ([https://www.typescriptlang.org/ TypeScript]) '''Latest patch listed on GitHub releases:''' '''5.9.3''' ([https://github.com/Microsoft/TypeScript/releases GitHub]) '''TypeScript 5.9 announ...")
- 01:49, 13 January 2026 Ryan talk contribs created page Full MUI AppShell (React 19 + MUI v7) — Complete Example (Created page with "<span id="full-mui-appshell-react-19-mui-v7-complete-example"></span> = Full MUI AppShell (React 19 + MUI v7) — Complete Example = This document walks you from '''zero → running app''' with a production-grade '''AppShell''': * '''Fixed AppBar''' (top) * '''Responsive Drawer navigation''' ** <code>temporary</code> Drawer on small screens (hamburger menu) ** <code>permanent</code> Drawer on desktop * '''Route-based content area''' (React Router) * '''Light/Dark/Syste...")
- 07:25, 7 January 2026 Ryan talk contribs created page Diffable Data Sources in UIKit (UITableView + UICollectionView) — Modern Swift (2026) (Created page with "<span id="diffable-data-sources-in-uikit-uitableview-uicollectionview-modern-swift-2026"></span> = Diffable Data Sources in UIKit (UITableView + UICollectionView) — Modern Swift (2026) = Diffable Data Sources let you drive <code>UITableView</code> and <code>UICollectionView</code> from ''snapshots'' (a declarative “this is what the UI should show right now” state) instead of manually coordinating <code>insertRows</code>, <code>deleteItems</code>, <code>performBatc...")
- 04:25, 1 January 2026 Ryan talk contribs created page System-Style SwiftUI Views Cheat Sheet (Created page with " <span id="system-style-swiftui-views-cheat-sheet"></span> = System-Style SwiftUI Views Cheat Sheet = This document focuses on '''ready-made, opinionated system views''' you can drop in to get platform‑native UI with minimal code — similar in spirit to <code>ContentUnavailableView</code>. ----- <span id="contentunavailableview-empty-error-states"></span> == 1. <code>ContentUnavailableView</code> – Empty & Error States == '''Availability:''' iOS 17+, macOS...")
- 03:56, 1 January 2026 Ryan talk contribs created page FileManager.SearchPathDirectory (Swift / Foundation) (Created page with "<span id="filemanager.searchpathdirectory-swift-foundation"></span> = <code>FileManager.SearchPathDirectory</code> (Swift / Foundation) = <code>FileManager.SearchPathDirectory</code> is an enum that identifies “well-known” directory locations. You typically use it with: * <code>FileManager.default.urls(for:in:)</code> to ''locate'' common directories. :contentReference<span index="0">oaicite:0</span><br /> * <code>FileManager.default.url(for:in:appropriateFor:crea...")
- 15:03, 31 December 2025 Ryan talk contribs created page Firebase for Your iOS App (with a Python/FastAPI Backend) (Created page with "<span id="firebase-for-your-ios-app-with-a-pythonfastapi-backend"></span> = Firebase for Your iOS App (with a Python/FastAPI Backend) = This document gives you a practical, end‑to‑end overview of using '''Firebase as the backend''' for an iOS app, with special focus on: * Creating a '''login system''' using Firebase Authentication * Storing and using '''many user‑generated files''' * Using a '''Python (FastAPI) backend''' together with Firebase ----- <span id=...")
- 09:40, 31 December 2025 Ryan talk contribs moved page How to Extract Only the Audio from a Video on iOS to Extracting Only the Audio from a Video on iOS (Swift)
- 09:17, 31 December 2025 Ryan talk contribs created page How to Extract Only the Audio from a Video on iOS (Created page with "<span id="how-to-extract-only-the-audio-from-a-video-on-ios"></span> = How to Extract Only the Audio from a Video on iOS = This guide shows you '''how to turn a video into an audio file (like .m4a)''' directly on your iPhone or iPad. You’ll learn: # How to do it '''using only built‑in iOS apps''' (Shortcuts + Files) # (Optional) How to do it with a '''third‑party app''' from the App Store ----- <span id="extract-audio-using-only-builtin-apps-shortcuts"></span...")
- 08:57, 31 December 2025 Ryan talk contribs created page Single end-to-end iOS Swift example (Firebase ID token → presign → S3 PUT → Firestore doc) (Created page with "<span id="single-end-to-end-ios-swift-example-firebase-id-token-presign-s3-put-firestore-doc"></span> == Single end-to-end iOS Swift example (Firebase ID token → presign → S3 PUT → Firestore doc) == This example does exactly these steps: # '''Get Firebase ID token''' from the currently signed-in user # '''Call your FastAPI''' <code>POST /v1/uploads/presign</code> with <code>Authorization: Bearer <token></code> # '''Upload bytes to S3''' with <code>URLSessio...")
- 08:55, 31 December 2025 Ryan talk contribs created page Fully integrated: Dockerized FastAPI + Firebase Auth + Firestore + S3 (Cloud Run '''or''' ECS/Fargate) (Created page with " <span id="what-fully-integrated-means-here"></span> === What “fully integrated” means here === You’ll have: * '''iOS app''' using '''Firebase Authentication''' for login. * A '''Python (FastAPI) backend''' that: ** verifies Firebase '''ID tokens''' (so every request is tied to a real user) ** reads/writes '''Firestore''' (your “source of truth” for app data) ** issues '''S3 presigned URLs''' (so the app uploads/downloads files ''directly'' to/from S3 without...")
- 08:53, 31 December 2025 Ryan talk contribs created page Deep dives and “my preferred way to implement it (Created page with " <span id="end-to-end-design-firebase-auth-firestore-metadata-s3-file-bytes-fastapi"></span> = End-to-end design: Firebase Auth + Firestore metadata + S3 file bytes + FastAPI = This is the pattern I recommend when you want to keep Firebase as your identity + app-data layer, but you already have S3 or you want AWS-native file pipelines. The core building block is '''S3 presigned URLs''': they grant '''time-limited''' upload/download access to a specific object without g...")
- 08:51, 31 December 2025 Ryan talk contribs created page Opinionated add-ons: how I’d build this in the real world (Created page with " <span id="my-default-architecture-recommendation"></span> = 1) My default architecture recommendation = If your goal is to ship a solid iOS app quickly and keep complexity low: <span id="my-default-stack"></span> === My “default stack” === * '''Firebase Auth''' for identity * '''Cloud Firestore''' for app data * '''Firebase Storage''' for files ''unless you already have S3 or must be on AWS'' * '''Cloud Functions''' for small server-side glue * '''FastAPI''' only...")
- 08:41, 31 December 2025 Ryan talk contribs created page Firebase for an iOS App Backend (with Auth, AWS S3 files, and an optional Python/FastAPI API) (Created page with "<span id="firebase-for-an-ios-app-backend-with-auth-aws-s3-files-and-an-optional-pythonfastapi-api"></span> = Firebase for an iOS App Backend (with Auth, AWS S3 files, and an optional Python/FastAPI API) = This document explains how to use '''Firebase''' as the backend for an '''iOS (Swift/SwiftUI) app''', how to build a '''login system with Firebase Authentication''', how to work with '''files stored in AWS S3''', and how to add a '''Python backend (e.g., FastAPI)''' a...")
- 03:56, 21 December 2025 Ryan talk contribs created page AWS Elastic Beanstalk (EB) — Practical Guide for Deploying Python APIs (FastAPI included) (Created page with "<span id="aws-elastic-beanstalk-eb-practical-guide-for-deploying-python-apis-fastapi-included"></span> = AWS Elastic Beanstalk (EB) — Practical Guide for Deploying Python APIs (FastAPI included) = <span id="what-elastic-beanstalk-is"></span> == What Elastic Beanstalk is == AWS Elastic Beanstalk is a managed service that helps you '''deploy, run, and scale''' applications on AWS by handling a lot of the “glue work” (provisioning, configuration, health monitoring,...")
- 05:16, 15 December 2025 Ryan talk contribs created page Apple Developer “Identifiers” and App Groups (for iOS devs) (Created page with "<span id="apple-developer-identifiers-and-app-groups-for-ios-devs"></span> == Apple Developer “Identifiers” and App Groups (for iOS devs) == This is a practical overview of what '''Identifiers''' are in the Apple Developer portal and, in particular, '''what App Groups are and why you need them'''. ----- <span id="where-identifiers-fit-in-big-picture"></span> == 1. Where “Identifiers” fit in (big picture) == On developer.apple.com, under '''Certificates, Iden...")
- 10:21, 21 November 2025 Ryan talk contribs created page A Practical Guide to 'nonisolated' in Swift Concurrency (Created page with "<span id="a-practical-guide-to-nonisolated-in-swift-concurrency"></span> = A Practical Guide to <code>nonisolated</code> in Swift Concurrency = Swift’s concurrency model leans heavily on ''isolation''—especially '''actor isolation'''—to prevent data races. The <code>nonisolated</code> modifier is a precision tool that lets you selectively ''opt out'' of that isolation for specific members, so you can call them without hopping to the actor’s executor (and thus wi...")
- 12:59, 16 November 2025 Ryan talk contribs moved page Swift "@result Builder" — A Comprehensive Guide With Many Examples (2025) to Swift "@resultBuilder" — A Comprehensive Guide With Many Examples (2025)
- 06:49, 16 November 2025 Ryan talk contribs created page Swift "@result Builder" — A Comprehensive Guide With Many Examples (2025) (Created page with "<span id="swift-resultbuilder-a-comprehensive-guide-2025"></span> = Swift <code>@resultBuilder</code> — a comprehensive guide (2025) = <blockquote>A practical, copy‑pasteable handbook to designing, implementing, and using result builders to create expressive DSLs. </blockquote> ----- <span id="tldr"></span> == 0) TL;DR == * <code>@resultBuilder</code> lets you '''turn a multi‑statement closure into a single value''' at compile time. * You write a builder type (...")
- 06:07, 16 November 2025 Ryan talk contribs created page SwiftUI "@ViewBuilder" — a comprehensive guide (2025) (Created page with "<span id="swiftui-viewbuilder-a-comprehensive-guide-2025"></span> = SwiftUI <code>@ViewBuilder</code> — a comprehensive guide (2025) = <blockquote>Learn the mental model, API surface, best practices, and pitfalls of <code>@ViewBuilder</code> with many copy‑pasteable examples. </blockquote> ----- <span id="tldr"></span> == TL;DR == * <code>@ViewBuilder</code> is SwiftUI’s '''result builder''' for producing <code>View</code> hierarchies from declarative, multi‑...")
- 15:33, 13 November 2025 Ryan talk contribs created page Swift Macros in 2025: A Practical Guide (Created page with "<span id="swift-macros-in-2025-a-practical-guide"></span> = Swift Macros in 2025: A Practical Guide = <blockquote>Updated for '''Swift 6.2''' (released Sep 15, 2025). If you’re on Swift 5.9+ the fundamentals are the same; Swift 6.x added polish and tooling, not a new macro model. ([https://www.swift.org/blog/swift-6.2-released/?utm_source=chatgpt.com Swift.org]) </blockquote> ----- <span id="table-of-contents"></span> == Table of contents == * #1-what-are-macros-...")
- 13:18, 13 November 2025 Ryan talk contribs created page Unified Logging System (ULS) for Swift Developers — A Production‑Grade Guide (iOS & macOS) (Created page with "<span id="unified-logging-system-uls-for-swift-developers-a-productiongrade-guide-ios-macos"></span> = 🧰 Unified Logging System (ULS) for Swift Developers — A Production‑Grade Guide (iOS & macOS) = <blockquote>'''Scope:''' This guide focuses on Apple’s '''modern Swift <code>Logger</code> API''' in the <code>OSLog</code> framework. We’ll cover structured logging, signposts for performance, privacy, Console/Xcode/CLI workflows, plus integration patterns for...")
- 03:59, 5 November 2025 Ryan talk contribs created page Swift Logging for iOS & macOS — A Practical Guide (Created page with "<span id="swift-logging-for-ios-macos-a-practical-guide"></span> = Swift Logging for iOS & macOS — A Practical Guide = <blockquote>'''TL;DR (recommendations)''' * Use Apple’s '''unified logging''' (<code>Logger</code> from <code>OSLog</code>) for app diagnostics. Prefer level‑appropriate calls (<code>.debug</code>, <code>.info</code>, <code>.notice</code>, <code>.error</code>, <code>.fault</code>). ([https://developer.apple.com/documentation/os/logging?utm_so...")
- 08:13, 4 November 2025 Ryan talk contribs created page Diagnosing Performance Issues in iOS Apps (Created page with "<span id="diagnosing-performance-issues-in-ios-apps"></span> = Diagnosing Performance Issues in iOS Apps = <span id="introduction"></span> === 1) Introduction === Great performance directly affects '''user satisfaction''', '''retention''', '''ratings''', and even '''App Store success'''. Apple’s tooling makes it possible to quantify performance, catch regressions, and turn “it feels slow” into actionable timelines and call trees. Apple’s guidance also emphasize...")
- 07:27, 1 November 2025 Ryan talk contribs created page Swift + Xcode Library: Build, Document & Share (Step-by-Step) (Created page with "<span id="swift-xcode-library-build-document-share-step-by-step"></span> = Swift + Xcode Library: Build, Document & Share (Step-by-Step) = <span id="what-youll-build"></span> == What you’ll build == * A Swift '''package''' (the standard way to make libraries). * It works in Xcode (iOS, macOS, tvOS, watchOS). * It has tests, documentation, CI (optional), and versioned releases. * You’ll share it via '''Swift Package Manager (SPM)'''. (Optional: CocoaPods + XCFra...")
- 07:24, 1 November 2025 Ryan talk contribs deleted page Building Cross-Platform Swift Utility Libraries with Swift Package Manager (content was: "<span id="building-cross-platform-swift-utility-libraries-with-swift-package-manager"></span> = Building Cross-Platform Swift Utility Libraries with Swift Package Manager = '''Swift Package Manager has emerged as the definitive solution for creating reusable code across Apple’s entire ecosystem.''' As of 2024-2025, SPM is deeply integrated into Xcode 15+ and supports all Apple platf...", and the only contributor was "Ryan" (talk))
- 07:22, 1 November 2025 Ryan talk contribs created page Swift Sendable: a practical, step‑by‑step guide (2025) (Created page with "<span id="swift-sendable-a-practical-stepbystep-guide-2025"></span> = Swift <code>Sendable</code>: a practical, step‑by‑step guide (2025) = <blockquote><code>Sendable</code> tells the Swift compiler ''“this value is safe to share across concurrent code (different tasks/actors) without data races.”'' It’s a compile‑time safety net. ([https://www.swift.org/migration/documentation/swift-6-concurrency-migration-guide/dataracesafety/?utm_source=chatgpt.com Swift....")
- 07:21, 1 November 2025 Ryan talk contribs deleted page Swift's Sendable Protocol: Complete Technical Guide (content was: "<span id="swifts-sendable-protocol-complete-technical-guide"></span> = Swift’s Sendable Protocol: Complete Technical Guide = '''Swift’s Sendable protocol eliminates data races at compile time'''—a marker protocol introduced in Swift 5.5 that indicates types can safely transfer across concurrency boundaries without introducing race conditions. By November 2025, Sendable has evolv...", and the only contributor was "Ryan" (talk))
- 06:23, 1 November 2025 Ryan talk contribs created page Swift's Sendable Protocol: Complete Technical Guide (Created page with "<span id="swifts-sendable-protocol-complete-technical-guide"></span> = Swift’s Sendable Protocol: Complete Technical Guide = '''Swift’s Sendable protocol eliminates data races at compile time'''—a marker protocol introduced in Swift 5.5 that indicates types can safely transfer across concurrency boundaries without introducing race conditions. By November 2025, Sendable has evolved into a sophisticated system with region-based isolation in Swift 6.0, making concurr...")
- 04:20, 1 November 2025 Ryan talk contribs created page Building Cross-Platform Swift Utility Libraries with Swift Package Manager (Created page with "<span id="building-cross-platform-swift-utility-libraries-with-swift-package-manager"></span> = Building Cross-Platform Swift Utility Libraries with Swift Package Manager = '''Swift Package Manager has emerged as the definitive solution for creating reusable code across Apple’s entire ecosystem.''' As of 2024-2025, SPM is deeply integrated into Xcode 15+ and supports all Apple platforms plus Linux and Windows, with first-class DocC documentation, automated CI/CD workf...")
- 05:54, 18 October 2025 Ryan talk contribs moved page Show Today’s Date with Apple Shortcuts (macOS) to How to Create a macOS Shortcut to Instantly Insert Today’s Date Anywhere
- 15:39, 16 October 2025 Ryan talk contribs created page The SwiftUI Observation Guide: @Observable, @Bindable, and Friends (2025 Edition) (Created page with "<span id="the-swiftui-observation-guide-observable-bindable-and-friends-2025-edition"></span> = The SwiftUI Observation Guide: <code>@Observable</code>, <code>@Bindable</code>, and Friends (2025 Edition) = '''Tested with:''' * '''Xcode:''' 26.0.1 (17A400) * '''Swift:''' 6.2 '''Minimum platforms for Observation APIs:''' iOS 17.0+, iPadOS 17.0+, macOS 14.0+, tvOS 17.0+, watchOS 10.0+, visionOS 1.0+. ([https://developer.apple.com/news/releases/?id=09222025m&utm_source=ch...")
- 13:33, 16 October 2025 Ryan talk contribs created page Media Playback Programming for iOS & macOS (Step-by-Step, with runnable code) (Created page with "<span id="media-playback-programming-for-ios-macos-step-by-step-with-runnable-code"></span> = Media Playback Programming for iOS & macOS (Step-by-Step, with runnable code) = '''Version banner (verified):''' '''Tested with Swift 6.2, Xcode 26.0.1''', minimum targets '''iOS 17 / iPadOS 17, macOS 14''' (to use SwiftUI '''<code>@Observable</code>''' and the modern SwiftUI/AVKit stack). Generated '''Oct 16, 2025 (Asia/Seoul)'''. * Apple confirms '''Xcode 26.0.1''' and t...")
- 04:46, 15 October 2025 Ryan talk contribs created page Show Today’s Date with Apple Shortcuts (macOS) (Created page with "<span id="show-todays-date-with-apple-shortcuts-macos"></span> = Show Today’s Date with Apple Shortcuts (macOS) = '''Overview:''' We’ll build a simple shortcut that gets today’s date, formats it, then shows it as a notification, copies it to the clipboard, and pops up an alert. <span id="steps"></span> == Steps == # Open '''Shortcuts''' on your Mac. # In the left sidebar, click '''All Shortcuts'''. # Click the '''+''' button (top-right) to create a new shortcut....")
- 10:59, 14 October 2025 Ryan talk contribs created page Copyable vs Noncopyable in Swift — A Friendly, Step‑by‑Step Guide (Created page with "<span id="copyable-vs-noncopyable-in-swift-a-friendly-stepbystep-guide"></span> = Copyable vs Noncopyable in Swift — A Friendly, Step‑by‑Step Guide = <span id="table-of-contents"></span> == Table of Contents == # '''Big Picture (Why this matters)''' # '''What “copying” means in Swift''' 2.1 Value types (struct/enum) 2.2 Reference types (class) 2.3 Implicit copies vs explicit copies # '''<code>Copyable</code> and <code>~Copyable</code> (noncopyable)''' 3.1 The...")
- 13:49, 11 October 2025 Ryan talk contribs created page Git Sparse-Checkout — A Friendly Guide (with --cone vs non-cone) (Created page with "<span id="introduction"></span> = 1) Introduction = '''What is sparse-checkout?''' Sparse-checkout lets you '''check out only part of a repository''' to your working directory. You still have the full commit history locally, but you only download or materialize certain folders/files to save time and disk space. '''Why use it?''' * Large/monorepos: You don’t need everything. * Faster operations: Less to index, build, and search. * Clear focus: Only the folders you ca...")
- 13:35, 11 October 2025 Ryan talk contribs created page Building and Shipping a Safari Web Extension on macOS (Manifest V3, 2025 Edition): A Complete Step-by-Step Guide (Created page with " <span id="quick-overview"></span> = 1) Quick overview = <blockquote>Quick version notes (today) * '''Manifest V3 is supported in Safari''' (initially from Safari '''15.4+''') and remains supported in current Safari. ([https://webkit.org/blog/12445/new-webkit-features-in-safari-15-4/?utm_source=chatgpt.com WebKit]) * Latest '''Xcode''' release (stable): '''Xcode 26 (17A324)''' (Apple’s official releases page). * Use the latest '''macOS''' and '''Safari''' available i...")
- 10:48, 10 October 2025 Ryan talk contribs created page Codex‑CLI Power User Guide (2025) (Created page with "<span id="codexcli-power-user-guide-2025"></span> = Codex‑CLI Power User Guide (2025) = <span id="what-is-codexcli"></span> == 1) What is Codex‑CLI? == Codex‑CLI is a '''local coding agent''' you run from your terminal. It can '''read files''', '''edit code''', and '''run commands''' in the directory you choose. You talk to it with plain English (and even attach screenshots). It plans, makes diffs, runs tests, and iterates — like a teammate who works directly i...")
- 12:00, 7 October 2025 Ryan talk contribs created page Monorepo Management with Git – Best Practices and Workflows (Created page with "<span id="monorepo-management-with-git-best-practices-and-workflows"></span> = Monorepo Management with Git – Best Practices and '''Workflows''' = <span id="introduction"></span> == 1) Introduction == '''What is a monorepo?''' A ''monorepo'' is a single Git repository that stores many projects (apps, services, libraries, tools) together. Example: <code>apps/web</code>, <code>apps/mobile</code>, <code>libs/ui</code>, <code>libs/auth</code>, <code>infra/terraform</code...")
- 08:13, 7 October 2025 Ryan talk contribs created page Bazel in a Monorepo — A Practical, Copy‑Ready Guide (Created page with "<span id="bazel-in-a-monorepo-a-practical-copyready-guide"></span> = Bazel in a Monorepo — A Practical, Copy‑Ready Guide = <blockquote>You already know build tools like Gradle, npm, or Make. This guide shows you '''how to use Bazel effectively in a real monorepo'''. We keep the language simple, give short examples, and end each section with a quick '''Takeaway'''. </blockquote> ----- <span id="introduction-to-bazel"></span> == 1) Introduction to Bazel == '''What...")
- 13:50, 6 October 2025 Ryan talk contribs created page File:Dd.jpg
- 13:50, 6 October 2025 Ryan talk contribs uploaded File:Dd.jpg
- 13:41, 6 October 2025 Ryan talk contribs created page File:Images.png
- 13:41, 6 October 2025 Ryan talk contribs uploaded File:Images.png
- 10:03, 5 October 2025 Ryan talk contribs moved page Thanksgiving Day (October 4, 2025) to Thanksgiving Day (October 5, 2025)
- 10:02, 5 October 2025 Ryan talk contribs moved page Thanksgiving Day 2025 to Thanksgiving Day (October 4, 2025)
- 08:15, 5 October 2025 Ryan talk contribs created page Thanksgiving Day 2025 (Created page with "..")
- 08:14, 5 October 2025 Ryan talk contribs created page Today, I Did This (Created page with "* Thanksgiving Day 2025")
- 00:10, 3 October 2025 Ryan talk contribs created page Mermaid Flowcharts (with UML Meanings) (Created page with "<span id="mermaid-flowcharts-with-uml-meanings"></span> = Mermaid Flowcharts (with UML Meanings) = '''Beginner‑friendly guide with short explanations and many examples.''' ----- <span id="what-is-mermaid-flowchart"></span> == 1) What is Mermaid Flowchart? == A '''flowchart''' is a diagram made of '''nodes''' (shapes with text) connected by '''edges''' (lines/arrows). Mermaid lets you write text that renders into a diagram. '''Mermaid Flowchart ≠ UML''': Mermaid...")
- 14:34, 2 October 2025 Ryan talk contribs created page Mermaid Sequence Diagrams: Syntax, UML Meaning, and Best Practices (Created page with "<span id="introduction"></span> == 1) Introduction == '''What is a sequence diagram?''' A sequence diagram shows '''how things talk to each other over time'''. Each “thing” (a person, system, service, object) is drawn as a '''lifeline'''. Messages (arrows) go back and forth to show the order of actions. In UML, sequence diagrams are a kind of '''interaction diagram'''. '''Why use Mermaid?''' Mermaid lets you write diagrams as '''text'''. This is great for code revi...")
- 01:17, 30 September 2025 Ryan talk contribs created page Adding Custom Commands in Git (Created page with "<span id="adding-custom-commands-in-git"></span> = Adding Custom Commands in Git = Git is flexible and allows you to extend its functionality. You can add your own custom commands in two main ways: '''aliases''' and '''custom scripts'''. ----- <span id="git-aliases"></span> == 1. Git Aliases == Aliases are shortcuts that let you run common Git commands faster or create combinations of options. <span id="example-simple-alias"></span> === Example: Simple Alias === <...")