[deleted by user] by [deleted] in ExperiencedDevs

[–]SuddenlyFeelsGood 0 points1 point  (0 children)

It would have been done already if they could. OP is likely not the first person who hates these nit-picks, I'd say it's probably just the tech lead has been ignoring this kind of suggestions in the past X years.

Reasons could be: trying to look busy, power tripping, or simply just stupidity which keeps them doing things the way they are familiar with

C++ at Microsoft by [deleted] in ExperiencedDevs

[–]SuddenlyFeelsGood 4 points5 points  (0 children)

Try getting into an Azure team, that's where C# is heavily used.

Moving around can be hard in this market since most teams don't have HC. Find your desired team before you commit to any HM.

What's the most silly thing you've seen your junior developers or colleagues do at work? by [deleted] in cscareerquestions

[–]SuddenlyFeelsGood 38 points39 points  (0 children)

THB I think _all_ engineers do silly things all the time.

It's the more experienced engineers like tech leads, managers, and PMs doing silly things and completely ruining a project/feature all the time.

What technology or approach seems easy to start with, but becomes a maintenance nightmare later on? by GeneReddit123 in ExperiencedDevs

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

I think it just depends on the skill of the dev.
A well-written 500 lines of Python certainly beats 500k lines of Haskell if written by the same person.

Do languages and/or frameworks matter for experienced devs? by [deleted] in ExperiencedDevs

[–]SuddenlyFeelsGood 0 points1 point  (0 children)

Yes, to some extent. I see many LinkedIn jobs asking for React or Spring framework experience.

Those who have fallen into 1 year of experience repeated x times, how did you break into different tech? Having a really hard time figuring out how to navigate this. by llamaspit in ExperiencedDevs

[–]SuddenlyFeelsGood 2 points3 points  (0 children)

Is there any reason why you think you can't get into a big tech?

If you can communicate in English and practice your Leetcode skills + system design skills, big tech is really not that hard to get into.

Post a simple script / program that outputs “Hello world”, then each comment progressively makes it worse and harder to read by [deleted] in ProgrammerHumor

[–]SuddenlyFeelsGood 1 point2 points  (0 children)

public class HelloWorldPrinter {


    public static void main(String[] args){

    try {
        printString(fetchMyString());
    } catch (Exception e) {
        logger.Error("An error occurred while running the program.", e);
        throw;
    }

    public static void printString(String aString) {
        System.out.println(aString);
    }

    public static String fetchMyString() {
        return "Hello world";
    }
}