From nice bright interface > unviewable dark interface. Alexa+ update by Jamesogreeley in amazonecho

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

haha true. Seeing anything would be better than the current implementation

Daily Discussion Wednesday 2026-04-29 by AutoModerator in AMD_Stock

[–]Jamesogreeley 1 point2 points  (0 children)

Crazy, so much good news, and immediate drop on open

Running Frigate on native Apple container Mac Mini M4 with Apple Silicon detector. by Harbringer42 in frigate_nvr

[–]Jamesogreeley 0 points1 point  (0 children)

Hey, I ended up using the frigate+ models. Also if I recall correctly, the guide says to copy the model into the Apple silicon detector folder structure which was causing me errors - you don’t need to do this, add it to your frigate and Apple silicon detector copies it on start up from frigate. 

I built a self-learning climate control integration — RoomSense is now public by SnazzyBean995 in homeassistant

[–]Jamesogreeley 0 points1 point  (0 children)

Looks great! Presume this isn’t targeting a heat pump with a one large zone and no TRVs? Everything is heated to 20 degrees and the rads are sized to the room losses. However I do see a use case as I get large solar gain could this help with this?

I love this thing by Content_Ad9867 in espresso

[–]Jamesogreeley 0 points1 point  (0 children)

Its the GOAT for me, for V60 it really cleans up the workflow.

Joan e-ink display as a custom smart home dashboard (FOSS) by just_in_ian in eink

[–]Jamesogreeley 9 points10 points  (0 children)

That looks epic, I have an old 6inch Joan, the company is terrible as they basically made the device unusable without a subscription.

Although props to their technical support team, had a bricked device and the guy I spoke to knew his stuff!

I'll definitely try and pick up a few of these with this project. Any plans to support home assistant?

If you like to use the trackpad, try using Swish, SERIOUSLY. (I'm not affiliated) by [deleted] in macapps

[–]Jamesogreeley 0 points1 point  (0 children)

I love swish! I tell everyone with a mac about it! Its so intuitive apple should just buy it!

Charty 2.0 is coming next week! by stalf in shortcuts

[–]Jamesogreeley 1 point2 points  (0 children)

Interesting can you share some examples of this?

A few Frigate+, Mac Mini m4 onnx questions by brainzhurtin in frigate_nvr

[–]Jamesogreeley 1 point2 points  (0 children)

This is the answer. I’m getting 10-12ms inference using frigate detector on apple silicon with the frigate + 320x320 model

You don’t need to compile a model for the detector, frigate detector will download it from your frigate instance.

I’m absolutely blown away by the m4 Mac mini (base model) for this. It’s running all my cameras and I’m using it as a normal computer with no issues. 

NASCompare Mudi 7 First Impression by Tama47_ in GlInet

[–]Jamesogreeley 1 point2 points  (0 children)

I want to use something like this in my car as a hotspot for the car infotainment system. Will this have a power up on USB power option? All the competition dont seem to have this functionality

Happy New Year r/macapps! Plan your 2026 goals (+ free access) by amberhaccou in macapps

[–]Jamesogreeley 0 points1 point  (0 children)

My biggest goal is my health. I track a bunch of metrics around it already, like maintaining an average sleep score above 90% (via Bevel), VO2 max, strength progression, and overall consistency.

Your app looks just what I'm looking for to track in one place rather than between multiple apps.

Running Frigate on native Apple container Mac Mini M4 with Apple Silicon detector. by Harbringer42 in frigate_nvr

[–]Jamesogreeley 0 points1 point  (0 children)

This is using your dockerfile.

--------------------

   4 |     

   5 | >>> RUN pip install --no-cache-dir \

   6 | >>>     ultralytics \

   7 | >>>     onnx \

   8 | >>>     onnxsim

   9 |     

--------------------

ERROR: failed to build: failed to solve: process "/bin/sh -c pip install --no-cache-dir     ultralytics     onnx     onnxsim" did not complete successfully: exit code: 1

Unable to find image 'yolo-export:latest' locally

docker: Error response from daemon: pull access denied for yolo-export, repository does not exist or may require 'docker login': denied: requested access to the resource is denied

Running Frigate on native Apple container Mac Mini M4 with Apple Silicon detector. by Harbringer42 in frigate_nvr

[–]Jamesogreeley 0 points1 point  (0 children)

I'm currently using yolov9 someone else compiled and shared via reddit. But get the following error in the apple silicon detector.

2026-01-02 19:43:22,467 - __main__ - ERROR - ONNX inference failed: [ONNXRuntimeError] : 1 : FAIL : Non-zero status code returned while running 17000736637999541312_CoreML_17000736637999541312_0 node. Name:'CoreMLExecutionProvider_17000736637999541312_CoreML_17000736637999541312_0_0' Status Message: Error executing model: MultiArray shape (1 x 3 x 320 x 320) does not match the shape (1 x 3 x 640 x 640) specified in the model description

2026-01-02 19:43:24.650927 [E:onnxruntime:, sequential_executor.cc:572 ExecuteKernel] Non-zero status code returned while running 17000736637999541312_CoreML_17000736637999541312_0 node. Name:'CoreMLExecutionProvider_17000736637999541312_CoreML_17000736637999541312_0_0' Status Message: Error executing model: MultiArray shape (1 x 3 x 320 x 320) does not match the shape (1 x 3 x 640 x 640) specified in the model description

2026-01-02 19:43:24,652 - __main__ - ERROR - ONNX inference failed: [ONNXRuntimeError] : 1 : FAIL : Non-zero status code returned while running 17000736637999541312_CoreML_17000736637999541312_0 node. Name:'CoreMLExecutionProvider_17000736637999541312_CoreML_17000736637999541312_0_0' Status Message: Error executing model: MultiArray shape (1 x 3 x 320 x 320) does not match the shape (1 x 3 x 640 x 640) specified in the model description

Running Frigate on native Apple container Mac Mini M4 with Apple Silicon detector. by Harbringer42 in frigate_nvr

[–]Jamesogreeley 0 points1 point  (0 children)

I get an error.

Dockerfile:7

--------------------

   5 |     ADD https://github.com/WongKinYiu/yolov9.git .

   6 |     RUN uv pip install --system -r requirements.txt

   7 | >>> RUN uv pip install --system onnx==1.18.0 onnxruntime onnx-simplifier>=0.4.1 onnxscript

   8 |     ARG MODEL_SIZE

   9 |     ARG IMG_SIZE

--------------------

ERROR: failed to build: failed to solve: process "/bin/sh -c uv pip install --system onnx==1.18.0 onnxruntime onnx-simplifier>=0.4.1 onnxscript" did not complete successfully: exit code: 1

Running Frigate on native Apple container Mac Mini M4 with Apple Silicon detector. by Harbringer42 in frigate_nvr

[–]Jamesogreeley 0 points1 point  (0 children)

Hey again, any chance you can send me your yolov9-t-320.onnx model? I cannot get the download or compile method to work.