摘要: 起别名: alias 使用命令给checkout其别名co, 作用域是全局的: git config global alias.co checkout 在~/.gitconfig中可以看到设置的别名 阅读全文
posted @ 2020-05-15 09:41 HHZZHH 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 1. NestJS框架学习 1. 项目准备 安装nestjs框架: npm install @nestjs/cli -g 创建项目, 创建一个名为hzh-nest的项目: nest new hzh-nest 测试启动项目: npm run start 运行在本地的3000端口上 代码托管: 在Git 阅读全文
posted @ 2020-05-14 13:59 HHZZHH 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 1. 添加box 从中科大的网站下载了源 http://mirrors.ustc.edu.cn/ vagrant box add [自定义box名字] [镜像文件] 例子: vagrant box add ubuntu/14.04 trusty-server-cloudimg-amd64-vagra 阅读全文
posted @ 2020-05-14 01:19 HHZZHH 阅读(278) 评论(0) 推荐(1) 编辑
摘要: flutter create -i swift -a kotlin flutter_swift 阅读全文
posted @ 2020-05-07 13:44 HHZZHH 阅读(398) 评论(0) 推荐(0) 编辑
摘要: git add . git commit -am "Save before ejecting" 阅读全文
posted @ 2020-05-07 09:09 HHZZHH 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 由于我是直接在真机上运行App的, 使用react-native-vector-icons库的时候会生成资源文件, 要使用命令重新编译资源文件, 才能正确的将资源导入到项目中. 打包: bundles资源 react-native bundle --platform ios --entry-file 阅读全文
posted @ 2020-05-05 16:47 HHZZHH 阅读(482) 评论(0) 推荐(0) 编辑
摘要: 将navigation写到App.js中 删除原来的App.js的代码, 导入navigation的代码, 成功运行. import {AppStackNavigator} from './navigators/AppNavgator'; import {createAppContainer} fr 阅读全文
posted @ 2020-05-05 14:57 HHZZHH 阅读(339) 评论(0) 推荐(0) 编辑
摘要: Mac和iPhone应该在同一个网络下面. 阅读全文
posted @ 2020-05-05 10:17 HHZZHH 阅读(992) 评论(0) 推荐(0) 编辑
摘要: // // ViewController.m // dynamicButton // // Created by Narciso Huang on 2020/2/10. // Copyright © 2020 cn.edu.nustti.ios. All rights reserved. // #i 阅读全文
posted @ 2020-02-11 15:19 HHZZHH 阅读(480) 评论(0) 推荐(0) 编辑
摘要: 1、IDEA创建一个maven项目, 项目结构为: . ├── FileUpload.iml ├── pom.xml ├── src │ └── main │ ├── java │ │ └── shiyanlou │ │ └── struts │ │ ├── DownloadAction.java 阅读全文
posted @ 2020-02-01 11:41 HHZZHH 阅读(176) 评论(0) 推荐(0) 编辑