为了配置 Linux 免密登录,之前找到方法都是比较麻烦的,后面发现一种只需要两个步骤就能完成免密登录配置的方法。 假如,在 Linux A 免密登录 Linux B。 那么在 A 上生成 私钥公钥: ssh-keygen 生成后,将公钥推送到 B 中: ssh-copy-id <user&[......]继续阅读
为了配置 Linux 免密登录,之前找到方法都是比较麻烦的,后面发现一种只需要两个步骤就能完成免密登录配置的方法。 假如,在 Linux A 免密登录 Linux B。 那么在 A 上生成 私钥公钥: ssh-keygen 生成后,将公钥推送到 B 中: ssh-copy-id <user&[......]继续阅读
为了配置 Linux 免密登录,之前找到的方法都是比较麻烦的,后面发现一种只需要两个步骤就能完成免密登录配置的方法。 假如,在 Linux A 免密登录 Linux B。 那么在 A 上生成 私钥公钥: ssh-keygen 生成后,将公钥推送到 B 中: ssh-copy-id <user[......]继续阅读
Windows 和 Linux 都会有一些隐藏的分区,例如 EFI、boot 等。在 Linux 中情况又复杂对得多,例如 Docker 映射的分区/卷等,ram 交换页文件等。 Linux 中 DriveType 嗨哟 Fixed、Ram、CD 等类型,如果要对其进行筛选,编写获取方法是一件较为麻[......] 继续阅读
Windows and Linux both have hidden partitions such as EFI, boot, etc. The situation in Linux is much more complex, for example, with Docker mapped par[......] 继续阅读
呀呀呀,这些资源作者搜集了很久的!请看图! Compiler Theory, Dragon Book? Here it is! Operating Systems? More importantly, it’s all e-books here! Not videos! Not those[......] 继续阅读
呀呀呀,这些资源作者搜集了很久的!请看图! 编译原理,龙书?有! 操作系统? 更重要的是,这里全是电子书!不是视频!不是那种拍照的 pdf 版本! 网盘下载地址: 链接:https://pan.baidu.com/s/1CCBWsN93CyYfLImCoT8Euw 提取码:a21l 微信小[......] 继续阅读
Contains e-books on microservices, architecture design, etc., which are very suitable for learning from intermediate to advanced programmers and archi[......] 继续阅读
Artificial intelligence encompasses a wide range of foundational content, which includes knowledge in data structures, mathematics, artificial intelli[......] 继续阅读
Big data resources include experiences from major companies, introductory books on big data, and professional technical books on big data, which are s[......] 继续阅读
Programming language study resources are mostly in the form of e-books, which include architectural design, microservices, C#, Java, GO, Python, HTML5[......] 继续阅读
This directory contains learning resources related to cloud computing, but the author has not collected much material. If readers have good learning r[......] 继续阅读
Microsoft's official Docker images cannot run EFCore directly, resulting in the following exception: System.TypeInitializationException: The typ[......]继续阅读
Microsoft 官方的 Docker 镜像不能直接运行 EFCore,会出现异常: System.TypeInitializationException: The type initializer for 'Microsoft.Data.Sqlite.SqliteConne[......]继续阅读
Distinguishing Debug and Release Environments It is well known that Debug is the compilation constant that is automatically available when developing[......] 继续阅读
区分 调试和发布环境 众所周知,Debug 是在开发、在 VS 中时,自动会有的编译常量,而代码发布后则是 Release。 为了在 Debug、Release 环境下出现不同的编译条件。 .NET Core 项目添加条件编译变量,可在 .csproj 中加上 <PropertyGroup[......]继续阅读