[置顶] RxSwift + Moya + ObjectMapper

摘要: https://www.jianshu.com/p/173915b943af use_frameworks! target 'RXDemo' do pod 'RxSwift' pod 'RxCocoa' pod 'Moya-ObjectMapper/RxSwift' pod 'Moya/RxSwif 阅读全文
posted @ 2019-01-14 23:08 youhui 阅读(1469) 评论(0) 推荐(0) 编辑

Swift 与 OC 如何相互调用

摘要: Swift 与 OC 如何相互调用 Swift -> OC 需要创建一个 Target-BriBridging-Header.h (默认在OC项目中,会提示自动创建)的桥文件,在该文件中,导入需要调用的OC代码的头文件即可 OC -> Swift 直接导入Target-Swift.h(该文件是Xco 阅读全文
posted @ 2024-09-10 20:23 youhui 阅读(1) 评论(0) 推荐(0) 编辑

Mac系统 .zprofile、.zshrc 和 .bash_profile 区别及作用

摘要: 在 macOS 中,.zprofile、.zshrc 和 .bash_profile 是三个重要的配置文件,分别用于不同的 shell 和场景。下面详细介绍它们的作用和区别: 1. .zprofile 作用: .zprofile 主要用于 Zsh shell 的全局配置。 它在每次用户登录时都会被读 阅读全文
posted @ 2024-09-08 15:31 youhui 阅读(38) 评论(0) 推荐(0) 编辑

部署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 阅读(151) 评论(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 阅读(354) 评论(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 阅读(27) 评论(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 阅读(142) 评论(0) 推荐(0) 编辑

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

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

flutter 从入门到精通

摘要: https://juejin.im/post/5d8d5a105188256ec311fa99 阅读全文
posted @ 2019-11-07 09:58 youhui 阅读(67) 评论(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 阅读(841) 评论(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 阅读(607) 评论(0) 推荐(0) 编辑

iOS-InterviewQuestion-collection

摘要: 推荐书目 1.《Effective Objective-C 2.0》 2.《Objective-C 高级编程》 3.《程序员的自我修养》 4.《图解HTTP》 5.《高性能iOS应用开发》 6.《算法图解》 7.《剑指Offer》 数据结构及算法 数据结构 1.数组 - 链接 2.字典 - 链接 3 阅读全文
posted @ 2019-01-17 23:18 youhui 阅读(422) 评论(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) 编辑