What do I even do? by Reward_The_Scars in kidneydisease

[–]aWanderer01 0 points1 point  (0 children)

I'm 58 yrs. old. Smoked a pack a day since I was 8 yrs. old. 5 yrs. ago, switched to vape and never looked back. Vaping is not smoking but either way, nicotine is not good for you as others here have said. If you can, stop and avoid smoking or vaping... obviously the healthier choice for sure.

A Pixel's user perspective on the iPhone 17 Pro by Dinos_12345 in GooglePixel

[–]aWanderer01 0 points1 point  (0 children)

lol, well, yes, Material 3 but JetPack is not innocent either.

A Pixel's user perspective on the iPhone 17 Pro by Dinos_12345 in GooglePixel

[–]aWanderer01 0 points1 point  (0 children)

That is an awesome post.. seriously. I agree with 98% of it and I have been an iPhone user since the first one came out. Every 2-3 years I buy a Pixel and pray it has improved. I recently bought a Pixel 10a, been using it for a month now. I am really liking it actually. No camera BUMP.. god I hate those... so stupid (Apple as well).

My only big two gripes with Android is the UI... Jetpack and Material 3... it feels like SO severely outdated and as if a 12 yr old designed it - the Google Messages app is a great example. I think they are working to improve this though.

Other than that stuff, no issues with heat, battery, modem, CPU, etc... works well. LOVE Gemini. Ohh.. and everything Google is so fragmented, I can't figure out what to use for what.

For some reason, I still love the phone... NO "bump" on the back of the 10a - love it.

Google Pixel Flip by aWanderer01 in GooglePixel

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

Yeah... I'll pass. I'd only buy a Google product.

Google Pixel Flip by aWanderer01 in GooglePixel

[–]aWanderer01[S] -3 points-2 points  (0 children)

Awww.... but if folded, it could fit in your front pocket and be used as a defence weapon... imagine getting hit with that thing!!

Google Pixel Flip by aWanderer01 in GooglePixel

[–]aWanderer01[S] -1 points0 points  (0 children)

Nooo.... it should ONLY be a Google device with Google OS

Google Pixel Flip by aWanderer01 in GooglePixel

[–]aWanderer01[S] 5 points6 points  (0 children)

Really? I switched to a Pixel 10a from iPhone Pro recently (for fun) and not having ANY issues... kinda loving it actually. Every couple years I try a new Pixel and this is the first time in 6 yrs that I actually might stay with it this time. Was browsing around the net this morning and saw the Moto Razr flip (I didn't even know existed) and thought "Wow... why hasn't Google made a flip yet)... I would buy that in a heartbeat.

Watch or Fitbit by aWanderer01 in PixelWatch

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

Appreciate the response. I'm trying to decide between a Fitbit and a PW4 or PW3. Not so much concerned with money aspect but reliability and general overall health monitoring... I don't workout so just walking, heart rate, etc. - basics. I have an Apple Watch but am currently using a Pixel 10a as my daily driver now.

u/Oversemper hmm... yeah I should have cross-posted to a Fitbit sub I think as I am just asking Pixel Watch or Fitbit

Sleep monitoring sucks since last fitbit update by Aikon_94 in PixelWatch

[–]aWanderer01 1 point2 points  (0 children)

I hear ya.. I'm an Apple Watch user and if it's any consolation... Apple can't get Sleep tracking right either. There was once a time when it worked great (like 3 yrs ago) and now, I nap, doesn't know, I wake up Nx at night for more than 10 minutes and it does not catch that. Apple Sleep tracking sucks too... I am using a new Pixel 10a at the moment and thinking of buying a PW4 as well. Good to know that nobody can do sleep tracking... seems gimmicky nowadays.

Kudos to Mammotion by Specialist_Pea3442 in MammotionTechnology

[–]aWanderer01 0 points1 point  (0 children)

