https://mp.weixin.qq.com/s/DL7fpm9yGjE4Xe5L0Hw-Yg
黄海的海报设计就是很好的艺术品,我觉得要比较艺术的美的时候就应该把所有东西放在一起比。都是自然的产物,人和社会是自然的产物,人做的东西也是自然的产物。古典的油画和水墨画受限于表现手段,只能在某些方面下功夫,如光影和意境。但是如果能融合摄影和电脑特效,当然会更美。
审美的时候不需要考虑创作手段,只看结果。
https://mp.weixin.qq.com/s/DL7fpm9yGjE4Xe5L0Hw-Yg
黄海的海报设计就是很好的艺术品,我觉得要比较艺术的美的时候就应该把所有东西放在一起比。都是自然的产物,人和社会是自然的产物,人做的东西也是自然的产物。古典的油画和水墨画受限于表现手段,只能在某些方面下功夫,如光影和意境。但是如果能融合摄影和电脑特效,当然会更美。
审美的时候不需要考虑创作手段,只看结果。
https://blog.bossma.cn/php/in-iis-wordpress-chinese-tag-permalinks-plugin/
这个已经是最好的解决方案了。但是还是有的中文可以,有的不行。wordpress不是已经用了很多年。php国内也广泛使用了吗?为什么会没人彻底解决这个问题?不可思议。
Task.whenall()不是异步方法,为什么await task.whenall() 可以工作?
http://blog.stephencleary.com/2012/02/async-and-await.html
One important point about awaitables is this: it is the type that is awaitable, not the method returning the type. In other words, you can await the result of an async method that returns Task … because the method returns Task, not because it’s async. So you can also await the result of a non-async method that returns Task
Task类最重要的方法就是GetAwaiter.
碰到await关键字,CompilerService会编译出taskBuilder,async state machine等隐藏的类代码(要看IL+c#) 并使用awaiter的各种方法(比如GetResult())