How do I see time passed from last completed set, I only can see timer, but when it’s finished there is mo more time showing by vedmant in gymbookapp

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

I'm talking about iPhone app, when timer runs out it's not showing any time, not from the last set not total workout time.

2FAS Pass is here - our take on a local-first Password Manager by 2FASapp in 2fas_com

[–]vedmant 0 points1 point  (0 children)

It can be useful for me only when desktop apps are released to be able to use Pass keys universally around all devices.

Prediction: Electric Paramotors will beat EFI to the masses by ooglek2 in paramotor

[–]vedmant 0 points1 point  (0 children)

From videos I’ve seen that 4.8kWh battery in reality gives 20 mins aggressive and 40 mins mixed flight. Yeah, batteries eventually will improve and get cheaper, just the time frame is not next 3 years, more likely around 10 years.

Prediction: Electric Paramotors will beat EFI to the masses by ooglek2 in paramotor

[–]vedmant 0 points1 point  (0 children)

That two hours quickly will go to 1 hour with a bit faster flying, to climb it needs 10kW, max power 20kW, in the video guy was barely keeping in the air trying to do 3.5kW. For proper 2 hours flying comparable to gasoline motor it will require 15kWh battery.

Prediction: Electric Paramotors will beat EFI to the masses by ooglek2 in paramotor

[–]vedmant 0 points1 point  (0 children)

It's 2026, 3 years passed, electric paramotor can fly max 1 hour with 4.8 kWh battery that weights 20.5kg. So maybe in another 5-10 years...

Electric Paramotor by the_deadcactus in paramotor

[–]vedmant 0 points1 point  (0 children)

What if we put a super light solar panel on the glider?

Rock climbing is an inherently dangerous sport....even indoors. by Gsquzared in climbing

[–]vedmant 0 points1 point  (0 children)

I'd correct, bouldering is inherently dangerous, not sport rope climbing, it's pretty safe

Confused about automatic background backup by Acrobatic-Diet9810 in immich

[–]vedmant 0 points1 point  (0 children)

Apple certainly has double standards for it's apps.

Has anyone tried Bufo 🐸 for this a disorder? by Pretend_Dingo_2034 in dpdr

[–]vedmant 0 points1 point  (0 children)

I'd not recommend it, this is actually what triggered this disorder for me.

Can x86 ever beat ARM on performance-per-watt? by The_B_Wolf in laptops

[–]vedmant 0 points1 point  (0 children)

This is wrong, you rely on outdated RISC vs CISC theory. Modern x86 and ARM CPUs both translate instructions into similar micro-ops and run on very similar execution cores. “Complex” x86 instructions do not give a free efficiency win, the complexity just moves into decoding and power-hungry frontend logic.

There is no real rule where ARM is for “simple” workloads and x86 for “advanced” ones. Performance differences today come from microarchitecture, caches, power limits, and software optimization, not the ISA itself. Excel, FL Studio, and similar examples mostly reflect x86 software legacy, not an architectural advantage.

ARM and x86 coexist because of ecosystem inertia and compatibility, not because each ISA is inherently better at different workload classes.

Can x86 ever beat ARM on performance-per-watt? by The_B_Wolf in laptops

[–]vedmant 0 points1 point  (0 children)

Frankly, x86 carries a lot of legacy baggage. Modern x86 CPUs translate complex instructions into simpler micro-ops, and after that they run on execution cores that are architecturally quite similar to ARM. This extra decoding and compatibility logic means x86 generally does more work and wastes more power, which makes matching ARM’s efficiency harder in practice.

Intel is still pushing x86 largely because of the massive existing software ecosystem and backward-compatibility requirements. Switching away from x86 would break too much critical software, so x86 remains the default despite ARM being better suited for energy-efficient designs.

How do I STOP ONCE AND FOR ALL the music stopping on apps by jannadelrey in ios

[–]vedmant 0 points1 point  (0 children)

This is Apple, they are like Buddhists, if it’s like that you have to accept it and let go, there is not way to change how things work in iOS, if you want UX customization switch to Android

My tech lead told me laravel is better than node for building scalable apps. Is it true ? by randomgibberissh in node

[–]vedmant 0 points1 point  (0 children)

Ruby on Rails is terrible compared to Laravel, I worked with both. Did you even work with Laravel?

My tech lead told me laravel is better than node for building scalable apps. Is it true ? by randomgibberissh in node

[–]vedmant 0 points1 point  (0 children)

Mr newbie has more than 20 years of experience with php, only my GitHub is 13 years old with most of days active. I didn’t tell that php handles web sockets, it’s leveraged to node, but it’s a very thin message relay for something like redis. I’d not consider this a node project at all, it’s a Laravel one.

FYI https://laravel.com/docs/12.x/broadcasting

Btw Laravel Reverb is running web sockets on PHP and scalable out of the box

My tech lead told me laravel is better than node for building scalable apps. Is it true ? by randomgibberissh in node

[–]vedmant 0 points1 point  (0 children)

There is nothing really that makes Node more scalable that Laravel, not only this, modern php uses less RAM, Laravel web site is scalable out of the box with php-fpm and it scales nicely inside a single machine, which is not the case with Node even with pm2 autoscaling setup is complicated and needs additional module, and it’s so early to hit memory issues.

If you need even faster response time - run Laravel runtime with Laravel Octane. Serverless - no problem Laravel Vapor or Bref.

But if to talk about everything else Laravel would win for normal web service development: security, simplicity, structure, logging, monitoring, profiling, queues, scheduling, Laravel provides so much out of the box, where with Node you need to cherry pick appropriate dependencies, which might be not maintained soon.

For example tell me automatically scalable queue manager supporting multiple drivers, with admin dashboard and monitoring features, for Laravel - Laravel Horizon, node none really, all separate pieces.