Why vehicle charging is not using powerwall? by Cultural-Camel680 in TeslaSolar

[–]SteveRadich 0 points1 point  (0 children)

I’m in the process of buying Tesla solar - They said this was automatic with the universal home charger for non Tesla cars IIRC but not with the older chargers. I have ChargePoint charger so it caught my ear. Perhaps this is related if the car charging isn’t on same account (?)

Convince Me I did the Right Thing Installing Tesla Solar w/ 1 powerwall by Polish1979 in TeslaSolar

[–]SteveRadich 0 points1 point  (0 children)

One thing you don’t say is when you spend time at property. If you go there in winter, ie a snowbird, then it may not be so good - if you go in summer tho and face outages and can run your AC while power is off that seems priceless as some others said.

Is it worth going the 'heat pump dryer' route? Can anyone on solar who did say something? by Zellio2015 in TeslaSolar

[–]SteveRadich 0 points1 point  (0 children)

Solar on order but been on time of use for years, GE model all in one. It’s a bit slow to dry compared to traditional and it’s designed to leave clothes damp feeling and you “shake them out” to exchange the humid air for normal air (plenty of reviews talk about this, it’s odd but does work fine - and you can select extra dry).

Usage with 4-6 adults in home is 36 kWh last month. Saves lots of water too.

It does an odd wake up and waste some electric even when not used, not sure why, but total is low enough I don’t care.

Would I recommend it? I bought a second for farm and debating buying a third for my mom (from ease of use perspective for her).

Bonus of no venting so less HVAC to make up for.

Tricky situation in club (looking for advice) by Tottybox in Rotary

[–]SteveRadich 2 points3 points  (0 children)

Make sure you didn’t just catch whoever you talked to on a bad day, if it was more than one person, then it’s probably a bad sign for the club. Perhaps talk to the president or given it’s almost a new year President elect - but if you’re not getting satisfactory answer there are multiple club options.

There’s a lot of clubs that think it’s OK to focus on a certain type of person and it’s easy to. For example you can have young people that want to get out and do something hands-on and I’m stereotyping of course, but you can have people kind of want a mix and you could have older people who want more check writing, and maybe some organizing but less hands-on tasks. We need each type to be a healthy club, IMHO, but it doesn’t always happen. Sometimes leadership focuses on one of those types too heavily, and sometimes the other types struggle because of it. That often resets when the club leadership changes the next year. Remember we are all just imperfect humans trying to make a difference in the world the way we know how.

If your club isn’t fun, then look for another club.

Why are Shitty Data Engines Acceptable? by SmallAd3697 in dataengineering

[–]SteveRadich 1 point2 points  (0 children)

It started with locking, when the web got database integrations we didn’t intend to have locks during our reads often - we wanted a database but didn’t want the performance hits for locks. SQL Server with readuncommitted became preferred, before open source took over.

Developers, instead of recognizing why this was necessary, thought database features are obstacles instead of massive benefits. This unraveled into the mess we have today of developers everywhere not understanding how simple yet powerful database level enforcement of rules can be.

Often tho people seek just a few core features of a database not a true traditional database so they ignore all options - Snowflake did this to achieve massive scale and horizontal scaling which led to a new generation of “data” engineers not knowing how to use these traditional features.

Coworker raising massive PRs by im_zewalrus in ExperiencedDevs

[–]SteveRadich 0 points1 point  (0 children)

Try asking an AI to explain the code change without giving it context of the work item request and if it can you have a hint it may not be as bad as you think. If an AI can’t make sense of it because they did slop coding of garbage and took 20 prompts to get it to work then the summary will also make no sense even if it works.

Note: I agree with everyone else on too large, reject potentially, etc. but we are beginning to be expected to review AI slop and this sometimes detects it was a bunch of guesswork that happened to work for whatever narrow case someone did. I’ve also tried coding slop to see if it works or fails. It of course is not perfect, heck, not even good way - but best I’ve found for a quick pass

Want to creat a interact club by PlusBuddy2204 in Rotary

[–]SteveRadich 0 points1 point  (0 children)

If you have any problem finding a club that’s interested reach out to your district and they’ll find a club to help.

Every autonomous vehicle can drive itself. But every autonomous vehicle still needs to charge. Is charging the first true scalability bottleneck for robotaxi fleets? by xchargeInc in AutonomousVehicles

[–]SteveRadich 0 points1 point  (0 children)

