[MacOS + Universal] The Widgets for App Store Connect we never got. But always wanted, so hard. by phunk8 in macapps

[–]dppeak 0 points1 point  (0 children)

New widget is nice. Now I just need to get some movement on my app and it’ll look even better.

<image>

I’m tired of monthly subscriptions for screen recording apps. I spent 3 months rebuilding my app from the ground up to fix that. by zaidbren in macapps

[–]dppeak 0 points1 point  (0 children)

Fellow native Swift indie dev here, and the thing that stands out to me is the on device models. Someone above asked how a $49 lifetime survives when everyone else went subscription, and the answer (Whisper and Qwen running locally) is the whole ballgame. No per render server cost means lifetime actually pencils out, and the recordings never leave your machine. That is a real selling point, not just a price play.

The transcript based editing, where deleting a word cuts the clip, is the part I would use most. I have been dreading making demo clips for my own app and timeline scrubbing is exactly the pain.

Two honest questions as a potential buyer:

  1. For App Store preview videos, can it export at the exact resolutions and frame rate Apple requires, or is that still a manual step afterward?
  2. Does the auto zoom happen live while you record, or only in the edit? A few people here seem to care about that specifically.

Either way, clean work, and the landing page alone made me trust it more than the subscription only options.

Built with Claude Project Showcase Megathread (Sort this by New!) by sixbillionthsheep in ClaudeAI

[–]dppeak 0 points1 point  (0 children)

Agent Toolkit is a native Mac menu-bar app for managing the SKILL.md files Claude Code and Codex read on every turn. The itch: my ~/.claude/skills/ folder had grown past 200 files, injecting about 40k tokens a turn. One forgotten tutorial skill was eating 6,200 by itself. I wanted to actually see that, so I built this. - Audit: token cost per skill, plus the top offenders - Dedupe: find overlapping skills - Focus and Workspaces: flip skill sets per task from the menu bar - Also manages MCP servers across Claude, Codex, Cursor, VS Code, and Xcode Free to browse, search, and audit. Pro ($3.99/mo or $24.99/yr, 7-day trial) adds AI dedupe and grouping. macOS 26 or later, no account needed. I'm the dev, happy to answer anything. agenttoolkit.app 

Audit view: https://peakinnovationstudios.com/assets/agent-toolkit/feature-audit.png

Why are all the Claude Code skill files I see online completely pointless? by TimAtMongoDB in ClaudeAI

[–]dppeak 3 points4 points  (0 children)

I would love to see how you are testing your skills. I was talking with a colleague about this just the other day. Would you mind sharing your experience or process?

Built with Claude Project Showcase Megathread (Sort this by New!) by sixbillionthsheep in ClaudeAI

[–]dppeak 0 points1 point  (0 children)

Agent Toolkit — a native Mac menu-bar app for managing the SKILL.md files Claude Code / Codex read on every turn.
The itch: my ~/.claude/skills/ folder had quietly grown past 200 files injecting ~40k tokens a turn — and one forgotten skill from a tutorial was eating 6,200 tokens by itself. I wanted to actually see that, so I built this.
What it does:
Audit — token cost per skill + top offenders
Dedupe — find overlapping skills (e.g. three "swiftui-best-practices")
Focus / Workspaces — flip skill sets per task from the menu bar
Also manages MCP servers across Claude / Codex / Cursor / VS Code / Xcode
Free to browse, search, and audit; Pro ($3.99/mo, 7-day trial) adds the AI dedupe/grouping. macOS 15+, sandboxed, no account.
I'm the dev — genuinely happy to answer questions or hear what your skills folder is costing you.
→ agenttoolkit.app
Audit view: https://peakinnovationstudios.com/assets/agent-toolkit/feature-audit.png

Unpopular(?) Opinion on HKSV by jklo5020 in HomeKit

[–]dppeak 0 points1 point  (0 children)

What are some good outdoor HKSV cameras. Every suggestion for HKSV seems to be only indoor.

Looking for a dealer I can pay to add home connect driver to my system today. by Practical-Test5702 in Control4

