2023-10-27

2023-10-27

TODOs/Generic

2023-10-26

TODOs/Generic

Progress Report

Got the Knowledge Today

mklink /D C:\Users\anosa\Documents\PersonalObsidianVault\DevLifeFro

mModernWay \\100.79.254.152\ubuntu\DevLifeFromModernWay

How to write Rust-like Enum in C# #programming/lang/csharp #godot

public abstract record State
{
    public record Idle : State;
    public record Walking(float speed) : State;
    public record Running(float velocity) : State;
}

private void CurrentState()
{
    State = new State.Walking(1.0f);
    switch (State)
    {
        case State.Idle:
            Dbg.Log("Idle");
            break;
        case State.Walking(var speed):
            Dbg.Log($"Walking at {speed}");
            break;
        case State.Running(var velocity):
            Dbg.Log($"Running at {velocity}");
            break;
    }
    var newState = new State.Walking(1.0f);

    if (State == newState)
    {
        Dbg.Log("State is equal to newState");
    }
    else
    {
        Dbg.Log("State is not equal to newState");
    }
}

Done

Postpone to Tomorrow

Diary

Progress Report

Got the Knowledge Today

How to create a good-looking notification or warning box in Github Flavoured Markdown - Stack Overflow

For example:

  • Boxes from a single cell table:

    | :exclamation:  This is very important   |
    |-----------------------------------------|
    
    
    | :zap:        Ignore at your own risk!   |
    |-----------------------------------------|
    

    md-box__single-cell

  • Boxes from a single row table with 2 cells:

    | :memo:        | Take note of this       |
    |---------------|:------------------------|
    
    
    | :point_up:    | Remember to not forget! |
    |---------------|:------------------------|
    

    md-box__single-row

  • Boxes from a 2 row table:

    | :warning: WARNING          |
    |:---------------------------|
    | I should warn you ...      |
    
    
    | :boom: DANGER              |
    |:---------------------------|
    | Will explode when clicked! |
    

    md-box__double-row

Done

Postpone to Tomorrow

Diary