st, sk, sp When stressed, st, sk, and sp undergo sound changes; At the beginning of words, st, sk, and sp change their sound, but at the end of words,[......] 继续阅读
st, sk, sp When stressed, st, sk, and sp undergo sound changes; At the beginning of words, st, sk, and sp change their sound, but at the end of words,[......] 继续阅读
Support for .NET Core on Loongson and Thoughts on Embedded Development with .NET Core [TOC] 1. Regrettable Attempts A few days ago, I came across Zhan[......] 继续阅读
.NET Core 对龙芯的支持情况和对 .NET Core 开发嵌入式的思考 [TOC] 一,遗憾的尝试 前些天看到了张队公众推送的《Asp.Net终于可以在龙芯服务器上运行啦:Jexus成功完成对国产系列CPU的适配》,联想到上一周与朋友在龙芯捣鼓 .NET Core,就想写一下关于 .NET[......] 继续阅读
Create a swap partition bs: size count: quantity sudo dd if=/dev/zero of=/swapfile bs=64M count=16 sudo mkswap /swapfile sudo swapon /swapfile Rem[......] 继续阅读
创建交换分区 bs:大小 count:数量 sudo dd if=/dev/zero of=/swapfile bs=64M count=16 sudo mkswap /swapfile sudo swapon /swapfile 用完后删除交换分区 sudo swapoff /swapfile s[......]继续阅读
Document Address https://wiki.ubuntu.org.cn/PostgreSQL Linux Installation of PostgreSQL https://www.postgresql.org/download/ The configurat[......] 继续阅读
文档地址 https://wiki.ubuntu.org.cn/PostgreSQL Linux安装 Postgresql https://www.postgresql.org/download/ PostgreSQL数据库配置文件在 /var/lib/pgsql/{版本号}/data 例如/va[......] 继续阅读
Parallel ForEach Equivalent to the foreach loop in C# Parallel Tasks Concurrent and parallel execution, where several steps within it run simultaneous[......] 继续阅读
Parallel ForEach 相当于C# 的foreach 循环 Parallel Tasks 并发、平行运行,在其内的几个步骤,会同时运行,而不是按顺序运行。 Saga Transactions 事务,具有回滚操作 Scheduled Background Tasks 后台异步定时加载。将一个[......] 继续阅读
Get the PostgreSQL image docker pull postgres Start PostgreSQL docker run --name db -e POSTGRES_USER=sonar -e POSTGRES_PASSWORD=sonar -d postgres[......]继续阅读
1、获取 postgresql 的镜像 docker pull postgres 2、启动 postgresql docker run --name db -e POSTGRES_USER=sonar -e POSTGRES_PASSWORD=sonar -d postgres 3、获取 sonar[......] 继续阅读