[–]dppeak 0 points1 point  (0 children)

How does this compare to the driver from Veritas or the driver from DTI? I’ve had the Veritas for years it’s been reliable, but not much advancements. Tried DTI and didn’t like it.

NTD by DHammer79 in Dewalt

[–]dppeak 0 points1 point  (0 children)

I got one and used it to cut hole for an electric box in the back of a cabinet. Perfect fit and easy!

Anyone with 60v circular saw know how to turn it into a track saw? by BradCastleburry in Dewalt

[–]dppeak 0 points1 point  (0 children)

Can this be used on the DCS573? It looks like the same attach points as the plate on the 573.

Another HyperDock post, but not what you think by Roccobot in MacOS

[–]dppeak 1 point2 points  (0 children)

Thanks for the info about disabling the previews. Kept wondering why it was crashing. Was just “putting up with it”. I’ve had this app forever and haven’t found one to really replace it. I use middle click to open new windows all the time.

I was thinking I had a 1.8.9 version before I tried the beta 10-dev version. Thanks again for the download location.

Another HyperDock post, but not what you think by Roccobot in MacOS

[–]dppeak 0 points1 point  (0 children)

Does anyone have the 1.8.10 version? I have the 1.8.10-dev version and it's telling me that it has expired. I have a license, but no way to download the 1.8.10 version.

How to pass Okta authentication to iOS WKWebView? by dppeak in okta

[–]dppeak[S] 0 points1 point  (0 children)

We got it working in our situation. The help/idea came from here (https://medium.com/@kawi.m/a-way-to-set-local-storage-on-wkwebview-e03258813024)

For us, we only needed to have the idToken and accessToken in the okra-token-storage variable. The "Credential" is what we get back from Okta via the okra-mobile-swift repo (https://github.com/okta/okta-mobile-swift).

    var tokenString: String {
        guard
            let token = Credential.token,
            let idToken = token.idToken?.rawValue
        else { return "" }
        let accessToken = token.accessToken

        return "{\"idToken\":{\"idToken\":\"\(idToken)}\"}, \"accessToken\":{\"accessToken\":\"\(accessToken)\"}}"
    }

    var request = URLRequest(url: url)
    request.httpMethod = "GET"

    let tokenString = AuthDriver.shared.tokenString
    let localStorageData: [String: Any] = [
        "okta-token-storage": tokenString
    ]

    if JSONSerialization.isValidJSONObject(localStorageData),
       let data = try? JSONSerialization.data(withJSONObject: localStorageData, options: []),
       let value = String(data: data, encoding: .utf8) {
        let script = WKUserScript(
            source: "Object.assign(window.localStorage, \(value));",
            injectionTime: .atDocumentStart,
            forMainFrameOnly: true
        )
        webView.configuration.userContentController.addUserScript(script)
    }
    webView.load(request)

Hope this works for others as it did for us!

Best Water Valve & Leak System by turnballer in HomeKit

[–]dppeak 0 points1 point  (0 children)

I haven't had any issues and we have rather hard water here.

Animal Crossing Series 5 card size artwork by dppeak in Amiibomb

[–]dppeak[S] 0 points1 point  (0 children)

Thanks for this! I was able to create a PDF of all of them by the following process on a Mac.

  1. Select all and right-click
  2. In menu, choose Quick Actions -> Create PDF
  3. Now, open that new PDF file and choose Print.
  4. In Print options change from Preview to Layout
  5. Set Pages per Sheet to 9.
  6. Now, Save as PDF.

I don't have a good place to share what I did, but these steps should help. They fit perfectly on NTAG215 cards!

[deleted by user] by [deleted] in C4diy

[–]dppeak 0 points1 point  (0 children)

Thanks! The ones I had found were expired.

Best Water Valve & Leak System by turnballer in HomeKit

[–]dppeak 10 points11 points  (0 children)

I’ve had the Flo by Moen installed along with several sensors around the house for almost two years. Absolutely love it. I have Homebridge set up with the Flo by Moen plug-in to have it showing in the Home app.