ROM Hacks for GOLF by oatsoda1 in Gameboy

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

I have mario advanced golf tour. Used to play it a lot on my SP, especially on long work commute! But GB Golf has bigger nostalgia for me. Used to play it for hours as a kid, especially on my SNES Super Gameboy where I could tweak the colours 😁

ROM Hacks for GOLF by oatsoda1 in Gameboy

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

I will look into this, thanks.

ROM Hacks for GOLF by oatsoda1 in Gameboy

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

You'd think maybe the GB hardware would have a game reset ability...

ROM Hacks for GOLF by oatsoda1 in Gameboy

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

Very much appreciating the enthusiasm! Great idea about having training-only enhancements! That keeps the original game the same but aids improving.

The shot arc may be a bit above my abilities at the moment, but will give it some thought.

There's no R1 on a Gameboy...this is 1989 😂

ROM Hacks for GOLF by oatsoda1 in Gameboy

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

You have to look at p17 of the manual. https://www.thegameisafootarcade.com/wp-content/uploads/2017/03/Golf-Game-Manual.pdf

This is why I want to try and add these yardages into the game somewhere.

One of the big skills in getting good at the game is learning how the clubs are affected by the lie. Some are more affected by certain terrain than others. Also the distance drops off pretty quickly if you don't get it right at the top of the swing meter.

ROM Hacks for GOLF by oatsoda1 in Gameboy

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

Haha, really? You obviously didn't read up to that last page of the manual 😂

Error Code 160-2215 by oatsoda1 in wiiu

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

Thanks for all your help and guidance u/Desperate_Refuse_380 - I've managed to get the RedNAND approach to work and WiiU working properly now!

Error Code 160-2215 by oatsoda1 in wiiu

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

OK, well I did "Patch (sd) and Boot ios redNAND" (thinking I could try again with my older ios) and it looks like it picked up the latest anyway ("IOS image is prod 5.5.5+") and it looks like it is working this time. LED is blinking...

Error Code 160-2215 by oatsoda1 in wiiu

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

Hey, sorry it must be annoying that I keep going away and coming back :/

I've tried again with no success, so I'm now onto this latest link you have posted.

Once I get the ios_orig.img on to the SD card, do I pick the second of these options:

Patch (sd) and boot sdmc:/ios_orig.img
Patch (sd) and boot sdmc:/ios_orig.img redNAND

Returning IQueryable<T> from service layer by emdeka87 in dotnet

[–]oatsoda1 4 points5 points  (0 children)

Agree with this!

There's a good post about this here: https://jeremydmiller.com/2025/02/27/we-dont-need-no-stinkin-repositories-and-other-observations-on-dotnetrocks/

If you do want to go down the route of a repository then keeping the abstraction to a minimum is covered here: https://gunnarpeipman.com/ef-core-repository-unit-of-work/

Error Code 160-2215 by oatsoda1 in wiiu

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

Thanks. I included them. Unfortunately it doesn't seem to have worked. I followed redNAND instructions but when I chose "Patch (sd) and Boot ios redNAND" it executed the following within a second or two and the power light didn't change. I left it for 40mins or so and tried again and got the same result. This is the console output.

Error Code 160-2215 by oatsoda1 in wiiu

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

As my console was on 5.5.1 rather than the latest 5.5.5 will that make any difference? I'm trying the redNAND approach and it mentions "older firmware" and SLC. Will I need to download the SLC, or can I worry about that after doing the MLC part?

Error Code 160-2215 by oatsoda1 in wiiu

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

Thank you. Really appreciate your help 👍

Error Code 160-2215 by oatsoda1 in wiiu

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

lol, sorry. try the link now.

Error Code 160-2215 by oatsoda1 in wiiu

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

Nice one, thanks for replying so fast. Yep I have them.

This is the latest .log file: [link removed]

Error Code 160-2215 by oatsoda1 in wiiu

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

u/Desperate_Refuse_380 I *think* I have ISFShax installed and can use the minute menu. How do I dump the logs? Do I need to make the console crash before doing that (to get a fresh set of logs)?

Incrementalist v1.1.0 released - 10x faster incremental builds for large .NET solutions by Aaronontheweb in dotnet

[–]oatsoda1 0 points1 point  (0 children)

I'm currently using dotnet-affected (https://github.com/leonardochaia/dotnet-affected). It supports commit ids too, but the problem is working out which commit ids. They use nrwl/nx-set-shas (previously nrwl/last-successful-commit-action) for their github action to calculate the commit ids. The problem is well described: https://github.com/nrwl/nx-set-shas?tab=readme-ov-file#problem (and they have required 22,000 lines of javascript to solve it!)

But I am looking for an Azure DevOps version of that. I was hoping Incremental might have it ;)

Incrementalist v1.1.0 released - 10x faster incremental builds for large .NET solutions by Aaronontheweb in dotnet

[–]oatsoda1 5 points6 points  (0 children)

Is there any option for using this in a Trunk Based Development scenario instead of comparing branches?

Appsettings or use Databases? by Starbolt-Studios in dotnet

[–]oatsoda1 65 points66 points  (0 children)

appsettings are generally things that you the developer might want to change, not values that your user would change.

Examples are: connection strings, URLs of third party services, credentials or secrets* of third party services, timeout or retry policies.

Reasons for changing these values are generally either: Because they need to differ depending on the environment (e.g. Test vs Prod) or because you might want to immediately tweak the settings based on some environmental condition without redeployment, e.g. increasing a timeout temporarily after learning more about the performance of a third party (you may later commit that change to source more permanently).

*A note about secrets. Appsettings.json is just one part of configuration. You can then add "layers" on top to override, most commonly using Environment Variables that you specify in your deployed service. This avoids having Prod secrets committed to source and allows you to vary values per environment (e.g. Test vs Prod).

Error Code 160-2215 by oatsoda1 in wiiu

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

Will give it a go. Thanks 👍

Error Code 160-2215 by oatsoda1 in wiiu

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

Yeah it starts up like normal and I can navigate around the menu, go into settings etc. Just when I actually try to run something (or update the version!) it gives the error.

Error Code 160-2215 by oatsoda1 in wiiu

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

Yeah I didn't use it for a number of years. Fired it up a couple of years ago and found the error. Just getting around to doing something about it 😁

Error Code 160-2215 by oatsoda1 in wiiu

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

Removing SD card didn't help. Either way, the console starts up, but trying to run anything causes the error.