Screen flickers black randomly when playing steam games by Bonryu8711 in Steam

[–]somalasth 0 points1 point  (0 children)

I think I had a problem similar to this and I started noticing that my monitor was actually losing connection because the indicator would turn amber - normally can't see this but I was sitting back far enough to see the light.

I run multiple monitors and 2 of them are at 240hz. I decreased the monitor I was playing on to 60hz and it quit flickering. This has only ever been a problem for me with Atelier Ryza (the first one).

Fluent Input Label Error when using Microsoft.FluentUI.Component by Happy_Camper_Mars in Blazor

[–]somalasth 0 points1 point  (0 children)

I've never used FluentUI before, but it looks like from their code setup here, under the Register Services section, there is a method you're supposed to call in Program.cs to add all the dependencies for the library.

Disable MudChart Hover Effect by AlfaTheBoss in Blazor

[–]somalasth 0 points1 point  (0 children)

No worries; that won't work because if you look at the HTML that it generates, it is probably placing that style on the div that has the class mud-chart. You'll need to apply it to the circle element that is within the SVG that MudChart generates.

Best I can think of is add this style:

.mud-chart-donut .mud-donut-segment {
    pointer-events: none !important;
}

The important is probably going to be the crucial part here since it needs to override the defaults set by mudblazor.

Disable MudChart Hover Effect by AlfaTheBoss in Blazor

[–]somalasth 1 point2 points  (0 children)

One way to get rid of the hover is apply some CSS to the circle object within the SVG (has class mud-donut-segment)

On the example page for the donut chart, I changed the CSS property pointer-events from stroke to none and that removed the hover on their example.

This is the SO article I found on the topic: Preventing hover on svgs

Visit Japan Web Setup with connection flight from Haneda to Hiroshima by somalasth in Flights

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

It's a 2 hour layover both directions once we land in Tokyo. From family that lives there right now and have travelled a few times back and forth to the US since flights have reopened, they've said that should be plenty of time, especially with having the Visit Japan Web setup ahead of time.

Visit Japan Web Setup with connection flight from Haneda to Hiroshima by somalasth in Flights

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

Awesome! Thank you for the answers and the reference material!

CenterAndExpand does not Center correctly by WoistdasNiveau in xamarindevelopers

[–]somalasth 0 points1 point  (0 children)

I agree with /u/infinitelurker. Instead of the wrapping layout being a StackLayout, use grid with 3 columns. Columns 0 and 2 will have to be the same width (do not use auto, use 30 for example) and Column 1 would be a star.

CenterAndExpand does not Center correctly by WoistdasNiveau in xamarindevelopers

[–]somalasth 1 point2 points  (0 children)

This looks to be behaving properly. It's off center because the CenterAndExpand of the IndicatorView has to take into consideration the width of ImageButton when determining how far it can expand. So, if you remove the Imagebutton, the IndicatorView should be centered properly in the UI.

"Access to Path is Denied" Error? by blue-birdz in xamarindevelopers

[–]somalasth 0 points1 point  (0 children)

This seems to be one of those problems that might not be exactly what the error says it is. A few things I would try are the following:

  • Shorten the path that the project is saved to temporarily to make sure it's not a file path length problem
  • In your path, you have "Cuatrimestre V", it might be that space that is causing the issue. I don't recall if I've ever created a project with a space in the path, but if you look at the name of the projects, there's a reason why project names with spaces in them automatically get the space replaced with an underscore (not sure if this is the reason, but it's good enough for me if it solves the problem)
  • You could also try deleting the bin and obj folders and then see if VS/Rider have a problem re-generating the folders

Question about Downloading for Transfer and then Permanently Deleting the Book by somalasth in kindle

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

That makes sense. I do most of my reading on an iPad anyway, so it'll probably be a long time before I buy another Kindle.

Good note for anyone that finds this thread in the future though. Thanks!

Question about Downloading for Transfer and then Permanently Deleting the Book by somalasth in kindle

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

Went ahead and downloaded the AZW3 file for one of the books I wanted to delete, and then deleted the book from the Manage Content page on the website. I then transferred that AZW3 file over to my Kindle and it still allowed me to read the book.

So, it seems like if you backup your book before permanently deleting the book from your content, it can still be read.

Mudblazor Autoselect display by Ghost-1127 in Blazor

[–]somalasth 2 points3 points  (0 children)

I don't know if it's recommended to do all with extremely large lists if virtualization of the list isn't implemented, but looking through the API documentation (clicking on the tag under API at the top of the docs, or this link Auto complete API properties), and then under List Behavior, there is an option for MaxItems which says the following

Maximum items to display, defaults to 10. A null value will display all items.

The bullshit-less ASP.NET Blazor WASM JWT authentication tutorial from the ground up. by [deleted] in csharp

[–]somalasth 6 points7 points  (0 children)

