作者博客地址: https://www.whuanle.cn https://www.cnblogs.com/whuanle .NET 高级开发系列教程地址: https://docs.whuanle.cn/zh/maomi_framework 事件总线 事件总线常常作为软件开发中解耦各个组[......] 继续阅读
作者博客地址: https://www.whuanle.cn https://www.cnblogs.com/whuanle .NET 高级开发系列教程地址: https://docs.whuanle.cn/zh/maomi_framework 事件总线 事件总线常常作为软件开发中解耦各个组[......] 继续阅读
Author blog addresses: https://www.whuanle.cn https://www.cnblogs.com/whuanle .NET Advanced Development Series Tutorial: https://docs.whuanle.cn/zh/ma[......] 继续阅读
多语言框架的设计 作者博客地址: https://www.whuanle.cn https://www.cnblogs.com/whuanle 教程地址:https://docs.whuanle.cn/zh/maomi_framework 框架源码地址:https://github.com/whu[......] 继续阅读
Design of a Multilingual Framework Author blog: https://www.whuanle.cn https://www.cnblogs.com/whuanle Tutorial: https://docs.whuanle.cn/zh/maomi_fra[......] 继续阅读
Maomi 框架地址 https://docs.whuanle.cn/zh/maomi 学习开发 .NET 框架教程地址: https://docs.whuanle.cn/zh/maomi_framework 故障排查和日志 .NET 程序进行故障排查的方式有很多,笔者个人总结常用的有以下方式: [......] 继续阅读
Maomi framework address https://docs.whuanle.cn/zh/maomi Learning tutorial for developing a .NET framework: https://docs.whuanle.cn/zh/maomi_framework[......] 继续阅读
教程名称:使用 C# 入门深度学习 作者:痴者工良 教程地址:https://torch.whuanle.cn 电子书仓库:https://github.com/whuanle/cs_pytorch Maomi.Torch 项目仓库:https://github.com/whuanle/Maomi.[......] 继续阅读
Tutorial Name: Getting Started with Deep Learning using C# Author: whuanle Tutorial Address: https://torch.whuanle.cn E-book Repository: https://githu[......] 继续阅读
.NET 中的日志使用技巧 Serilog Serilog 是 .NET 社区中使用最广泛的日志框架,所以笔者使用一个小节单独讲解使用方法。 示例项目在 Demo2.Console 中。 创建一个控制台程序,引入两个包: Serilog.Sinks.Console Serilog.Sinks.Fil[......]继续阅读
Logging Tips in .NET Serilog Serilog is the most widely used logging framework in the .NET community, so I'll dedicate a section to explain how to use[......] 继续阅读
关于从零设计 .NET 开发框架 作者:痴者工良 教程说明: 仓库地址:https://github.com/whuanle/maomi 文档地址:https://maomi.whuanle.cn 作者博客: https://www.whuanle.cn https://www.cnblogs.co[......] 继续阅读
关于从零设计 .NET 开发框架 作者:whuanle 教程说明: 仓库地址:https://github.com/whuanle/maomi 文档地址:https://maomi.whuanle.cn 作者博客: https://www.whuanle.cn https://www.cnblogs[......] 继续阅读
关于从零设计 .NET 开发框架 作者:痴者工良 教程说明: 仓库地址:https://github.com/whuanle/maomi 文档地址:https://maomi.whuanle.cn 作者博客: https://www.whuanle.cn https://www.cnblogs.co[......] 继续阅读
关于从零设计 .NET 开发框架 作者:whuanle 教程说明: 仓库地址:https://github.com/whuanle/maomi 文档地址:https://maomi.whuanle.cn 作者博客: https://www.whuanle.cn https://www.cnblogs[......] 继续阅读
string.Format has very limited functionality; therefore, the SmartFormat.NET framework is needed to achieve rich string interpolation features. It can[......] 继续阅读
string.Format 的功能非常有限,因此需要使用 SmartFormat.NET 框架来完成丰富的字符串插值功能。它可以使用类似于字符串的最小化、直观的语法将各种数据源格式化为字符串。格式。所有格式化都在运行时进行。SmartFormat 使用扩展来提供命名占位符、本地化、多元化、性别结合以[......] 继续阅读
Why Write This Tutorial After graduation, readers have written a large number of articles and open-source projects. It is through the persistence of l[......] 继续阅读
为什么要写这个教程 在毕业之后,读者写过了大量的文章和开源项目,正是坚持一边学习一边输出,所以笔者最终从一个生菜鸡进化为一个熟菜鸡。 在程序员的成长中,我们会在思路,如何学习、如何进步,比如要成长为一个架构师,需要具备什么样的能力。比如说技术能力,技术能力是最核心的基础,那么我们技术上要达到哪种程度[......] 继续阅读
NumPy NumPy is the fundamental package for scientific computing in Python. It is a Python library that provides a multidimensional array object, vario[......] 继续阅读
NumPy NumPy 是 Python 中用于科学计算的基本包。它是一个 Python 库,提供了一个多维数组对象、各种派生对象(比如屏蔽数组和矩阵) ,以及一系列用于数组快速操作的例程,包括数学、逻辑、形状操作、排序、选择、 i/o、离散傅里叶变换、基本线性代数、基本统计操作、随机模拟等等。 官[......] 继续阅读