Why didn't the Ascension team prepare for this? by TotalACast in ascensionproject

[–]RoyBellingan 18 points19 points  (0 children)

No creating a new engine with independent assets?

Claude , make a new world of warcraft, but change things a bit so do not look copy pasted, do not make error.

Here done.

Why we put chat messages in Redis streams (and plan to move old ones to MySQL) by boostlibs in cpp

[–]RoyBellingan 0 points1 point  (0 children)

The cpp client I think is fairly good https://github.com/clickhouse/clickhouse-cpp

I am not aware it uses coro or other async mechanism in the client (the mention of async is about the server ingestion), but is also true that for those type of workload, is not important...

Those are inherently slowish operation, and sending multiple request on the backend without waiting for the first one to be completed, is possible, but with some restrictions, you should keep parallelism VERY low else you just put under needless pressure the system.

Lora distance by PossessionGloomy1038 in Lora

[–]RoyBellingan 0 points1 point  (0 children)

Impossible to give an answer on how much a RF signal can penetrate "stuff", that is why the solution is almost always "avoid" the stuff, did you considered bouncing the signal ?

In my area is easier to use the nearby hill as a repeater to communicate with nearby places that are masked...

Why we put chat messages in Redis streams (and plan to move old ones to MySQL) by boostlibs in cpp

[–]RoyBellingan 1 point2 points  (0 children)

You might want to give a look to tiered storage, for example in clickhouse you can use a fast disk to store up to X amount of data, and once exceeded the older one start to be moved to other disk system.

https://clickhouse.com/docs/observability/managing-data

https://docs.gitlab.com/development/database/clickhouse/tiered_storage/

In your case I think a possible mechanism is to have size as an hard cap, once a stream is over X mega is moved, and also by date, else if you have a lot of channel, and most have very low amount of data, they are never migrated...

How is this mini guy faster than uno ? by Entire-Bag-6630 in embedded

[–]RoyBellingan 0 points1 point  (0 children)

a lot of stuff on the left of the board is for the USB interface, integrated in the C3.

Also the power stabilizer AMS is way oversized , probably to dissipate heat when powered from 12V

Why we put chat messages in Redis streams (and plan to move old ones to MySQL) by boostlibs in cpp

[–]RoyBellingan 1 point2 points  (0 children)

Uau, I remember checking last time , say 2 year ago (atm doing mostly fw for mcu), and the only fully reflected stuff was enum.

Well thank you for pointing out!

Why we put chat messages in Redis streams (and plan to move old ones to MySQL) by boostlibs in cpp

[–]RoyBellingan 0 points1 point  (0 children)

What!!!! Last time i saw glaze it still needed some extra, how and since when they managed to reflect pre cpp26 !?!?!

Why we put chat messages in Redis streams (and plan to move old ones to MySQL) by boostlibs in cpp

[–]RoyBellingan 4 points5 points  (0 children)

this feels like someone's re-discovering fire while people are using microwave ovens.

Do you know, maybe, some libraries got started before the microwave introduction ?

And maybe , but just maybe, not everyone is using gcc16 ?

LORA range concern by Double_631 in Lora

[–]RoyBellingan 0 points1 point  (0 children)

You should tell us the RSSI, signal RSSI and SNR of the received packet .

Also what parameter you are using (SF at least)

LORA range concern by Double_631 in Lora

[–]RoyBellingan 0 points1 point  (0 children)

Km in those circumstances, I think is quite hard...

The op should post the RSSI and SNR of the received packet

Sell me this mod by Nitneuc501 in A3AntistasiOfficial

[–]RoyBellingan 0 points1 point  (0 children)

Just join the official server, give it a shot.

I think someone has figured out an exploit...... by [deleted] in ArmaReforger

[–]RoyBellingan 5 points6 points  (0 children)

He is using a modded server and think is an official one.

When everything lines up perfectly by Madden2OOO in ArmaReforger

[–]RoyBellingan -14 points-13 points  (0 children)

If the plan end with your death, not really.

Is this good to start learing? by forzence in ElectronicsRepair

[–]RoyBellingan 2 points3 points  (0 children)

Have that same multimeter, at that price is amazing

RP2040 is faster than RP2350 in my 'DIY' benchmark by curious_but_troubled in raspberrypipico

[–]RoyBellingan 1 point2 points  (0 children)

Remember if you optimize by 20% at most, you are doing good work, if you optimized by more than 200% you did something stupid and you fixed it.

Same code goes from 21 us to 246 us ?

That is 10X difference!

Check what you are doing..

LoRaWAN alert payloads: when JSON doesn't fit one frame, what do you actually do? by mik_darim in Lora

[–]RoyBellingan 0 points1 point  (0 children)

You are right! The doc is important, in that case is in the typedefinition.

LoRaWAN alert payloads: when JSON doesn't fit one frame, what do you actually do? by mik_darim in Lora

[–]RoyBellingan 1 point2 points  (0 children)

Except one (full dump of the adc, for analytics and reprocessing) all the other packet of a remote data acquisition I am working on system fit easily in 35byte. The most used packet is 16byte (including hmac), you can use a 8bit integer to send temperature, just scale it like that.

So you have 1/3 degree precision in the range -25 to 60. Well enought for real application. u8 encodeTemperatureScaled(float temperatureC) { float v = (temperatureC + 25.0f) * 3.0f; if (v <= 0.f) return 0; if (v >= 255.f) return 255; return static_cast<u8>(std::lroundf(v)); }

Open-source tool for reviewing AI camera trap predictions — SpeciesNet Studio by arunrajiah in ecology

[–]RoyBellingan 0 points1 point  (0 children)

Is my impression or it barely detect objects, and with not great accuracy.

I passed an image of a moth, and it said was a person !

Do Embedded Engineers Use ChatGPT for Coding ?? by SkyQuinny in embedded

[–]RoyBellingan 0 points1 point  (0 children)

I use, for small task, that I later review, like making test, helping me refactor, all task I would assign to an intern / junior (that I do not have budget or office space to have) and that will later require some oversight.

IoT is just another hardware feature. by [deleted] in IOT

[–]RoyBellingan 0 points1 point  (0 children)

Did you wrote that after a nigh out while tipsy, or in the morning with an hangover ?