Welcome
某高校本科生,沿着这个世界的时间轴前行。
也喜欢偶尔停下脚步,端详这个世界的模样。
从相对原点出发,
已经走过了 10000000000 毫秒。
距离第 17 个目标点还有 0 个地球日。
M・E
大学生 一枚 | 多年 三体 迷了
ENTP-A | 努力做 想做的事情
乐于 Code | 只玩 Minecraft
常用 .NET | 喜欢探索 数学
VSCode 重度使用 | 玩一些 CTF
花开有时半夏 | 暮雨无时归人
网络浩渺,难得遇见。
愿你喜欢我的博客和文章。
LifeTick.cs
public partial class Life
{
public async void Tick()
{
var remaining = new TimeSpan(1234);
if(remaining > TimeSpan.Zero)
{
List<Task> todo = new();
this.Dream ??= await this.FindDream();
this.Love ??= await this.FindLove();
if(this.Dream is not null)
todo.Add(Task.Run(this.SpendWith(this.Dream)));
if(this.Love is not null)
todo.Add(Task.Run(this.SpendWith(this.Love)));
todo.Add(Task.Run(await this.GetWork()));
todo.Add(Task.Run(this.Live));
Task.WaitAll(todo.ToArray());
}
else
{
await Die();
~Life();
}
}
}
16 Personalities Timeline
2022
2022-01-29
ENTP-A
外向81% 直觉77% 逻辑51% 展望51% 坚决57%
2021
2021-04-12
ENFJ-A
外向71% 直觉52% 感受54% 计划69% 坚决54%
评论