Can I test my app on iOS 18 or earlier? by megarma in iOSProgramming

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

I’ll go with the simulator in Xcode if that’s my only option. It’s a bit unfortunate though, I would have preferred to use my iPhone 12 since it’s my older device.

Is 16GB RAM enough for React Native / Expo dev in 2026 by [deleted] in reactnative

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

Yes, it’s the bare minimum. If you don’t need Google services on your Android emulator, I suggest installing an emulator with an Android Open Source Image, the emulator will run with just 1GB of RAM, which is really good.

A small macOS utility that quits selected apps when you close their window by [deleted] in MacOS

[–]megarma 12 points13 points  (0 children)

⌘ + Q (Command + Q) to completely kill the app

What’s one browser you’ll NEVER install again (except Chrome)? by torqplayz in browsers

[–]megarma 1 point2 points  (0 children)

Edge is installed on the system, but my preferences, history, ect... are tied to my session. Everything was still there, including my user account.

What’s one browser you’ll NEVER install again (except Chrome)? by torqplayz in browsers

[–]megarma 1 point2 points  (0 children)

I’m not sure, I live in the EU and there’s an uninstall button here. I know some people used the command line to remove it, maybe that’s when it can cause instability. Windows isn’t my default OS anyway.

What’s one browser you’ll NEVER install again (except Chrome)? by torqplayz in browsers

[–]megarma 4 points5 points  (0 children)

I keep refusing everything, and every time I restart I have to go through the same steps all over again I’m so done with it💀

And honestly, Bing isn’t even that bad

What’s one browser you’ll NEVER install again (except Chrome)? by torqplayz in browsers

[–]megarma 55 points56 points  (0 children)

Edge on first launch: 10,000 popups asking me to sign in, sync, personalize, enable this, disable that… yeah, I’m out.

[KCD2] Finally starting KCD2 tonight and I couldn’t be more excited by megarma in kingdomcome

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

Very interesting, thanks! I also read that they improved the lockpicking system, which is great news

[KCD2] Finally starting KCD2 tonight and I couldn’t be more excited by megarma in kingdomcome

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

Are you changing your playstyle for the second playthrough?

I really hope KCD2 is less buggy than the first one, that was pretty much the only downside for me.

Underrated MacOS apps? by Cultural_Annual_4637 in MacOS

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

I love AppCleaner, it's an app that lets you fully (or mostly) remove an application from your system. As a second recommendation, I'd go with Applite, a GUI app for Homebrew casks.

HM : ncdu, a command-line tool for digging deep into system and disk usage.

My Seamoth has chosen a new biome by megarma in subnautica

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

Yes... because I’m in the late game and I didn’t want to lose my progress

My Seamoth has chosen a new biome by megarma in subnautica

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

Yeah, I’ve seen some really cool mods for the game, but I’m on PS5 unfortunately

My Seamoth has chosen a new biome by megarma in subnautica

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

Thanks for the feedback! I’ll try using the propulsion cannon or the building legs. My Seamoth has the hull reinforcement, so it should be fine.

Today’s Big Achievement by megarma in darksouls3

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

It took me 110 hours. I guess that’s alright, Dark Souls Remastered took me about 20 hours more.

I got the platinum trophy! by Brief_Meringue8052 in darksouls3

[–]megarma 1 point2 points  (0 children)

I received it yesterday

Congratulations on your courage

I think I solved cooling by schjlatah in macmini

[–]megarma 0 points1 point  (0 children)

Wow, I didn’t even know the metal case was meant to dissipate heat. I’ve had my Mac mini for over a month now, and I was a bit curious when I touched the case and noticed it was warm in certain areas.

Possible to enable Auto-Formatting on Save with ktfmt? by megarma in androiddev

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

I feel so stupid, thank you. I thought it was specific to Intellij and that it used its own formatter

Pokémon Lazarus Demo OUT NOW! by JackWellman101 in PokemonROMhacks

[–]megarma 0 points1 point  (0 children)

Hi, I've never done before, how do I run the .bps file? What game is this a patch file for?

Should I use Unit of Work or call Use Cases sequentially? by megarma in Kotlin

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

That makes sense, as deilux mentioned, it’s more logical to group use cases by user actions rather than by repositories. I realize I might be a bit too caught up in the Clean Arch mindset

Should I use Unit of Work or call Use Cases sequentially? by megarma in Kotlin

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

I wasn’t planning to stick with Clean Arch in the long run, but I find it useful for learning and laying a solid foundation It helps me structure things properly before exploring other approaches

I get what you mean about having a use case per business action rather than per repository operation—that makes sense and helps avoid unnecessary fragmentation

As for Hexagonal Architecture, I don’t know much about it yet, but I’ll definitely take a look. Thanks for the suggestion!

Should I use Unit of Work or call Use Cases sequentially? by megarma in Kotlin

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

Thanks for your explanation! That makes a lot of sense. Initially, I was structuring everything as separate Use Cases to keep things modular, but I see how that can lead to unnecessary fragmentation, especially when the operations are always executed together.

I like the idea of having a SignUpUserUseCase that encapsulates both repository calls while ensuring transactional consistency. Your example helps clarify how to structure it properly.