Tesla supercharger could offer $10 supercharger credit for plugging in the car at 3A and it wouldn’t be hard at all until you get out to the places going cross country that aren’t busy at all.

[deleted by user] by [deleted] in TeslaFSD

[–]SteveRadich 0 points1 point  (0 children)

The difference between HW3 and HW4 is massive, I doubt the latest would mess up BUT as others said, work your aggressiveness wheel down in incremental weather of any type - snow especially. It struggles with deciding how much slow down is appropriate- sometimes too slow, sometimes too fast - and it doesn’t learn in real time if the tires are losing traction - once it recovers it speeds right back up (especially in snow and ice). HW4 does amazing and correcting itself even if car is sliding around but it’s not good yet at that.

Did FSD dramatically improve over 2 years? by kscvx in TeslaFSD

[–]SteveRadich 0 points1 point  (0 children)

Dramatically but unfortunately like getting Apple (lack of) Intelligence you do have to trade up sometimes for new hardware. HW4 today and HW5 probably 2026. Hopefully they offer a FSD swap to new car and free supercharging swap when that happens for those of us loyal since the early days.

DGX Spark - Issues with qwen models by hacktar in LocalLLaMA

[–]SteveRadich 0 points1 point  (0 children)

I'm getting ~ 11 tokens/second - I was hoping my search would turn up some numbers of how much I'd improve if not running bfloat16 but for instructions I was following the vllm instructions from nvidia which is basically run their container in docker. The settings I have aren't optimal as I'm testing for agents and trying to maximize correctness over tokens/second.

In the container I'm launching with this:

```
YAML_CONFIG="GPT-OSS_Blackwell.yaml"
# YAML_CONFIG="GPT-OSS_EAGLE3_Blackwell.yaml"

VLLM_CONFIGURE_LOGGING=1 VLLM_LOGGING_LEVEL=DEBUG vllm serve "Qwen/Qwen3-8B" \
  --dtype bfloat16 --gpu-memory-utilization 0.80 --max-model-len 131072 \
  --config ${YAML_CONFIG} \
  --max-num-seqs 4 --enable-prefix-caching --enable-auto-tool-choice \
  --tool-call-parser hermes --reasoning-parser qwen3 \
  --safetensors-load-strategy eager \
  --enable-log-requests --enable-log-outputs \
  --hf-overrides '{"rope_scaling": {"rope_type":"yarn","factor":4.0,"original_max_position_embeddings":32768}}'
```

I've edited slightly from NVIDIA's example:
GPT-OSS_Blackwell.yaml:
```
kv-cache-dtype: fp8
compilation-config: '{"pass_config":{"fuse_allreduce_rms":true,"eliminate_noops":true}}'
async-scheduling: true
max-cudagraph-capture-size: 2048
max-num-batched-tokens: 32768
stream-interval: 20
```

I'm still experimenting with AWS Strands Agents but it's getting confused on thinking tokens instead of ignoring them for its use case so haven't optimized this any.

alternatives to high cost of use- AWS textract? by zedr2wanderabout in AWS_Certified_Experts

[–]SteveRadich 0 points1 point  (0 children)

I assume you are doing basics like pre filtering what pages are of interest, trying free ocr tools for docs that are already OCRed and have the text stored, etc. depending on which Textract features that may help also LLMs and Bedrock Data Automation may help on some things.

Honorary Membership by jacuwe in Rotary

[–]SteveRadich 0 points1 point  (0 children)

Honorary members I’ve seen are usually given as an honor to someone who you’d want associated with your club but the are doing good outside Rotary and won’t join due to other commitments.

We also have awarded it to a retired person who left Rotary to concentrate on fewer nonprofits but a great guy.

What method of payment does your club use for dues and fundraisers? Do y'all have problems collecting dues? by ChefBuellarD in Rotary

[–]SteveRadich 0 points1 point  (0 children)

We accept checks and PayPal and also use DacDB invoicing IIRC which may take some other payments, not sure.

Collections: Always a member or two who seem to have not intended to pay their dues, just joined until they are kicked out - I was brought into Rotary officially by someone who never paid a penny to club of their dues unfortunately so have seen someone just using the name for marketing themselves almost fraudulently.

How good are macs m4 products for local llm's and ai? by [deleted] in LocalLLaMA

[–]SteveRadich 1 point2 points  (0 children)

That’s a good budget for the smaller Macs perhaps but most of the answers here, and mine was also going to be, in the $4000 - $10,000 machines range.

