• 0 Posts
  • 92 Comments
Joined 1 year ago
cake
Cake day: July 21st, 2023

help-circle

  • I’ve been using c# since .net 2 which came out around the turn of the century (lol)

    I’d happily call myself an expert. I can do anything I need to and easily dive into the standard library source code or even IL when needed.

    But even then there are topics I could easily learn more on particularly the very performance focused struct features and intrinsics.

    I’ve found LLMs to be super useful when you have a very specific question about a feature. I use bing ai at work so it sources all its answers and you can dive into the articles for more detail.

    Programming is a never ending learning journey and you just have to keep going. When you get something you don’t fully understand to a deep dive there are always resources for everything.















  • We use a mono repo for a new cloud based solution. So far it’s been really great.

    The shared projects are all in one place so we don’t have to kick things out to a package manager just to pull them back in.

    We use filters in azure pipelines so things only get built if they or dependent projects get changed.

    It makes big changes that span multiple projects effortless to implement.

    Also running a local deployment is as easy as hitting run in the ide.

    So far no problems at all.