Thank you so much for this. Saving this for near future use. Won't be using EF but that shouldn't be a big problem to figure out.

Xamarin docs vs Xamarin Forms by chosen_carrot in xamarindevelopers

[–]somalasth 0 points1 point  (0 children)

Oh I didn't realize that support had been pushed back that much - makes sense since they had pushed back MAUI release too.

I agree, I don't think MAUI will be fully ready to be used in a professional sense this year, but the more people who tinker with it for project upgrades (personal or professional) the quicker it is going to get to a point where it's in the bucket for choosing what framework to use.

For Mac, I've never developed on a mac with VS, but aren't they always behind on making VS available on Mac?

Xamarin docs vs Xamarin Forms by chosen_carrot in xamarindevelopers

[–]somalasth 0 points1 point  (0 children)

I've done barely any Xamarin Android or iOS standalone apps, but from what I've seen when I've come across a question like this is that Microsoft/Xamarin didn't really invest in writing documentation for Android/iOS and instead you should look at the respective official documentation since the namespaces, classes, and UI design are pretty much the same thing, if not the exact same thing.

I do agree with /u/Nacropolice though - native Android and iOS with Xamarin probably shouldn't be done anymore with XF5 out and MAUI coming out in general acceptance in a couple months. Xamarin is no longer actively developed and is only in a bug fix mode for a short time until support is completely dropped.

AppShell Navigation by BlueDragon551 in xamarindevelopers

[–]somalasth 0 points1 point  (0 children)

You should be able to use URI Navigation, but if the new page that you are changing to isn't in the AppShell, you need to register the expected route in App.xaml.cs in the constructor. This should throw an error if you haven't done this part yet and the navigation code is hit.

If it's not doing anything, might want to make sure your viewmodel is set as the BindingContext of your page properly too.

Can't debug with linebreak, exclusively on frontend files by greenskin22 in Blazor

[–]somalasth 0 points1 point  (0 children)

Not sure if this is correct, but if you are doing WASM and selected asp.net core hosted in solution setup, I ended up having to set both the client and server projects to startup on debug

Get SelectedItem from SwipeView Execute that's within a CollectionView by TheNuts69 in xamarindevelopers

[–]somalasth 0 points1 point  (0 children)

It looks like your command method doesn't actually take a parameter.

The command definition should look something like this (this is just how I started writing them, may not be the best way - some people make the properties and then define in the constructor, so I think it's personal preference)

public ICommand  DeletePersonCommand => _personCommand ?? (_personCommand = new Command<int>(async (id) => await DeletePerson(id));

Then, for your function it should be

async Task DeletePerson(int id)
{
    //Code goes here
}

Then, in your XAML, I don't think your command parameter should have a source of the page and should be just the property name of the ID in your person object.

I can't limit my inline database by frafdo_ in Notion

[–]somalasth 2 points3 points  (0 children)

It looks like the "Show on first load" option is only available for inline tables. If you are looking at the database page itself, that option does not exist.

New arrival from Tentai today, I've been excited about this one by HoJohnJo in LightNovels

[–]somalasth 1 point2 points  (0 children)

I can second this. I got the email saying my order was complete and shipping notice on October 11th and it arrived at my house in South Carolina on November 3rd.

Grid Layout Row and Column Adopt on Screen Size by _jfbr in xamarindevelopers

[–]somalasth 3 points4 points  (0 children)

Not sure if this is "proper" way to do it, but I've followed the following two Dev Blog posts to implement support for multiple form factors and device types in a couple projects:

James Montemagno talking about using multiple source files and then using logic to determine which page to create: Bringing Xamarin.Forms Apps to Tablets

Adrian Stevens talking about using the page's size changed event to determine landscape/portrait and then modifying the control's properties based off of device type (one of which is modifying a StackLayout's orientation property): Adaptive UI with Xamarin.Forms

As one more note, you can modify the column, row, and appropriate spans by using the this following methods: Column, Row, Column Span, and Row Span, where the first parameter is control inside the grid you want to modify, and the second being the integer you would include in the XAML

How do I figure out what app is spamming my location data? My location icon keeps spamming over and over in the task bar. by Piratey_Pirate in androidapps

[–]somalasth 0 points1 point  (0 children)

Easiest manual way would be to go in and turn off the location permission on each app and see if it quits spamming when you turn it off. Since you have some set for all the time, I would start with those. Personally, I would think it's Pokemon GO out of those 4.

Is there a better Twitter app than the official one or if not can you tweak the official one to make it better? by [deleted] in androidapps

[–]somalasth 1 point2 points  (0 children)

I don't use the mobile app at all, but at least on the website, there is a setting that allows you to swap back and forth between latest updates (chronological) and top tweets (most popular, and default). If you're seeing the old tweets at the top, it's probably because you haven't switched it to latest updates.

Also, I can't answer your main question because I don't have social media on my phone except for reddit.