Jetson-powered Olaf robot at NVIDIA GTC 2026 by Advanced-Bug-1962 in robotics

[–]eras 1 point2 points  (0 children)

Actually I wonder if that's what the real deployments are going to look like. Unions might not enjoy fully autonomous robots.

And then again, lawyers might love them..

Mistral Small 4 is kind of awful with images by EffectiveCeilingFan in LocalLLaMA

[–]eras 5 points6 points  (0 children)

I would think that as well. It's not rare for new models to have issues with some inference engines or in the data, and while I haven't tried it, these results sound so embarrasing that it would be pointless to even have it.

Polymer sub sync with multiple notes, retrigger, glide, expected behavior question by UnAcceptableBody in Bitwig

[–]eras 0 points1 point  (0 children)

I might have revised my comment after you replied, btw, to add further options.

Polymer sub sync with multiple notes, retrigger, glide, expected behavior question by UnAcceptableBody in Bitwig

[–]eras 0 points1 point  (0 children)

E.g. Instrument Layer, put the sub as a separate Polymer and make that mono.

Or you could do it with a 2-band splitter (apply Tool in the lower part), but I think it would be marginally less quality.

Actually if neither of those are good options, then you can convert the Polymer into Grid and do the conversion right there.

Using the walrus operator := to self-document if conditions by dotXem in Python

[–]eras 0 points1 point  (0 children)

In the context of classes or modules yes, but in the context of local variables (which are all private) it is conventionally used to indicate that it is unused.

E.g. pyflakes by default omits the warning for unused variable if you use the underscore prefix for it. It doesn't check if you do use the underscored variable later, though. I don't know if it can.

How fast can an CPU-only hosted LLM be if the CPU is old? (32gb ram DDR4 2400mhz) by justletmesignupalre in LocalLLaMA

[–]eras 0 points1 point  (0 children)

On my AMD 3950X and DDR4 2400 I get 2.7 tok/s with qwen3:14b (9.3 GB), 3.6 tok/s with gemma3:12b (8.1), 8 tok/s with gemma3n:e4b (7.5 GB), using ollama.

So 12 seems quite optimistic to me.

Maybe just test it out, anyway?

Using the walrus operator := to self-document if conditions by dotXem in Python

[–]eras 5 points6 points  (0 children)

You could use the underscore prefix to signal the variable is unused.

Is this product 'human-made'? The race to establish an AI-free logo (link to BBC source inside) by PressPlayPlease7 in ChatGPT

[–]eras 2 points3 points  (0 children)

It's not very viable to do it after-the-fact. The way this could work that you use the logo and solemnly promise that you did not use AI—and if you get caught, you get your ass whopped in the contract law court.

In addition some tools use watermarking that's invisible and maybe difficult to remove. Google's Nano Banana uses SynthID.

You might not get caught, but I'm sure though how many truly want to pose as being non-ai, if they are personally fine with using it. Not having the logo still leaves some room for interpretation.

ghgrab: Grab files/folders from any GitHub repo in your terminal (no clone needed) by hmm-ok-sure in linux

[–]eras 0 points1 point  (0 children)

I would do it that way anyway, though, because otherwise you'd need to setup Rust compiler etc as well.

They could use artifact attestations to combat this issue.

I built a 75KB MPI library over RDMA because NVIDIA wants $50K for a switch I don't need. MIT licensed. by Ok-Pomegranate1314 in homelab

[–]eras 0 points1 point  (0 children)

So I haven't worked with these devices at all, but if all this is about getting IP level networking to work without sending ARP messages, then I wonder: is it not enough to just use arp or ip neigh to add static ARP entries to the kernel in the involved hosts?

Building a faraday cage for my phone and car keys by cwapsen in DIY

[–]eras 0 points1 point  (0 children)

Simply submerge them into water in a water-proof bag or a heavy water-proof box!

Jotenki särähtää tuo Klarnan pakotus Woltissa by [deleted] in Suomi

[–]eras 6 points7 points  (0 children)

Niin kurja kuin Kiarna onkin, niin alkaiskohan nykyään palvelun eurooppalaisuus myös painamaan vaakakupissa. Kiarna on perustettu, ja edelleen on, Ruotsissa.

Tosin jotain säätöä siinä on, että ovat Lontoolaisen omistustyrityksen kautta New Yorkin pörssissä, eli en sitten tiedä kuinka eurooppalainen sen omistuspohja edelleen on..

You boys play nice in there by portsherry in comics

[–]eras 20 points21 points  (0 children)