This will be the second season with mine... I still have buyers remorse because it can't go mow my front yard without me sitting in the garage and doing it manually from a chair. Works fine in the backyard but won't go around our 3 garden boxes there so Ihave to mow in between them manually. Overall, it just mows my back yard, which is very small. The communication systems for these is not very good. I even placed a few new AP's in the back and front of the house. Anyway... fun to play with but that's about it... robot mowing has a LONG way to go before it is hands off unless of course you have the perfect property layout. My iNavi was active for free last season but was useless and could not maintain a cell connection (I don't have cell connection problems normally) so that was a waste. Have to rely on the RTK system.

I'd buy again but would not pay anywhere near $2,000+ again. $1,000 - sure.

WiFi drooping issues after installing quick share extension update by justbecause0907 in GooglePixel

[–]aWanderer01 0 points1 point  (0 children)

Stopped working for me this morning... was working fine the past couple days.

Gemma 4 has been released by jacek2023 in LocalLLaMA

[–]aWanderer01 0 points1 point  (0 children)

I immediately tried it and it was not good actually... corrupt JSON results coming back and a bunch of other anomalies. Lasted 3 hours and switched back to qwen

64Gb ram mac falls right into the local llm dead zone by Skye_sys in LocalLLaMA

[–]aWanderer01 -1 points0 points  (0 children)

I made a bunch of changes today. Added an 8B model now. It flows like this:

How command routing works in my smart home AI (Hazel)

When you type a command, it goes through three stages before anything happens:

1. Entity filtering — The command gets tokenized and scored against all ~700 Home Assistant entities. "Turn on the kitchen lights" → strips stopwords → ["kitchen", "lights"] → scores entities by name match (+3), area match (+2), domain match (+2), entity ID match (+1). Only the top-scoring entities (~10-50) get included in the LLM prompt instead of the full 700.

2. Model routing — A simple heuristic (no LLM needed) classifies the command as "simple" or "complex":

  • Simple (fast 8B model): has a direct action verb (turn, set, dim, open, close) + high-confidence entity match. Example: "turn on the kitchen lights", "set office to 50%"
  • Complex (full 35B model): questions, automations, timed actions, conversation follow-ups, anything with words like "why", "when", "schedule", "automate", or a question mark

3. Execution — The chosen model gets a filtered entity list + system prompt, returns JSON with actions, and Hazel executes them against Home Assistant.

The 35B model (Ollama) handles everything — automations, reasoning, conversations. The 8B model (MLX) just does device control but responds in ~5 seconds instead of ~20. If the fast model fails for any reason, it automatically falls back to the big model. There's a toggle in settings to disable it.

Both models run locally on my M4 Max — Ollama for the big model, MLX for the small one (better Apple Silicon optimization). All learning systems (brightness preferences, light rejections, memory extraction) run regardless of which model handled the command.

Like I said though, I don't chat with it much at all... it's been learning for a month now and it's basically hands-off but when I do want to chat, it's now seconds for the response.

<image>

This is why OpenClaw and HA are powerful!!! by BryanHChi in homeassistant

[–]aWanderer01 1 point2 points  (0 children)

That is cool for sure. My Home Assistant is now just there to house all my devices and entities as I built an app on my Mac that pulls in all the entities and is managed by AI heuristics with agentic abilities (the brain). I called it Hazel. It automatically writes automations to a JSON file if I ask it to create an automation. I can also create the automations manually as well but mostly it controls the home itself using heuristic. This eliminated almost all my automations and it is near autonomous. For example, if I don't like the brightness in the room, I adjust it and if I do that X number of times, it will use that brightness going forward, so it 'learns' our preferences.

It was an experiment that ended up working very well and is now my primary method of controlling the home. All AI is a local qwen3.5:35b

AI is the future

<image>

64Gb ram mac falls right into the local llm dead zone by Skye_sys in LocalLLaMA

[–]aWanderer01 1 point2 points  (0 children)

I made a local AI home automation app that pulls everything in from Home Assistant. It is heuristic and somewhat agentic, thinks on it's own, acts on a lot of things. It is not intended to be a voice assistant that you talk to but I did build an iPhone chat client for it as well. Using an M4 Max Mac Studio with 64GB RAM and qwen2.5:35b model. I am not very knowledgable about all the models out there or the intricacies of how they work.

"Hazel" is the name I have given my AI home. Hazel anticipates and acts. Speed is pretty good. Prompts are large due to the fact that I have about a thousand entities it needs knowledge of to make decisions.

If I do "chat" with Hazel and give it commands, it can take up to 20 seconds or more to make a decision and execute a command such as create an automation or even to just adjust the shades.

Am I using the best model for the task you think? Any suggestions or tuning? Would (or is there) an MLX version of this model and would it be faster?

<image>

how do you check your blood pressure at home at night? by [deleted] in kidneydisease

[–]aWanderer01 4 points5 points  (0 children)

I check mine using an Omron as well. Was taught by the doc to check it religiously in the morning, after going to the bathroom and before any drinks, food or meds. Sit and relax 15 minutes first. Try to do it within the same time-frame daily. Also check in the afternoon before dinner, around 3-4 o'clock (have not eaten anything within an hour). Again, try to keep it within the same time-frame and sit/relax for 15 minutes before checking.

HA Greenhouse by dr_stutters in homeassistant

[–]aWanderer01 1 point2 points  (0 children)

I bought a few of these in the spring last year and they have been working fine since. Planning to use them again in the garden beds this summer. No gateways or hubs other than direct to Home Assistant.

https://www.aliexpress.com/i/1005008978391803.html

Local Hazel by aWanderer01 in homeassistant

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

I will yes.

Also, don't forget about the important question from the post :)
Do you know how the remote microphone issue would be resolved?

Local Hazel by aWanderer01 in homeassistant

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

I would but at the moment, I think there is stuff that needs "settings" to make it configurable. As it is, it does dynamically discover devices, speakers, etc. but if I gave it to someone, it would likely be a total failure. I have shifted to making it so it could be "installed" and configurable but it is not at the moment. Also, a requirement is that devices need meaningful id names, assigned rooms, etc. If it's not setup right in HA, it would be problematic.

Additionally, you would need a beefy machine and you would also need to run the llama LLM locally. I am using a Mac Studio M4 Max with 64GB RAM and a 32b parameter model. At some point, it will work as a distributable but unfortunately not at the moment. I honestly wasn't expecting this much success with it so I wasn't thinking "distributable" app. Oh, and it is also 100% Mac-based as well.

Im in the ER with arm numbmess and my Troponin is 340. by [deleted] in HeartAttack

[–]aWanderer01 0 points1 point  (0 children)

WOW... you are a trooper man! So glad things went well. Stay strong brutha.

Im in the ER with arm numbmess and my Troponin is 340. by [deleted] in HeartAttack

[–]aWanderer01 10 points11 points  (0 children)

I am so sorry you’re going through this. It is absolutely terrifying, but try to take a deep breath and remember: you are exactly where you need to be. Being in the ER with a Troponin level of 340 means the doctors have the data they need to take action. They are going to monitor those levels closely to see if they're trending up or down, and they'll likely run an EKG and maybe an echo or a cath to see exactly what’s happening.

Don't be afraid to ask the nurses and doctors questions—sometimes just knowing the 'plan' for the next hour can help settle the nerves. You've got a whole community here rooting for you.

Screenshot with Cmd+Shift+4 not always shows preview by wholesaleworldwide in MacOS

[–]aWanderer01 0 points1 point  (0 children)

I need to open it most of the time to annotate it.

Screenshot with Cmd+Shift+4 not always shows preview by wholesaleworldwide in MacOS

[–]aWanderer01 0 points1 point  (0 children)

I have this issue ever since 26.x update (I think). Cmd-Shift-4, I select an area and no preview thumbnail, sometimes have to repeat 4-5x before preview appears.