u/loudowls_corp

We built a free macOS app that shows you every network request your iOS app makes no proxy, no certificates
▲ 6 r/u_loudowls_corp+1 crossposts

We built a free macOS app that shows you every network request your iOS app makes no proxy, no certificates

Every time I set up a new machine or wiped a simulator, I lost 20 minutes to

proxy certs and trust settings just to see a JSON response. So I built Owlse.

It's a Mac app. You add a Swift Package to your iOS/macOS project, and every

request your app makes streams to your Mac live over Bonjour. No proxy, no

certificate installation, no traffic leaving your machine.

**What's in it**

- Live streaming per device — history survives disconnects, and you can pause

or resume a stream without losing what's already captured

- Full request inspector: Overview, Headers (incl. cookies), Body, Timing, cURL

- Timing breakdown per phase — DNS, TCP, TLS, wait, download — plus protocol

and TLS cipher

- Timeline waterfall, so you can spot serialised chains when a screen feels

slow but no single request looks bad

- WebSocket frames grouped by connection, JSON pretty-printed

- Side-by-side compare that highlights which headers differ between two requests

- Mocks — write a rule (or build one from a captured request) and push it to

every connected device

- Crash reporting — on by default, symbolicated, sent on next launch

- Full-text search across headers *and* response bodies

- HAR export, so you can hand a capture to your backend team

**Setup**

Add the package, drop two keys in your Info.plist, done:

https://github.com/debuging-life/owlse

Free, macOS 13+, Universal and Apple Silicon builds.

Download: https://www.loudowls.com/products/owlse

u/loudowls_corp — 2 days ago
▲ 2 r/u_loudowls_corp+1 crossposts

Advanced ToastUI for SwiftUI

A powerful notification system for SwiftUI with toasts, progress overlays, and dialogs - built with modern Swift concurrency and environment-based API.

Toast Notifications

  • Simple API - JustEnvironment(\.toast) var toast
  • 6 Toast Types - Success, Error, Warning, Info, Progress, Glass Effect
  • Glass Effect - Beautiful translucent glass toast (iOS 26+, auto-fallback to regular material)
  • 3 Alignments - Top, Center, Bottom
  • Custom Icons - Use any SwiftUI View as icon
  • Custom Colors - Brand your toasts
  • Copy to Clipboard - One-tap copy for errors
  • Multiple Toasts - Stack with depth effect
  • Smart Auto-dismiss - Proper timer management

Progress Overlay

  • Independent System - Separate from toasts for full-screen progress indication
  • Highly Customizable - Control size, colors, position, and style
  • Multiple Positions - Top, Center, Bottom, or Custom coordinates
  • Glass Effect Support - Beautiful translucent glass overlay (iOS 26+)
  • Custom Views - Pass your own SwiftUI views for complete control
  • Blocking/Non-blocking - Choose whether to block user interaction
  • Clear Background - Option for transparent background showing only content
  • Dismissible - Optional close button for user dismissal

Swift Package Manager

  1. In Xcode: File → Add Package Dependencies
  2. Enter: https://github.com/debuging-life/ToastUI.git

​

import SwiftUI
import ToastUI

@main
struct YourApp: App {
    var body: some Scene {
        WindowGroup {
            ContentView()
                .setupToastUI() // ✅ Add this
        }
    }
}
u/loudowls_corp — 23 days ago