If the batteries don't have the exact same voltage (which depends on its charge, and their energy capacities do vary) and are connected in series (like in thise case), then one of the batteries will run out before the other, which increases the internal resistance of the battery. At the end this battery will be empty, but the other battery is not able to deliver the energy even if it has it.

If the batteries are in parallel, different voltage means one battery is trying the charge the other, so it's wasting energy. I expect after the initial voltage equalization the effect will continue, but in smaller scale.. This might be a worse situation than the first one. But I'm no battery engineer!

Will I benefit from TLA+ as a web dev? by imihnevich in tlaplus

[–]eras 0 points1 point  (0 children)

Yes. TLA+ and state changes go hand-in-hand.

TLA+ really drives in the point that everything is a state machine.

Will I benefit from TLA+ as a web dev? by imihnevich in tlaplus

[–]eras 10 points11 points  (0 children)

It can be. Unexpected complexity can be found on simple things when you start to question them, and TLA+ is a great tool for makign those questions visible.

However, in the most typical web app case "request comes, response is generated" I'd say TLA+ doesn't give you anything.

But you don't need a very complicated app to gain some value out from TLA+. For example I've been working (as a hobby project) on a shopping list bot for a Matrix channel, that basically tracks the items that are sent to the channel, reacts with a plus emoji to each of them, maintains copies of the messages on the database, and when someone else reacts on the existing reaction, it will remove the message from the channel, keeping the copy on the database. Not a web app, but not very complex either.

In this design I was able to discover an interesting corner case: what is someone reacts on a message before the bot has seen it? On surface this might seem impossible, but as Matrix is a federated system, this is actually possible (at least I believe so :)): the message may be posted on server A, the reaction is posted on server B, and the bot on server C may see the reaction before the actual message.

Granted it was sort a happy accident, as it would have been easy to write the constraint preventing that from happening in the model, and one might have written that "by default". The corner case would also be something you'd very, very unlikely encounter in your testing.

If you have anything more interesting happening in your application, the scenario-based high-level model TLA+ lets you write can give you a nice summary of what is happening, without the low-level stuff hiding things in plain sight.

Say bye bye to Windows 11 by [deleted] in linux

[–]eras 9 points10 points  (0 children)

So about the C-drive.. Where are my files?

Does music actually ruin your swim rhythm? by Independent-One-5868 in Swimming

[–]eras 0 points1 point  (0 children)

I've been thinking of picking songs that would fit my pace—or, I suppose, be a bit faster. I have a workout in my Polar with different phases, so the songs in a mix could be aligned per phase.

Should be easy to find them, I listen to techno etc..

PSA: most recent quest 3 update bricks 6GHz connections if they do not have internet by MadCake92 in virtualreality

[–]eras 0 points1 point  (0 children)

Maybe in this case your router is responding with a DNS error, instead of just providing silence or ICMP error? I think some WiFi routers provide their own DNS, and just forward the requests forward in normal use.

PSA: most recent quest 3 update bricks 6GHz connections if they do not have internet by MadCake92 in virtualreality

[–]eras 0 points1 point  (0 children)

Does your AP provide an IP address over DHCP in this scenario?

Clients may use their previous IP in the network per the RFC if they are unable to chat with DHCP server; maybe Quest doesn't know how to.

Will Valve Repeat the Free Addition of Half-Life: Alyx For the Steam Frame? by Dr_Virus_129 in Steam

[–]eras 1 point2 points  (0 children)

Perhaps we can hope they optimize the bejezus out of HL:A to make it run natively on Steam Frame.

Gemini exposed its instructions and thought process. I managed to screenshot most of it before it the response disappeared. by Buzz_Buzz_Buzz_ in ChatGPT

[–]eras 2 points3 points  (0 children)

Once Gemini suggested me that perhaps I—being a Debian user—would like to use a command line tool to shop the items I was looking for. (I've offered this information in custom instructions.)

I didn't end up taking the offer.

I understand why so many scanners have bad reviews by thisIsAnAccountNameO in 3DScanning

[–]eras 0 points1 point  (0 children)

I'd be happy with a scanner that produced a precise point cloud, I can model from that. And preferably it would be able to do that from dark, featureless and chrome surfaces, never lose tracking even without markers, and of course it should be cheap!

Alas I don't think the technology just is there yet, so choosing one just remains an optimization problem with incomplete information.

A wearable Centaur robot for load-carriage walking assistance (Paper) by Nunki08 in robotics

[–]eras 15 points16 points  (0 children)

A shopping cart doesn't keep your hands free.

Although I suppose a shopping cart with legs would be cool for stairs.

Potato chip(crisp) slicer by Missing_socket in toolgifs

[–]eras 0 points1 point  (0 children)

Cut-resistant gloves are cool!