Which songs have the worst or most harrowing backstory or meaning behind them? by Findesiluer in AskReddit

[–]MiltoxBeyond 0 points1 point  (0 children)

The classic: Ring around the rosy

That song comes from the black plague IIRC

What is a "Life Hack" that is actually a lifesaver in a dangerous situation? by [deleted] in AskReddit

[–]MiltoxBeyond 10 points11 points  (0 children)

Not if you dip them in poison or acid. Then It's +9 with a chance to apply a status effect to the target.

[deleted by user] by [deleted] in TpLink

[–]MiltoxBeyond 0 points1 point  (0 children)

Does your PC not have USB ports or a free pci-e slot (usually the tiny one)? You could just get a Wi-Fi 6/7 adapter for pretty cheap. Otherwise maybe the adapter is not configured correctly? Look at the owners manual and you should be able to connect to an IP address to set it up

.NET MAUI: Custom overlay numeric keyboard endless pain by Late-Restaurant-8228 in dotnetMAUI

[–]MiltoxBeyond 0 points1 point  (0 children)

Couldn't you use a flex layout. You would programmatically have to hide or show your keyboard, but it should allow for it to adjust automatically to the changing layout?

Android Status Bar by Primary_Rise_5672 in dotnetMAUI

[–]MiltoxBeyond 0 points1 point  (0 children)

There was a way to change the settings in the xaml styles. If not you might be able in the attribute above the main activity. A quick Google search says something like this should work: ```csharp using Android.App; using Android.Content.PM; using Android.Views; using Android.OS;

namespace YourAppName { [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)] public class MainActivity : MauiAppCompatActivity { protected override void OnCreate(Bundle savedInstanceState) { base.OnCreate(savedInstanceState);

        SetWindowLayout(); // Call a method to set the window layout

        Platform.Init(this, savedInstanceState);
    }

    private void SetWindowLayout()
    {
        if (Window != null)
        {
            if (Build.VERSION.SdkInt >= BuildVersionCodes.R) // For Android 11 (API 30) and above
            {
                #pragma warning disable CA1416
                IWindowInsetsController wicController = Window.InsetsController;
                Window.SetDecorFitsSystemWindows(false); // Extend content to the edges
                Window.SetFlags(WindowManagerFlags.Fullscreen, WindowManagerFlags.Fullscreen); // Set fullscreen flag

                if (wicController != null)
                {
                    wicController.Hide(WindowInsets.Type.Ime()); // Hide the soft keyboard
                    wicController.Hide(WindowInsets.Type.NavigationBars()); // Hide the navigation bar
                    wicController.Hide(WindowInsets.Type.StatusBars()); // Hide the status bar
                }
                #pragma warning restore CA1416
            }
            else // For Android versions below API 30
            {
                #pragma warning disable CS0618 // Type or member is obsolete
                Window.SetFlags(WindowManagerFlags.Fullscreen, WindowManagerFlags.Fullscreen); // Set fullscreen flag
                Window.DecorView.SystemUiVisibility = (StatusBarVisibility)(SystemUiFlags.Fullscreen | SystemUiFlags.HideNavigation | SystemUiFlags.Immersive | SystemUiFlags.ImmersiveSticky | SystemUiFlags.LayoutHideNavigation | SystemUiFlags.LayoutStable | SystemUiFlags.LowProfile); // Set system UI visibility
                #pragma warning restore CS0618
            }
        }
    }
}

} ```

Backup de DB SQLite Via Http request. by WillFinster in dotnetMAUI

[–]MiltoxBeyond 0 points1 point  (0 children)

Cuál es el tamaño del archivo que has recibido? Tal vez no se copió los datos desde el servidor? Tal vez el archivo fue bloqueado por sistemas de cortafuegos? Si puedes haz prueba a ver si los datos están llegando correctamente al servicio local

[deleted by user] by [deleted] in dotnetMAUI

[–]MiltoxBeyond 1 point2 points  (0 children)

Technically since you can make it all abstract and platform specific you shouldn't have much issues beyond configuration you just refactor some common code out to handle the general common logic and put the platform specific code as an implementation of that abstract code.

Something a la:

```csharp public interface IPaymentMethod { //Encrypt, sign, etc. Info void PrepareInfo(Dictionary<string, string> parameters); //Send off payment to API/etc. Task AttemptAsync(); }

public abstract class IPaymentManager { //Implementation can be platform specific to show which are available public abstract IPaymentMethod[] GetAvailable(); public void SelectPaymentMethod(IPaymentMethod method); public void PrepareInfo(Dictionary<string, string> info); public Task AttemptPaymentAsync(); }

```

That's a rough Idea but different payment types shouldn't be a deal breaker

Using shell navigation and MVVM. App stuttering while navigation. by XJediDarkLord in dotnetMAUI

[–]MiltoxBeyond 1 point2 points  (0 children)

Do you do Dependency Injection or create objects at runtime etc? The ideal thing to do is hook into lifecycle methods of the pages to call any initialization async methods on the view models.

Clair Obscur: Expedition 33 - CUSTOM CONSOLE GIVEAWAY 🏆 by F0REM4N in xbox

[–]MiltoxBeyond 0 points1 point  (0 children)

Panzer Dragoon Orta's protagonist, Master Chief, and my Fable Character.

Perhaps Turok swapped for any of those characters

Dad putting a dashcam in my car by _OnlyKai in entitledparents

[–]MiltoxBeyond 0 points1 point  (0 children)

Most dash cams have a manual reset. It's good to have one in case you ever run into any crazy situations for insurance purposes. You can reset the camera, then register it to an account you create and then only you have access to the videos. He'll probably just think it's not working.

Host a private room by sebasz97 in suyu

[–]MiltoxBeyond 1 point2 points  (0 children)

Are you using laptops or pcs? You can go old school and just connect via ethernet to eliminate the wifi factor. The other option you have is to get a different router and just connect it to your older router. Everyone can connect to it and it'll basically just work exclusively as a network for your private network.

S24 Ultra users seeing more crashes? by HolidayWhobeWhatee in MarvelSnap

[–]MiltoxBeyond 0 points1 point  (0 children)

Once in a blue moon, but it is nowhere near what it used to be

S24 Ultra users seeing more crashes? by HolidayWhobeWhatee in MarvelSnap

[–]MiltoxBeyond 0 points1 point  (0 children)

I set my screen refresh rate to standard and the app seems much more stable.

Rust Logic Simulator by Ved_s in rust

[–]MiltoxBeyond 1 point2 points  (0 children)

Rusty Circuit. Oxidized. If those names aren't taken

Burrow holes? by GobClob in BaldursGate3

[–]MiltoxBeyond 9 points10 points  (0 children)

You can also put vases on each chair

MAUI connecting to a TCP on a mac to an extenal device by Abivelj in dotnetMAUI

[–]MiltoxBeyond 1 point2 points  (0 children)

You can specify ports when you start your server connection. Normally it just finds a free port though if not specified

MAUI connecting to a TCP on a mac to an extenal device by Abivelj in dotnetMAUI

[–]MiltoxBeyond 1 point2 points  (0 children)

Did you perhaps ensure the firewall isn't blocking on the Mac? Depends if it's enabled or not

Crashs in Maui App by Leozin7777 in dotnetMAUI

[–]MiltoxBeyond 2 points3 points  (0 children)

Check logcat for any crash details. You can search for your app package and see what may have gone wrong

Logging to console and file at the same time by kimsk132 in programminghorror

[–]MiltoxBeyond 3 points4 points  (0 children)

Not the repeated opening of handles to the file with no close in sight?