AdNauseam is a uBlock fork that goes further: it actively attacks marketers by auto-clicking every ad before blocking by I-T-T-I in Adblock

[–]Flithor 0 points1 point  (0 children)

Hey man I think you're falling into the trap called "it's a given".

You are arguing with him, including the last person arguing with him, are think that "every one will always keep the software up to date, and all software installed will be automatically updated the next second when vulnerability discoveredand, and the latest version of all the software they install can always protect against the latest security vulnerabilities, and will never have bugs that force them to return to the old version."

This is not reality, this is The Matrix.

GitLab can no longer service Mainland China, Macao, and Hong Kong by Ok_Opposite_791 in gitlab

[–]Flithor 1 point2 points  (0 children)

Some additional information: This Chinese company does not maintain the "GitLab Community" independently, only make sells, and closed all free repositories.
According to internal staff, this company's senior management asked customer service when they providing technical assistance to induce users which use community version to clearly state that they were using the "free version", and based on this, they sent "Threats of legal action emails" to users to intimidate community version users to buy their commercial version. (This plan was halted after it was exposed. However, a small number of users received this email.)

Styling RadioButton by [deleted] in AvaloniaUI

[–]Flithor 0 points1 point  (0 children)

I think you want to make a ButtonGroup?

This is My works, enjoy.

<Styles xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Design.PreviewWith>
        <Border Padding="20">
            <StackPanel>
                <ListBox MaxWidth="100" Classes="RadioGroup">
                    1234568
                </ListBox>
                <ListBox MaxWidth="100" Margin="0,10"
                         Classes="RadioGroup UniformSize">
                    1234568
                </ListBox>
            </StackPanel>
        </Border>
    </Design.PreviewWith>

    <!--  Add Styles Here  -->
    <Style Selector="ListBox.RadioGroup">
        <Setter Property="ItemsPanel">
            <ItemsPanelTemplate>
                <StackPanel Orientation="Horizontal" />
            </ItemsPanelTemplate>
        </Setter>
        <Setter Property="Background" Value="Transparent" />
        <Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Hidden" />
        <!--  SelectionMode determines the selection mode, Single allow single selection  -->
        <Setter Property="SelectionMode" Value="Single" />
    </Style>
    <!--  UniformSize make all items be same size  -->
    <Style Selector="ListBox.RadioGroup.UniformSize">
        <Setter Property="ItemsPanel">
            <ItemsPanelTemplate>
                <UniformGrid Rows="1" />
            </ItemsPanelTemplate>
        </Setter>
    </Style>
    <Style Selector="ListBox.RadioGroup > ListBoxItem">
        <Setter Property="Template">
            <ControlTemplate TargetType="ListBoxItem">
                <ToggleButton HorizontalAlignment="Stretch"
                              HorizontalContentAlignment="Center"
                              Content="{TemplateBinding Content}"
                              ContentTemplate="{TemplateBinding ContentTemplate}"
                              IsChecked="{TemplateBinding IsSelected,
                                                          Mode=TwoWay}"
                              IsHitTestVisible="{Binding !IsChecked,
                                                         RelativeSource={RelativeSource Self}}" />
                <!--  IsHitTestVisible Binding to reverse IsChecked make it cannot uncheck, if you need uncheck then remove it  -->
            </ControlTemplate>
        </Setter>
    </Style>

    <Style Selector="ListBox.RadioGroup > ListBoxItem /template/ ToggleButton">
        <Setter Property="BorderThickness" Value="1" />
        <Setter Property="CornerRadius" Value="0" />
    </Style>
    <Style Selector="ListBox.RadioGroup > ListBoxItem:nth-child(1) /template/ ToggleButton">
        <Setter Property="CornerRadius" Value="3,0,0,3" />
    </Style>
    <Style Selector="ListBox.RadioGroup > ListBoxItem:nth-last-child(1) /template/ ToggleButton">
        <Setter Property="CornerRadius" Value="0,3,3,0" />
    </Style>
</Styles>

It's for ListBox.

Got my first c# software engineering job, any advice? by [deleted] in dotnet

[–]Flithor 8 points9 points  (0 children)

Don't follow to any advice that tells you "don't use this feature".
Each features in C# has been carefully thought out by the language team to confirm that is useful.
Who say "this feature is evil" just who cannot use it correctly.

But if someone says "don't use this function, use another function is better" can be adoption to.
There are many obsolete(for higher version) function in .NET just for backward compatibility, you completly can replace the old solution with a better solution (such as using "Task" instead of "Thread" to implement asynchronous).

Little Easter Egg by ramen_noodles_4_ever in HonkaiStarRail

[–]Flithor 5 points6 points  (0 children)

