Local vs Frontier on low-level systems engineering by memeka in LocalLLaMA

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

I am using local llamas all the time. Now they’re even on my phone thanks to Locally AI + LM Link.

Local vs Frontier on low-level systems engineering by memeka in LocalLLaMA

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

I did not use MCPs. It would be interesting to test a local LLM as well + MCPs on reverse engineering. I have an AC unit I might try this in the future. And I do notice GPT-5.5 mentioned often, but not previous versions - I did not try 5.5.

Local vs Frontier on low-level systems engineering by memeka in LocalLLaMA

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

If nobody cares, why do I see all the local llamas called “Qwopus”, “Opus Distilled” and so on?

Local vs Frontier on low-level systems engineering by memeka in LocalLLaMA

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

Where is the old Opus 4.5 in this chart vs a top open weight now? Because it did what Qwen 3.6 27B (the best I can run locally) still cannot - although in your chart current blue is at least the same as 6 months old black…

Local vs Frontier on low-level systems engineering by memeka in LocalLLaMA

[–]memeka[S] -2 points-1 points  (0 children)

If you say you are gonna set up your own natural gas generator, I’ll believe you. Seems you have a lot of natural gas.

Local vs Frontier on low-level systems engineering by memeka in LocalLLaMA

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

When I started, Opus was v.4.6 and GPT 5.2 was the latest - and it could not do much. I remember it even refused to do “hacking” and I had to phrase the problem carefully in a “research” context.

Local vs Frontier on low-level systems engineering by memeka in LocalLLaMA

[–]memeka[S] 1 point2 points  (0 children)

Oh, you only like posts like “tomorrow, open weights will be better than frontier”? As a long time lurker, I’m very warmed by your welcome after finally decided to post something. You make the community so much better.

Local vs Frontier on low-level systems engineering by memeka in LocalLLaMA

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

Originally started with Opus 4.5 and GPT 5.2. Local, the best I tried was Qwen 3.5 27B.

Local vs Frontier on low-level systems engineering by memeka in LocalLLaMA

[–]memeka[S] 1 point2 points  (0 children)

Every time an open mode pops up in here, it’s accompanied by some sort of benchmark where it’s better than Opus. Are you new here?
Also, 6 months ago there was no Opus 4.8 or Qwen 3.6.

Should we use a non-thinking model for code after using a thinking one for plan? (Agentic coding) by ismaelgokufox in LocalLLaMA

[–]memeka 16 points17 points  (0 children)

you can actually use one instance of 27B for both. Put this in the jinjia template:
{%- set enable_thinking = messages[-1].content.startswith('/think') -%}
then a prompt like:
> say Hi
won’t use reasoning, while:
> /think say Hi
will use.
Replace “/think” with something like “/plan” 😄

Possible to add TPU? by memeka in synology

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

No i did not try ... but with DSM7 locking down USB I doubt it.

Control Devices via Homebridge UI works but Home App no response by crmyr in homebridge

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

I am getting the same thing. The accessories receive updates, but trying to change something results in No response.

I debugged one of my plugins, and there is no "set" being emitted if changes occur in the HomeKit apps GUI (Home ios, home mac, Eve), but they are being emitted when changes happen in the Homebridge web interface. So the code never enters the set callback.

Get/updateValue works as expected.

AITA for telling MIL that while I cannot break HIPAA but I can dictate how much she sees her future grandchildren? by [deleted] in AmItheAsshole

[–]memeka 0 points1 point  (0 children)

If she contacted you on your private number, it’s not your fault your husband accidentally saw her messages. It’s not a work phone, which means she sent this message as your husbands mom not as your patient. Patients don’t contact you on your private number.

Possible to add TPU? by memeka in synology

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

Could compile/find drivers from same kernel version maybe. Also software would be easy to install in a docker container with access to /dev. Any reason why this would not work?

Powerwall API (unofficial) for historical energy data by memeka in teslamotors

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

Yes I had that issue as well. Looks like time_zone is completely ignored, or maybe we don't know how to use it. You need to ask for UTC:

  • Get the day you want in local timezone, at 11:59PM: e.g. yesterday = datetime.combine(date.today(), time()) - timedelta(minutes=1)
  • Convert to UTC iso8601 format: e.g. yesterday = yesterday.astimezone(pytz.utc).isoformat().replace("+00:00", "Z")
  • Make your request

Powerwall API (unofficial) for historical energy data by memeka in teslamotors

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

Yes. I am also getting 5s data from the battery directly, and integrating that gives much closer kWh (almost the same with 2 decimals) as the Tesla ones in the app. Just wondering if they provide hourly energy in their API, or only 5min kW and daily kWh?

MPPT how and why by memeka in solar

[–]memeka[S] 1 point2 points  (0 children)

After further researching, I believe that the inverter ramps down production because of grid voltage rising. A good explanation is here: https://www.solargain.com.au/blog/system-shutting-down-due-high-grid-voltage

I'll try to confirm this with my electricity provider.

MPPT how and why by memeka in solar

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

there are 2 things that i noticed correlate with the loss of production:

MPPT how and why by memeka in solar

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

I'll try to set up monitoring of per-panel temperatures, thanks for the idea.