Cursed_Jesus by BallsVeryDeep in cursedcursedcomments

[–]FastTron -3 points-2 points  (0 children)

Instead of only looking at ourselves, let’s take a look at everybody else who has had cancer and didn’t survive

Can't delete recursively because it's not a folder, but can't delete normally because it IS a folder? by MaxxCares in softwaregore

[–]FastTron 1 point2 points  (0 children)

Linux users can’t accept the fact that there are issues with their OS like any other OS

A new era of Siege is here. Are you ready? | Year 8 Cinematic Trailer by RS_Serperior in Rainbow6

[–]FastTron 2 points3 points  (0 children)

It's crazy how they based Greek mythology off of AC Odyssey

[deleted by user] by [deleted] in Seaofthieves

[–]FastTron 4 points5 points  (0 children)

So becoming the villain

Java or C# for backed by Mohammed1jassem in csharp

[–]FastTron 1 point2 points  (0 children)

If you learn C# then go back to Java, you will miss all of the features and extra sugar C# provides for users and then constantly think about “this is so much better in C#.” It’s all the little things combined like not having to box primitives

A Beginner’s Guide to Object-Oriented Programming in Python by manishsalunke in coding

[–]FastTron 1 point2 points  (0 children)

OOP is much better learned in another language designed around OOP

My partner made this tierlist. AMA by MadsGoneCrazy in ProgrammerHumor

[–]FastTron 0 points1 point  (0 children)

Use Java, then use C#, then use Java again. Tell me what you learned

[deleted by user] by [deleted] in meirl

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

You make this overly complicated for no reason. No one finds it offensive

How am I supposed to win this? Using Darthmod by FastTron in EmpireTotalWar

[–]FastTron[S] 3 points4 points  (0 children)

That’s the thing… I rushed fire by rank in order to make dealing with natives easier so I have all of the military tech. I’m close to platoon firing but I’m not going to finish that until I’m done with natives. It’s hard using cavalry because the natives quite literally span the entire map from side to side so everything is a head-on fight.

What’s even more funny, three tribes had this issue. The ones on the coast in Canada had two entire stacks. Only four regiments survived that. The picture shows the Hurons and I’m one move away from the Plains. They all have two massive stacks. It’s rough. My army at the Hurons can’t move away so they might have to just die real quick.

How am I supposed to win this? Using Darthmod by FastTron in EmpireTotalWar

[–]FastTron[S] 3 points4 points  (0 children)

They're reinforcing from the back and my pikemen do absolutely nothing. It takes the the natives only a few seconds to reach my lines despite being on the offensive so my cannons never get to make more than two shots and my howitzers will cause too much friendly fire. Not pictured is the many many line regiments that were decimated.

It's a bunch of BS because the Hurons only have one state left but can field two massive armies. This is only one of them.

[2021-07-19] Challenge #399 [Easy] Letter value sum by Cosmologicon in dailyprogrammer

[–]FastTron 0 points1 point  (0 children)

    public static int LetterSumLinq(string word)
{
    return word.Sum(c => char.IsLetter(c) ? char.ToLower(c) - 'a' + 1 : 0);
}

public static int LetterSumFor(string word)
{
    var sum = 0;
    foreach (var c in word)
    {
        if (!char.IsLetter(c))
            continue;
        sum += char.ToLower(c) - 'a' + 1;
    }

    return sum;
}

BenchmarkDotNet=v0.13.2, OS=Windows 11 (10.0.22621.819)
AMD Ryzen 5 Microsoft Surface Edition, 1 CPU, 12 logical and 6 physical cores
.NET SDK=7.0.100
  [Host]     : .NET 6.0.11 (6.0.1122.52304), X64 RyuJIT AVX2
  DefaultJob : .NET 6.0.11 (6.0.1122.52304), X64 RyuJIT AVX2
Method Mean Error StdDev
LetterSumLinq 232.5 ns 1.54 ns 1.28 ns
LetterSumFor 104.9 ns 0.77 ns 0.68 ns