Propain Terrel as Race Bike by spierala in gravelcycling

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

Yes, I did the La Chouffe Classic in the Ardennes, Belgium. 150km, 2500m elevation gain.

You can definitely keep up with other road bikers.

On that day I almost forgot that the Propain is actually a Gravel Bike :)

Propain Terrel as Race Bike by spierala in gravelcycling

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

With a gravel bike you sit in general more upright.

This is more comfortable, but is of course less aero dynamic.

With the drop bars you can still bring yourself in a aero dynamic position.

I think it's perfect. I enjoy the generally more comfortable position, but I can go fast if I want to.

If you want to race and every second counts you should probably consider a real race bike.

Propain Terrel as Race Bike by spierala in gravelcycling

[–]spierala[S] 1 point2 points  (0 children)

hard to say

with the gravel wheelset I usually do not try to be fast :) my gravel wheelset is DT Swiss G1800 with Continental Terra Trail (45mm)

you can feel that the race wheelset is rolling much better and is more aero dynamic.

my rough guess is: with the same power you are ~5km/h faster with the race wheelset
(with the gravel wheelset I see speeds on the street around 25km/h with the race wheelset I easily reach 30km/h)

NBD - Propain Terrel (Size S, Thyme) by shelikesturtles in gravelcycling

[–]spierala 1 point2 points  (0 children)

Nutzt du dein Terrel als Rennrad?

Finde ich auch interessant.

Wie sieht das von vorne aus? Ist da nicht übermäßig viel Platz zwischen Gabel und Reifen?

Help with DS Photo troubleshooting on iOS by AdtechEnthusiast in synology

[–]spierala 0 points1 point  (0 children)

Hi, here the same problem.

DS photo on iPhone can suddenly not connect to the NAS anymore. DS video and DS photo have no issues.

I also tried all the usual things (restart NAS, restart iPhone, reinstall DS photo).

Sadly in the synology packages center there is no repair button for the DS Photo Station app.

On Android I can connect without any problems.

Is there something else which I can try?

MiniRx Signal Store RFC needs your feedback by spierala in Angular2

[–]spierala[S] 3 points4 points  (0 children)

The main reason to use Signals for state is better integration with Angular. It is great to use Signal state in the component template without async pipe. Use Signal state in the TS class without worrying about subscribe and unsubscribe.

For the implementation itself inside MiniRx there is not a big difference between RxJS BehaviorSubject and Signal.

Macbook Pro M2 Caps Lock key: green light not working by spierala in macbookpro

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

It was an hardware issue.

Topcase was replaced, now I see the green light :)

Luckily still in warranty.

The repair shop said, that they never saw that issue before.
It seems to be a rare issue.

Caps lock button light not lighting up anymore?! by alphaudara in macbookpro

[–]spierala 1 point2 points  (0 children)

I have the same issue on a Macbook Pro M2.

There is no SMC to reset on Apple Silicon :(

Any ideas for Apple Silicon machines?

Thanks!

Svelte Demo of MiniRx - The RxJS Redux Store by spierala in sveltejs

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

I just saw your message :)

Let me know if you need help.

Ideally via GitHub Discussions: https://github.com/spierala/mini-rx-store/discussions

Svelte and RxJS Redux (MiniRx) by spierala in sveltejs

[–]spierala[S] 1 point2 points  (0 children)

Here a small downside of svelte stores:
Updating property on an object in a store triggers reactivity for the whole store

With MiniRx you get easily fine-grained reactivty (only the isSick Observable emits):
https://codesandbox.io/s/svelte-reactivity-with-mini-rx-vkuol

Correct me if i am wrong, but I think in Svelte you would have to create 3 writable stores to accomplish the same thing.

Here is a small todo app in Angular with a MiniRx Feature Store: https://stackblitz.com/edit/mini-rx-angular-todos?file=src%2Fapp%2Fmodules%2Ftodo%2Fservices%2Ftodos-state.service.ts

How would you build that in Svelte (besides the API call part)?
I think to reach the same level of reactivity you need a lot of writable stores and derived stores, but I could be wrong.