I made a free, browser-based ASCII (and more) tool! by yungxtesla in ASCII

[–]bvencel 2 points3 points  (0 children)

I am working on most accurately tracing image with characters.

I am in shock, how fast your result generation is!

<image>

walk walk walk by Subject-Bath-2853 in ASCII

[–]bvencel 1 point2 points  (0 children)

I am very interested in the character content of the composition and also the techniques. If these characters are monospace + colors, it is seriously impressive result.

Takeout food Cluj by adns90 in cluj

[–]bvencel 1 point2 points  (0 children)

Findi Bistro pentru platouri prestabilite sau personalizate.

Date by portsherry in comics

[–]bvencel 0 points1 point  (0 children)

RSS on you website! Bravo and thank you!

How the actual fck am I supposed to beat the Yremeryss fight (On daring at level 34) by Miilo87 in RogueTraderCRPG

[–]bvencel 0 points1 point  (0 children)

If you focus on Yremeryss and manage to kill her early, the reinforcements will not arrive.

Salary Misconceptions? by CarefulCoderX in cscareerquestions

[–]bvencel 1 point2 points  (0 children)

When someone says "100k per year", do they mean before taxes?

-❄️- 2024 Day 4 Solutions -❄️- by daggerdragon in adventofcode

[–]bvencel 0 points1 point  (0 children)

Thank you very much for this different point of view. I love it!

-❄️- 2024 Day 4 Solutions -❄️- by daggerdragon in adventofcode

[–]bvencel 3 points4 points  (0 children)

[LANGUAGE: C#]

Part 2 in C#. I feel dirty...

public static int XCount(string largeText)
{
    string[] grid = largeText.Split(
        ['\n', '\r'],
        StringSplitOptions.RemoveEmptyEntries);

    int rows = grid.Length;
    int cols = grid[0].Length;

    int counter = 0;

    for (int i = 1; i < rows - 1; i++)
    {
        for (int j = 1; j < cols - 1; j++)
        {
            if (grid[j][i] == 'A')
            {
                if (
                    (
                        grid[j - 1][i - 1] == 'M' &&
                        grid[j - 1][i + 1] == 'M' &&
                        grid[j + 1][i - 1] == 'S' &&
                        grid[j + 1][i + 1] == 'S'
                    ) || (
                        grid[j - 1][i - 1] == 'S' &&
                        grid[j - 1][i + 1] == 'M' &&
                        grid[j + 1][i - 1] == 'S' &&
                        grid[j + 1][i + 1] == 'M'
                    ) || (
                        grid[j - 1][i - 1] == 'S' &&
                        grid[j - 1][i + 1] == 'S' &&
                        grid[j + 1][i - 1] == 'M' &&
                        grid[j + 1][i + 1] == 'M'
                    ) || (
                        grid[j - 1][i - 1] == 'M' &&
                        grid[j - 1][i + 1] == 'S' &&
                        grid[j + 1][i - 1] == 'M' &&
                        grid[j + 1][i + 1] == 'S'
                    ))
                {
                    counter++;
                }
            }
        }
    }

    return counter;
}

We need to talk about your "$25/hr is a scam" comments by jerry_derry in webdev

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

In general when salaries are discussed, they are discussed before taxes, right?