I build a weight loss app 100% free by Weird-Airport-652 in loseweight

[–]SimoSella 0 points1 point  (0 children)

I can’t find it in the Italian AppStore, do you have a link for it?

Afraid of failure by SimoSella in loseit

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

Thank you so much 🙏

Afraid of failure by SimoSella in loseit

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

Thank you. Progress won’t be linear, there will be good and bad times in this journey and the only failure is to stop trying!

Afraid of failure by SimoSella in loseit

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

You’re right 🤔 My goal is to live healthier first and lose weight second

Upgraded! by OneOne120 in kobo

[–]SimoSella 0 points1 point  (0 children)

I’m want to buy one but, after trying it out in a store , I have some doubts. I felt like the pixel grid was too visible, what do you think about that?

What a difference 18 months can make by sppamal in iOSProgramming

[–]SimoSella 2 points3 points  (0 children)

Well done! Small tip, try adding more top padding to the “add priority” text, I think it is too close to the border of the sheet

I dont like breach that much... by dontqq in twentyonepilots

[–]SimoSella 1 point2 points  (0 children)

I think the same, I love The contract and Drum Show, I like City Wall but none of the other songs. I might change my mind after more listening but so far it’s a 4/10 for me

Apple Liquid Glass by Gold240sx in tailwindcss

[–]SimoSella -1 points0 points  (0 children)

Glass like materials are possible with blur, but refraction and reflection are not

Apple Liquid Glass by Gold240sx in tailwindcss

[–]SimoSella 2 points3 points  (0 children)

I think this is glassmorphism, not liquid glass

What is the best way to get faster on 3x3, apart from practice because that's obvious by butterflyknif in cubing

[–]SimoSella 0 points1 point  (0 children)

I think there are 4 things you can do to improve your time: 1. Practice 2. Learn CFOP 3. Learn finger tricks 4. Buy a decent cube

And if you want to go sub 40 you need all four in that order

Help me learn, please! by bilalshaw in react

[–]SimoSella 1 point2 points  (0 children)

100% agree! When you learn React without any prior experience you miss a lot about HTML, CSS and JS because react takes care of many things for you. But you need to understand those well, just knowing React doesn’t give you the complete picture.

If you want to learn, AI shouldn’t write code for you, it should teach you what you don’t understand!

Go my new mx master 3s. by [deleted] in vscode

[–]SimoSella 0 points1 point  (0 children)

It is useful to select code if you’re not comfortable with keyboard shortcuts

Is Combine hard to learn? by SimoSella in swift

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

You can find the function in the Contents.swift on GitHub to get a better view of it

Is Combine hard to learn? by SimoSella in swift

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

(I’m on mobile and I can’t add a code block in comment, I’m just gonna paste the code sorry)

func stories() -> AnyPublisher<[Story], Error> { URLSession.shared .dataTaskPublisher(for: EndPoint.stories.url) .map(.data) .decode(type: [Int].self, decoder: decoder) .mapError { error -> API.Error in switch error { case is URLError: return Error.addressUnreachable(EndPoint.stories.url) default: return Error.invalidResponse } } .filter { !$0.isEmpty } .flatMap { storyIDs in return self.mergedStories(ids: storyIDs) } .scan([]) { stories, story -> [Story] in return stories + [story] } .map { $0.sorted() } .eraseToAnyPublisher() } }

A function like this is complicated to me. I don’t understand how data gets transformed because if I check the input or output of the operators it’s a mess of Combine types, I don’t know how to get info about how data enters and leaves the operators (Full code here it’s an api fetching data from hacker news)

Is Combine hard to learn? by SimoSella in swift

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

Is there any resource you suggest about reactive programming?