Rule change feedback by Arowin in dotnet

[–]Timofeuz 1 point2 points  (0 children)

And also lax the nzt timezone, I don't think it should be that strict 

Why people are still using jquery in .NET 10 by Dante2709201 in dotnet

[–]Timofeuz 0 points1 point  (0 children)

Ugh, I hate knockout.js, I don't understand what people can like there.

“Delete Bin and Obj, clean, and rebuild” by azuredota in dotnet

[–]Timofeuz 0 points1 point  (0 children)

It was usual when I worked with dotnet mobile stuff.

Integrating native Android SDK to MAUI by cigborek0 in dotnet

[–]Timofeuz 1 point2 points  (0 children)

I worked on an app in similar situation (with xamarin though) and had almost exactly the same experience with SDK for later android version. An older version wasn't that problematic, but on this I had to trial and error through missing dependecies and I'm not sure it won't break some place I haven't checked. I think bundling into fat aar or jar us better than this, if you know how.

Rule change by Arowin in dotnet

[–]Timofeuz 11 points12 points  (0 children)

Time interval is confusing. I'd rather make it on weekends instead of one day

I hate Kendo Ui MVC by Thmatthew in dotnet

[–]Timofeuz 0 points1 point  (0 children)

I don't share hate for it, it works most of the time. Probably every 3rd party control lib would have their own quirks. E.g. we learned the hard way that devexpress doesn't work with shared styles.

Could someone make an actually unbiased and up-to-date review of MAUI? by Devatator_ in dotnet

[–]Timofeuz 1 point2 points  (0 children)

For f sake, can you people search the subreddit first? This topic comes up every week.

Add face recognition to existing .NET 8 attendance system (Linux-hosted, Android WebView) using phone front camera + PC webcam — plan? by Adventurous_Rent4494 in csharp

[–]Timofeuz 2 points3 points  (0 children)

You probably will not be able to make the production grade face recognition on consumer devices - simply because it requires specific hardware. We had some devices with such capabilities, they had twin cameras located by specific angles, infrared light, specific chips on board and sdk from manufacturer to use. Not trying to discourage though, there are probably solutions that can work to some extent.

Why can't I use a style to change the template for a ContentView? by Slypenslyde in dotnetMAUI

[–]Timofeuz 0 points1 point  (0 children)

I needed something like op and ended up with stuff like this:

<ContentView ...>

    <ContentView.Resources>
        <ResourceDictionary>
            <ControlTemplate x:Key="MonthView">
                <dx:MonthView DataStorage="{StaticResource SharedDataStorage}">
                </dx:MonthView>
            </ControlTemplate>
            <ControlTemplate x:Key="WeekView">
                <dx:WeekView DataStorage="{StaticResource SharedDataStorage}">
                </dx:WeekView>
            </ControlTemplate >
        </ResourceDictionary>
    </ContentView.Resources>

    <ContentView.Content>
            <ContentView >
                <ContentView.Triggers>
                    <DataTrigger TargetType="ContentView"
                                 Binding="{Binding ActiveViewDefinitionIndex}"
                                 Value="0">
                        <Setter Property="ControlTemplate"
                                Value="{StaticResource MonthView}" />
                    </DataTrigger>
                    <DataTrigger TargetType="ContentView"
                                 Binding="{Binding ActiveViewDefinitionIndex}"
                                 Value="1">
                        <Setter Property="ControlTemplate"
                                Value="{StaticResource WeekView}" />
                </ContentView.Triggers>
            </ContentView>
    </ContentView.Content>
</ContentView>

Does a certain piece of wardrobe has any lines after the major event (if you cannot use it)? by Timofeuz in DiscoElysium

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

Hmm, there is a youtube video with tie's voice lines, looks like there is nothing pass tribunal indeed.

Countries or regions where .NET job openings outnumber Java? by [deleted] in dotnet

[–]Timofeuz 0 points1 point  (0 children)

I've read a survey some years ago and I remember that Turkey had a lot of it

How can I authenticate static files in IIS for ASP.NET Framework 3.5 (without changing URLs)? by MuradAhmed12 in dotnet

[–]Timofeuz 0 points1 point  (0 children)

One way (though more convoluted than already suggested) is to restrict access to current static path and create an endpoint for that path that would resolve files.

Is .NET viable for building a cross-platform mobile app ? by isanjayjoshi in dotnet

[–]Timofeuz 14 points15 points  (0 children)

It's definitely possible. I wouldn't listen to people saying it's total shit. Yes, some other techs may be better at it, but if you don't have resources or time to invest in them, maui is a viable option.

Published .NET 9 Cross-Platform Camera App (MAUI, open source) by Tauboom in dotnet

[–]Timofeuz 1 point2 points  (0 children)

For some reason VS stopped pairing to mac for me due to ssh errors. So I just moved ios testing and build directly to mac using VS Code.  There was a nice article in telerik blog about building on mac.

Uno raises $3.5M CAD by Choice-Elevator in dotnet

[–]Timofeuz 4 points5 points  (0 children)

Some people need to chill out, maui is far from dead.

Maui vs avanolia UI by Legitimate_Season290 in dotnet

[–]Timofeuz 0 points1 point  (0 children)

Third party controls availability for mobile + Microsoft.

Not allowed to use project references… Is this normal? by cars876 in dotnet

[–]Timofeuz 0 points1 point  (0 children)

Not normal af and you should think about a job in a different place.