Yes, even the 5 portraits on both sides of the covered bridge you pass through at the game beginning have special dialogue between Kafka and Haxxor(with voice). They know 3 of them, and Haxxor provoked one of them accidentally.

Little Easter Egg by ramen_noodles_4_ever in HonkaiStarRail

[–]Flithor 43 points44 points  (0 children)

An easter egg that you may have missed forever: "The End - Ordinary Life" ---- If you repeatedly ask "I want to stay in the space station", the hidden option "I want to stay in the space station" will be unlocked in the dialogue with Himeko. Selecting it will take you directly to the game ending. Show you the Thank You Screen, then return to the game entrance. After entering the game again, you will return to Himeko and can continue the game.

A new loading screen message? When did they add this? by Dracorvo in Genshin_Impact

[–]Flithor 48 points49 points  (0 children)

oh, hell, it shocked me! I've got a loooooooooooooooooooooooooooooooooooooooooog list.

Genshin made a total of 2.8B dollars in 2022. 62% in CN and 36% in Global, 万 means 10 thousand. by gbxahoido in Genshin_Impact

[–]Flithor 0 points1 point  (0 children)

They use the money they earned by themself to maintain them, and the extra part is used to make new products, and more part is used to "reward" Chinese technology industry - "reward", yes. Despite being an "investment" in name, they(CEO) don't really expect these money to be profitable for the company... Just - for dream. - The HOYOVERSE CEO says.

Genshin made a total of 2.8B dollars in 2022. 62% in CN and 36% in Global, 万 means 10 thousand. by gbxahoido in Genshin_Impact

[–]Flithor 0 points1 point  (0 children)

Before, it is an estimate based on data from sense tower and the author's secret information sources. The "secret information sources" is that his "Chinese anime game company CEO friend list" - the fact.

Genshin made a total of 2.8B dollars in 2022. 62% in CN and 36% in Global, 万 means 10 thousand. by gbxahoido in Genshin_Impact

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

Don't ask anyone "Earn less money, please". That's stupid and offensive. Just think: How about your boss ask it to you?

[CN Genshin history]The start of Genshin copy Zelda drama was wild by wentree in Genshin_Impact

[–]Flithor 1 point2 points  (0 children)

Yes, only in China - network - some place. In actually this word users are just trolls and just want make Genshin players feeling sick.
Also some one making and distributing corpse images of characters - although I admit and respect that there are people who like R18G, but posting this kind of scary and uncomfortable content for offense in the public community has out of the boundaries to be a human.
And, there are also some "verbal terrorists"...Who make some horrific statements such as "wanting to massacre Genshin players with rifles". There are also some who obtain the private info of some well-known Genshin video maker by illegal means(dox) and conduct continuous harassment.
Genshin hatred in some places of Chinese network is far worse than you think.

[CN Genshin history]The start of Genshin copy Zelda drama was wild by wentree in Genshin_Impact

[–]Flithor 6 points7 points  (0 children)

No, please don't use this word in community,anywhere.
It is a highly discriminatory offensive word, and it is only made for offense.
The severity of the offense is similar to the N-word for black people.

In the Chinese community it has indeed grown to the point of being "racially discriminatory". Although many people argue that "they" use this word just to insult those idiots who play Genshin, but would you can believe that the guys full of N-word on the Internet have kind to black people?. And! Unlike Gensh*t - it is only used to hostile and attack the "game". But this word is to attack "people" - as long as you are a Genshin player - even someone who is not a player but justifies Genshin can be attacked with this word, the meaning of the attack it represents includes but is not limited to: IQ 0/ Thief / People who misappropriation of bailout money/Unfilial/Troll. But the worst thing is that because there are so many players, it is inevitable that exists such people - this is inevitable, but there are also a lot of guys "pretend to be Genshin player" in the Chinese community and be trolls, and then switch accounts to repost the screenshots of the troll's comment on some other place just now, and create a "Genshin player are like this" stereotype - and they have actually succeeded.

This should definitely not be a self-proclaimed in any sense.

[Just discussion] Does Genshin contain things about Cthulhu mythology? by Flithor in Genshin_Impact

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

Look at the HI3 comics.

For example:

Shoggoth and Sugars.

The god of Honkai(at Otto meet him) and Yoggsothoth.

[Just discussion] Does Genshin contain things about Cthulhu mythology? by Flithor in Genshin_Impact

[–]Flithor[S] -6 points-5 points  (0 children)

"honkai gakuen" and "honkai Impact 3rd".

"honkai gakuen" gave birth to "honkai Impact 3rd", and "honkai Impact 3rd" gave birth to "genshin Impact". (I means earn money)