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
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
-
Boxes from a single cell table:
| :exclamation: This is very important |
|-----------------------------------------|
| :zap: Ignore at your own risk! |
|-----------------------------------------|

-
Boxes from a single row table with 2 cells:
| :memo: | Take note of this |
|---------------|:------------------------|
| :point_up: | Remember to not forget! |
|---------------|:------------------------|

-
Boxes from a 2 row table:
| :warning: WARNING |
|:---------------------------|
| I should warn you ... |
| :boom: DANGER |
|:---------------------------|
| Will explode when clicked! |

Done
Postpone to Tomorrow
Diary