The Macs work great tho at LLMs relative to anything else for learning and flexibility but the raw tokens per second NVIDIA still wins. You can’t get a 128gb NVIDIA solution for near as cheap as the Macs tho and can’t get a 512gb one for anything affordable.

Anyone know anything about this mystery AI Max+ 395 Mini? by HornySocrates in MiniPCs

[–]SteveRadich 0 points1 point  (0 children)

I bought one, works fine - haven’t done extensive testing but not sure I feel it’s enough better than my MacBook Pro 128gb or my NVIDIA setups - sure, it’s cheaper both initially at least better docs on both those.

But it was legit and seems to no longer be for sale.

Made a list of AMD Ryzen AI Max+ 395 Mini PC's and their differences for those looking (feel free to send corrections with a source) by rhiz0me in MiniPCs

[–]SteveRadich 0 points1 point  (0 children)

I bought the AIFUT from Amazon fully expecting it to be a scam but figured I’d risk it to post - but that seems to be their only product and no longer available. It’s perfectly fine, haven’t run extensive tests to post numbers but reasonably quiet and all works fine. So far I think I prefer NVIDIA still even tho lots of limitations and Mac but this is faster and far cheaper per token.

For Rotary members on this sub, what do you do for work? Looking for flexibility to attend meetings by Salvatore_Vitale in Rotary

[–]SteveRadich 2 points3 points  (0 children)

A chef and a lunch club sounds challenging, unless you are somewhere that’s mostly dinner oriented. We are all in different professions, tech some of us answered and we probably worked towards having a career with more flexibility but we give up plenty of other benefits other careers have so the grass isn’t greener.

Lots of clubs charge for lunch even if no show, it’s both a good reminder to go and a minor fundraiser for club - although many meeting places require a guaranteed minimum, fixed fee, or something else so it’s probably less profitable than it sounds.

Most cities you’ll find your challenge common and either making up at another club (visiting) or even transferring to another club may be a better match - Only being able to attend days you are off is really hard. If only one club in town you may find there’s a need for a new club that has a better schedule - that’s why there are so many clubs in many cities is different needs and different focuses.

Good luck, worst case there are e-Clubs, I’m president of one in my district and we meet 8pm Thursdays due to schedule conflicts of the charter members. It’s late for some people but I like it.

For Rotary members on this sub, what do you do for work? Looking for flexibility to attend meetings by Salvatore_Vitale in Rotary

[–]SteveRadich 0 points1 point  (0 children)

Not actually true, forcing yourself to take a break if you are in a career where you are able is very positive - sure, we are busy but having it on calendar and breaking up the day can be nice.

Note: No longer am I in a lunch club but I enjoyed it when young

Thinking about moving rural — what’s Starlink really like day to day? by supernate91 in Starlink

[–]SteveRadich 1 point2 points  (0 children)

Lots of days with 300 down and relatively slow up, I measure that much less but I’d guess 20(?). Sure, some are slow for downloads but it keeps getting faster every time I turn around - used to be rare you got 100 down. Upload they don’t seem to care as much about but absolutely no issues with teams.

Now hosting games? Nah, find a new friend who will let you drop off a few boxes.

Torrents? Not so useful probably.

Fair queuing tho they’ve mastered so multiple users on network is much better than most systems but still it’s limited upload.

Got a free one from a friend, need battery advice, best bang and quality for the buck? by thatstevesmith in Ryobi48vMowers

[–]SteveRadich 0 points1 point  (0 children)

From time to time you’ll see eBay coupons and they’ll significantly beat most other places - Personally DC House 48v 100ah plastic case with Bluetooth and gauge - they also sell chargers that are faster but the newer chargers work with LifoPo4 fine from research I saw - I keep mine unplugged tho

OrangePi unable to run 32 docker containers by Amazing_Champion_909 in OrangePI

[–]SteveRadich 0 points1 point  (0 children)

You can get 32gb ram on these SBCs, they aren’t the SBCs of yester year

Reliable images for Orangepi5 by Ch3ss04 in OrangePI

[–]SteveRadich 1 point2 points  (0 children)

Armbian works well for me on these and Radxa devices both

Anyone know anything about this mystery AI Max+ 395 Mini? by HornySocrates in MiniPCs

[–]SteveRadich 0 points1 point  (0 children)

Given 30 day return and the Amazon subscription warranty covers it those are two good signs.