######Documentation Archive https://developer.apple.com/library/archive/navigation/#section=Technologies&topic=Web%20Services XNU内核是Darwin操作系统的一部分,可在m ...
分类:
移动开发 时间:
2020-07-06 01:12:01
阅读次数:
136
职业规划 首发 | 微信公众号「编程随想曲」 个人的职业规划就像软件工程。 ?我们都知道软件项目最大的敌人是需求的不明确和需求的大面积变更, 同样, 在个人的职业规划中, 自我需求的不明确和需求的变更也是非常危险的, 尤其是在职业计划实施了四五年后需求的变动和改变。 只有需求确定以后, 才谈得上个人 ...
分类:
其他好文 时间:
2020-07-05 23:06:00
阅读次数:
69
更新 Mac 10.15.4 系统后,会遇到部分软件打开出现意外退出,原因是Apple苹果公司在新系统中删除了TNT的证书导致的! 打开终端输入: sudo codesign --force --deep --sign - (应用路径) 如果出现以下错误: /文件位置 : replacing exi ...
分类:
系统相关 时间:
2020-07-05 22:57:12
阅读次数:
344
1、时间同步 #di.time sync /usr/sbin/ntpdate time.apple.com echo '#time sync by oldboy at 2019-3-30' >> /var/spool/cron/root echo '*/5 * * * * /usr/sbin/ntp ...
分类:
其他好文 时间:
2020-07-04 23:08:59
阅读次数:
112
所需要库:thinter,python3自带 代码: from tkinter import * import re import requests def input1(): link = str(inp1.get()) headers = {'user-agent': 'Mozilla/5.0 ...
分类:
编程语言 时间:
2020-07-04 21:01:20
阅读次数:
124
1 准备工具 使用yum安装git [root~]# yum -y install git 下载nginx-rtmp-module,官方github地址 // 通过git clone 的方式下载到服务器上 [root~]# git clone https://github.com/arut/ngin ...
分类:
其他好文 时间:
2020-07-04 18:47:27
阅读次数:
177
找一个免费IP的网站 # coding=utf-8 import requests proxies = {"http":"http://114.234.80.188:80"}#就代理填到这里 headers = { "User-Agent": "Mozilla/5.0 (Macintosh; Int ...
分类:
其他好文 时间:
2020-07-04 17:11:48
阅读次数:
47
https://www.bangzhujiaocheng.com/126.html In order to access certain membership resources, you must accept the latest Apple Developer Program License ...
分类:
移动开发 时间:
2020-07-03 19:52:27
阅读次数:
683
常见运算符 &:按位与。 |:按位或。 ~:按位非。 ^:按位异或。(相同为0,否则为1) <<:左位移运算符。 >>:右位移运算符。 <<<:无符号右移运算符。 常见操作 1,判断x是奇数还是偶数:(x&1)==0 2,x乘以一个2的n次方的数:x<<n 3,x除以一个2的n次方的数:x>>n 4 ...
分类:
其他好文 时间:
2020-07-02 22:07:21
阅读次数:
87
问题描述: 系统版本选择11.0,如下图: 指令集设置armv7 和 arm64 打包出来的app只支持arm64 ,如下图: 解决:修改适配系统版本到iOS10以下即可, 分析: 修改Architectures 为 arm64、armv7 支持的指令集是Architectures 和 Valid ...
分类:
移动开发 时间:
2020-07-01 20:43:00
阅读次数:
191