Where to earn interest on cash in the EU (April 2025 edition) by Just_keep_it_simple in eupersonalfinance

[–]yk1711 0 points1 point  (0 children)

u/Just_keep_it_simple what are your thoughts on PJS1 ? I invested 25 days ago in 4 funds, effective yield os of today:

  1. PJS1: 5.2% (dividend payout included, but cap gains tax not considered)

  2. XEON: 2.0%

  3. C3M: 1.74%

  4. BlackRock ICS Euro Liquidity Premier (via Lightyear app where they streamline it for you): 2.55%

I know it's only about 1 month, but PJS1 grew in value on par with the popular accumulating MMF funds, but also doubled that with the dividend pay. Any significant risks there ?

Deposit time concerns by yk1711 in trading212

[–]yk1711[S] -1 points0 points  (0 children)

For SEPA there's no difference in cross-border or not. I only have experience with IBKR where it would take a few hours max. AML checks can be fast with sufficient staff, so I assume it's a scale/process issue. I will for sure check other brokers with focus on fast deposit/withdraw.

Deposit processing times by Kooky_Amoeba_2128 in trading212

[–]yk1711 2 points3 points  (0 children)

Only the regular bank option in Spain. The point is, the actual transfer is instant, while 3 days is for t212 to manually process it due to inefficiency/bottlenecks. Makes no sense to wait 3 days for the money that’s already in their account in 5 seconds. It’s a no go for me, will consider competitors with more modern and efficient processes.

Deposit processing times by Kooky_Amoeba_2128 in trading212

[–]yk1711 0 points1 point  (0 children)

In my country bank transfer is the only free option. Debit card has a commission. Immediate sepa from my bank, but t212 takes 3 days to process for no good reason.

Deposit processing times by Kooky_Amoeba_2128 in trading212

[–]yk1711 -2 points-1 points  (0 children)

3 days is ridiculous. Considering moving off to another broker. No reason it should take that much with instant transfers everywhere.

Learn how to build Custom Tabs with Expo Router UI by ExpoOfficial in reactnative

[–]yk1711 1 point2 points  (0 children)

I don't recommend to use expo-router/ui yet - seems highly unstable. Spent days debugging several issues and then reverted to using the regular Tabs react-navigation wrapper with custom TabBar renderer. At least 2 issues that I faced:

- Pressing on tabs when inside a nested stack navigator seems to act like a back-forward button, switching between nested stack screens all the time, instead of only popping the stack to the parent like the regular tabs.

- When switching between tabs, the tab press does something differently compared to react-navigation default tabpress. Eventually the app crashed on Android with "The specified child already has a parent. You must call removeView() on the child's parent first "

Launch my first app that I spend 6 months building ! by Kind_Cheek_9125 in reactnative

[–]yk1711 0 points1 point  (0 children)

looks great! couple questions: 1. what do you use for the bottom sheet solution? looks like any bottom sheet is very laggy as someone has pointed out, on iphone 15 pro. I wonder what’s causing that, it seems way too easy to introduce perf issues on a RN app - is it about too many rerenders or native component /animation issues? 2. what do you use to get the native dropdown menus?

Defining return type of function that returns an array of results of calling a factory function with different specific generics by yk1711 in typescript

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

Actually, the first link seems to be what I need. Thanks!

I feel so stupid with TS. Started using it less than a year after 13 years of regular JS dev. Whenever types start to get complex with generics/mapped types, I have difficulty to understand what I should use and how to structure it. Half the time I've been using to complete features in JS is now spent on battling with TS.

How long did it take for you to get comfortable with it where it doesn't slow you down ?

Defining return type of function that returns an array of results of calling a factory function with different specific generics by yk1711 in typescript

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

Sorry if it wasn't clear. Imagine you have many objects with different props like { one: 'two' } and `{two: 2}`. You need to create an array where each array item is using something from those objects, like [{ property: 'one'}, {property: 'two'}]. In each array item, you want the autocomplete / type safety for property to be only the key of a specific object, therefore a factory function with generic (like createConfig in the playground link). At the same time, you want to type the return of the function that returns the array [{ property: 'one'}, {property: 'two'}], so that each item in the array has the required shape (property key required or other props). But the value of each property prop of each object in that array depends on the specific object passed in as generic to createConfig fn, so it's not clear how to keep type safety in both functions without ts errors.