部署ASP.NET Core程序到Linux系统

摘要: https://www.cnblogs.com/ants/p/5732337.html https://www.jb51.net/article/241514.htm https://www.cnblogs.com/wyy1234/p/10542815.html 一、前言 这篇文章我们将讲解如何将a 阅读全文
posted @ 2023-04-20 17:55 youhui 阅读(131) 评论(0) 推荐(0) 编辑

golang打包和部署到centos

摘要: 项目在golang开发好,打包上传到linux服务器运行,两步: 1、打包; 在控制台项目于目录下,执行下列命令 set GOOS=linux set GOARCH=amd64 go build -o "packageName" 如下图所示: 会生成一个没有后缀的二进制文件main 2、生成main 阅读全文
posted @ 2023-04-18 10:36 youhui 阅读(267) 评论(0) 推荐(0) 编辑

mysqldump 命令导出数据,解决中文乱码问题

摘要: https://www.cnblogs.com/LoveBB/p/16941639.html mysqldump -uroot -ppassword --add-drop-table --default-character-set=utf8 --hex-blob dbname --result-fi 阅读全文
posted @ 2023-04-07 18:31 youhui 阅读(26) 评论(0) 推荐(0) 编辑

MySQL新身份验证插件caching_sha2_password

摘要: 用sequel pro 工具登录,连接失败~!“Authentication plugin 'caching_sha2_password' cannot be loaded” 失败原因: mysql8 之前的版本中加密规则是mysql_native_password,而在mysql8之后,加密规则是 阅读全文
posted @ 2023-04-07 17:34 youhui 阅读(100) 评论(0) 推荐(0) 编辑

SQL 在线教程&在线练习平台

摘要: https://www.liaoxuefeng.com/wiki/1177760294764384 阅读全文
posted @ 2020-03-21 09:48 youhui 阅读(737) 评论(0) 推荐(0) 编辑

DotNetCore知识栈

摘要: #、.NET Core提供的特性 1.开源、免费 2.轻量级、跨平台 3.组件化、模块化、IOC+Nuget、中间件 4.高性能 5.统一了MVC和WebAPI编程模型 a) 比如:ASP.NET Core 中MVC 和Web API 直接或间接继承同一个基类 ControllerBase,提供可使 阅读全文
posted @ 2019-04-02 10:49 youhui 阅读(833) 评论(0) 推荐(1) 编辑

Building gRPC Client iOS Swift Note Taking App

摘要: gRPC is an universal remote procedure call framework developed by Google that has been gaining interests among many software developers that were deve 阅读全文
posted @ 2019-02-17 22:52 youhui 阅读(600) 评论(0) 推荐(0) 编辑

RxSwift + Moya + ObjectMapper

摘要: [https://www.jianshu.com/p/173915b943af][1] [1]: https://www.jianshu.com/p/173915b943af 阅读全文
posted @ 2019-01-14 23:08 youhui 阅读(1467) 评论(0) 推荐(0) 编辑

React Native

摘要: https://www.cnblogs.com/powertoolsteam/p/react-native-tutorials1.html import React, { Component } from 'react'; import { AppRegistry, StyleSheet, Flat 阅读全文
posted @ 2018-06-04 17:12 youhui 阅读(258) 评论(0) 推荐(0) 编辑

Node.js 教程

摘要: http://www.runoob.com/nodejs/nodejs-tutorial.html http://blog.csdn.net/liyuechun520/article/details/75165351 http://nqdeng.github.io/7-days-nodejs/ ht 阅读全文
posted @ 2018-02-03 11:32 youhui 阅读(311) 评论(0) 推荐(0) 编辑