Tag: net

  • New website coming

    After receiving feedback from a recruiter, I updated my LinkedIn and personal website, transitioning it from a musician site to a blog/portfolio. I’m learning C#/.NET & Blazor through this project and improving my Figma skills. I aim to launch the new site next Friday, featuring Bootstrap and JavaScript elements.

  • Dynamic vs Static

    The author contrasts C# and Ruby, highlighting C# as a static, compiled language and Ruby as dynamic and interpreted. C# requires variable types to be declared at compile time, catching errors early, while Ruby allows runtime type changes, leading to potential runtime errors. Each language suits different needs: Ruby for speed in small tasks, C#…

  • Method/Function in Ruby and C#

    The author compares method implementation between Ruby and C#. They demonstrate creating a simple addition method and checking for odd numbers in both languages. Ruby’s syntax is more concise with built-in methods, while C# requires explicit logic for operations. The author appreciates C#’s detailed visibility in code structure.