关闭苹果IOS app自动更新 https://jingyan.baidu.com/article/9989c746506b98b649ecfe61.html ...
分类:
移动开发 时间:
2021-07-29 16:21:24
阅读次数:
0
iOS 跳转App Store进行评分 1.前言 遭遇4.2.2把我逼得没办法了,啥功能都怼上去了 2.实现 在 viewdidload 或者 viewwillappear 中判断是否需要显示评分,因为SKStoreReviewController 一年最多三次,所以我就无耻点相隔四个月调用一次 N ...
分类:
移动开发 时间:
2021-07-26 16:47:36
阅读次数:
0
centos7.9 环境 主机: win7 虚拟机: vmware 12 安装文件: CentOS-7.9-x86_64-DVD-2009.iso 输出路径: W:\Virtual Machines\CentOS7 问题 无法连接网络 20210721 现象: 虚拟机NAT网络设置,动态分配IP,其 ...
分类:
系统相关 时间:
2021-07-22 17:37:25
阅读次数:
0
cat CentOS-Base.repo # CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to p ...
分类:
其他好文 时间:
2021-07-19 16:46:42
阅读次数:
0
#Springboot-微服务-微服务组件之服务管理-eureka-消费端调用服务 微服务现在大部分的调用方式都是rest风格的调用方式也就常见的http,当然也还有另一种方式就是RPC 认识RPC RPC,即 Remote Procedure Call(远程过程调用),是一个计算机通信协议。 该协 ...
分类:
编程语言 时间:
2021-07-19 16:37:51
阅读次数:
0
CSDN同步 原题链接 其实这题不难。考虑直接搜索所有情况,最多有 \(4^{10} = 1048576\) 种可能的走法,因此深搜即可简单解决问题。注意到需要数组的变化,因此,如果要用宽搜的话很可能记录状态不方便(直接内存炸掉?),深搜传数组是个很好的选择。 注意几个点: 如果某个方向第一个就是个 ...
分类:
Web程序 时间:
2021-07-16 17:44:48
阅读次数:
0
1.打开CMD win键+R 2.windows常用Dos命令 #切换盘符 d/D: #查看当前目录 dir #切换目录 cd /d 盘符:/目录名 cd .. #清理屏幕 cls #退出终端 exit #查看ip ipconfig(/all) #ping ping 网址 #创建目录 md #创建文 ...
1 #include <iostream> 2 #include <stdio.h> 3 #include <vector> 4 5 6 struct BoxInfo 7 { 8 int label; 9 float score; 10 }; 11 12 13 int bbox_init(std:: ...
分类:
编程语言 时间:
2021-07-16 17:31:29
阅读次数:
0
环境搭建 准备一台mac电脑 1.安装所需的依赖 # 安装node brew install node # 查看npm版本 npm -v # 安装Carthage brew install Carthage # 如果只是更新请输入 brew upgrade carthage # 长期替换(建议使用此 ...
分类:
移动开发 时间:
2021-07-14 18:46:05
阅读次数:
0
1.打开https://www.ipaddress.com/,输入gist.github.com获取IP地址 2.ping 此ip地址,可以访问 3.将IP地址写入Hosts文件,140.82.113.3 gist.github.com MAC: /etc/hosts Windows: c/Wind ...
分类:
其他好文 时间:
2021-07-13 17:44:20
阅读次数:
0