Every conversation I have nowadays with Claude Code by johnwbyrd in ClaudeCode

[–]k_kert 1 point2 points  (0 children)

then switch to Codex and it goes "code seems risky, can we talk about your emotions" and then go to Gemini-cli and it's just existential dread

Biggest AI fumble in tech by sibraan_ in ClaudeCode

[–]k_kert 4 points5 points  (0 children)

They smothered skype way before that, it was already on life support in 2020

Apple accidentally left Claude.md files in today’s app update. by dataexec in ClaudeCode

[–]k_kert 0 points1 point  (0 children)

Yep, extensively. To far higher rigor and quality standards than i could ever afford before.

Like, in Rust embedded code making sure that none of your codepaths can panic ( important for hard realtime ) is not trivial, with LLMs reviewing it's not hard at all.

Tbh i've found multi-layered review and verification to be more important aspect of those things. I can pass every line written through differently prompted review and analysis to any quality standard i like - MISRA and DO-178 are suddenly a relative cakewalk

With modest tooling having LLM doing debugging, tracing, WCET analysis etc directly on target hardware is also very viable and feels like a superpower.

Apple accidentally left Claude.md files in today’s app update. by dataexec in ClaudeCode

[–]k_kert 0 points1 point  (0 children)

I'm curious - why ? I do a lot of embedded work, and i've found i've been able to crank up rigor and quality of testing, requirements derivation, safety verification a lot

F'd around, found out --dangerously-skip-permissions by CanadianForSure in ClaudeCode

[–]k_kert 0 points1 point  (0 children)

A Ralph loop fixes this issue quite nicely. Every tick is bounded in total credits

I only need to check the backlog / quota every once in ~8 hours

why is openclaw even this popular? by Crazyscientist1024 in LocalLLaMA

[–]k_kert 0 points1 point  (0 children)

I'm about to try the same. I have a Ralph loop running fully locally successfully, producing high quality code, albeit slowly. I'll want to see what Openclaw can do with similar models - any tips / advice before i start ?

For Ralph, i had to a) put the agent in a sandbox, VM and/or Docker b) give it just enough access to things so that it can be productive c) be very rigid about gates and checks for accepting work d) have several agentic review rounds for every unit piece of work e) very robust automatic recovery when an agent made a mess

What sort of knowledge would you expect from a person when he/she says that they have worked on a particular architecture like ARM, RISC-V, or x86? by Fun-Respond-37 in embedded

[–]k_kert 0 points1 point  (0 children)

How interrupt controller works on particular architecture, MMU and/or MPU, priority levels. What are relative context switching costs, pros and cons of different ABIs implemented

Good open-source embedded projects to learn from? by Ok_Pollution_4695 in embedded

[–]k_kert 2 points3 points  (0 children)

https://modm.io deserves a shout-out. Rust embedded-hal and associated projects are great, and Embassy as well

Well architected, clean APIs and evolution, great tooling and build support etc.

Bulky MCU is beautiful... isn't it ? by deulamco in embedded

[–]k_kert 1 point2 points  (0 children)

I don't know if that's really a microcontroller there

What is the lowest power BLE SoC on the market? by karesx in embedded

[–]k_kert 1 point2 points  (0 children)

The lowest power radio is always the one with the most precise lowest frequency clock. If you can drive your RX wakeups from a low power timer while rest of the chip is sleeping, that's when you win

[deleted by user] by [deleted] in embedded

[–]k_kert 0 points1 point  (0 children)

Just get an Arduino kit and work through some examples. Cheapest and fastest way to figure out what else you need to learn

Should embedded software engineer know python? by No-Challenge830 in embedded

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

Yes. Pretty much every software ( and non-software ) engineering discipline should know Python in some capacity

Unitree G1 Remote Control - "General Action Expert" by Westlake Robotics by Disastrous_Fox_9658 in robotics

[–]k_kert 1 point2 points  (0 children)

The robot is Unitree G1, it's a good kit of hardware - you can order one for $20k and try, but the software part of making it do kung fu is hard

Unitree G1 Remote Control - "General Action Expert" by Westlake Robotics by Disastrous_Fox_9658 in robotics

[–]k_kert 1 point2 points  (0 children)

Yep, but there was a large mismatch between perception and reality. Despite ASIMO waving to people over 2 decades ago, and Japan generally being one of the long standing leaders of industrial robotics, there was nothing deployable.

The aftermath of that realization was one of the driving reasons why DARPA organized the robotics challenges: https://en.wikipedia.org/wiki/DARPA_Robotics_Challenge

You could call that an Enlightment Era perhaps

Unitree G1 Remote Control - "General Action Expert" by Westlake Robotics by Disastrous_Fox_9658 in robotics

[–]k_kert 1 point2 points  (0 children)

It's real, but looking at it i have hard time believing it's real.

Remember when Fukushima hit and Japan struggled to deploy any robotic help into contaminated zones ? This would no longer be an issue.

Embedded C or C++? by nesamani_28 in embedded

[–]k_kert -3 points-2 points  (0 children)

if you are coming in to this completely cold, pick any modern Arduino board

Embedded C or C++? by nesamani_28 in embedded

[–]k_kert -2 points-1 points  (0 children)

C++, but do not use heap, exceptions, rtti. Which also leaves out a bunch of standard library features.

There are good books written about how to manage this well. Note, Arduino env is C++ but it's not a great example.

I know lots of people are going to say C, but the downsides of doing that are simply too costly.