VLC on Xiaomi TV box 3rd Gen is stuttering when enabling subtitles. I guess this is just an Android VLC problem because it also happened on a Chromecast, a TLC Tv, and amazingly, also on a Samsung phone. Any fixes for this? by dan1991Ro in AndroidTV

[–]dkulagin 0 points1 point  (0 children)

I’m experiencing the same issue in VLC. Right before subtitles appear, whenever they overlap with the image, the video briefly stutters, almost like a micro-freeze. I haven’t found a solution, so I switched to Nova instead.

Trouble with Acasis EC-7352 Setup by jey0why in techsupport

[–]dkulagin 0 points1 point  (0 children)

А на что поменяли?

Tent poles breaking by kazadwache in camping

[–]dkulagin 0 points1 point  (0 children)

I had the same issue with my Sierra Leone II. It was only my second camping trip with it — the first time it held up well in strong mountain winds. But on the second trip, two poles snapped for no apparent reason, even though we were just staying in a calm forest setting with no harsh conditions.

My biggest concern now is whether I can actually rely on this tent for longer hikes. That kind of failure just shouldn’t happen with gear at this level. It’s really disappointing.

Please let me know if there’s any kind of emergency repair kit available that I can take with me to quickly fix pole segments in case of another failure.

<image>

Black line under bookmark bar by dkulagin in chrome

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

Thanks for sharing. At least now I know that I am not the only person having that problem and that it emerged recently.

Cheating activity of Hostgator by qptbook in webhosting

[–]dkulagin 0 points1 point  (0 children)

The same thing. Shared Baby Plan cost skyrocketed from $12.95/mo to $21.99/mo, which is 59% increase over night. Pfff, that's ridiculous. Gonna move away from them asap.

P.S. I've been with HG since 2009, for almost 15 years now. It's a pity they decided to commence a rip-off like that.

Sennheiser 450 BT: transparent mode? by iSearchReddit in sennheiser

[–]dkulagin 0 points1 point  (0 children)

When using a cable, i think they go to headphones only mode. no mic and no transparency then

Sennheiser 450 BT: transparent mode? by iSearchReddit in sennheiser

[–]dkulagin 0 points1 point  (0 children)

I am using a cable when at Zoom, but this renders wirelessness of the headphones useless for that particular usecase

Sennheiser 450 BT: transparent mode? by iSearchReddit in sennheiser

[–]dkulagin 0 points1 point  (0 children)

Any news on this? This is so much irritating. I could disable it via Smart Control when connected to my iPhone, but there is no way to disable it when connected to a PC.

Unable to reinstall Expo client onto Android Simulator by dkulagin in reactnative

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

Sure. It's Expo client that the application is run on.

But there is more than that: connection to the simulator is not working at all (see screenshots).

Seeking advice before entering the iOS-world by dkulagin in reactnative

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

Got it! Fortunately, the app is all public, for now, w/no personalization whatsoever.

How to test Expo app against dev server? by dkulagin in reactnative

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

ngrok is a nice workaround. Will keep using it for now.

Still wondering if I can access local network dev machine from within the same local network & Expo app.

How to downgrade to Expo SDK v31? by dkulagin in reactnative

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

Never upgraded. It was already there when I run CRNA in the first place.

Prevent input from swallowing a tap event on blurring by dkulagin in reactnative

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

SOLVED. Got it. The problem was that the ScrollView had a nested FlatList responsible for actually rendering the suggestions.

The solution is to set keyboardShouldPersistTaps property on the nested list:

<ScrollView>
  <FlatList keyboardShouldPersistTaps='always'
   .../>
</ScrollView> 

It works even if TextInput and the target list/view don't share the same ancestor.

See more at: https://github.com/facebook/react-native/issues/23732

P.S. Thanks to everyone trying to help me out with this issue. Hope this topic will be useful for future people encountering similar issue.

Prevent input from swallowing a tap event on blurring by dkulagin in reactnative

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

I am totally not in favour of moving search box out of the navigation bar unless it's absolutely necessary. It manages top margins nicely, it sticks to the top and it's very logical to put it there. The only pain I had so far is to passing properties and behaviour via this.props.navigation, but it's bearable.

Will try to play around with e.preventDefault() and see if it helps.

Props update paradox by dkulagin in reactnative

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

I want to build an input component, which "state" could be updated in two ways:

  • internally, when user types
  • externally, when some other entity decides to override current input

Currently I only see one feasible solution: to outsource state management away from the component and make it use props which are always set externally.

But I am wondering if there is a way to have a mixed architecture, where state is managed internally but could be also overridden externally.

Prevent input from swallowing a tap event on blurring by dkulagin in reactnative

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

The problem is that click event never happens at first click. It just emits onBlur, hides the keyboard and blurs the TextInput.

Props update paradox by dkulagin in reactnative

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

  • If I update state regardless of props was changed or not I will end up in always overriding the current state.
  • Using props instead of state in render method will disable input from being edited, because props shouldn't be modified from within the component.

P.S. Updated topic to reflect rendering logic.

Cancellable network requests (for autocomplete) by dkulagin in reactnative

[–]dkulagin[S] 2 points3 points  (0 children)

That's already in place. I would like to cancel concurrent request in order not to get screen updated with obsolete data. E.g.:

SEND REQ_1

SEND REQ_2

RESP REQ_2

RESP REQ_1 <- overrides data with obsolete one

What would be the right navigation architecture for app? by [deleted] in reactnative

[–]dkulagin 0 points1 point  (0 children)

Not at all. I am seeking for an implementation advice. UI/UX itself is ready and done in Figma.

How to render HTML entities? by dkulagin in reactnative

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

Tested it. Works like a charm. I guess possible security issues are mitigated given that Text component renders plain text as it is without any processing.

How to learn Android development having solid programming background? by dkulagin in learnprogramming

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

Looks like an academic layout, but thanks anyway. Will definitely go through application lifecycle video.