1 Ruby@DESKTOP-4INK1I3 MINGW64 /f/Git/test (master) 2 $ git push origin master 3 fatal: unable to access 'https://github.com/xxx/test.git/': OpenSSL S ...
分类:
其他好文 时间:
2021-04-24 13:43:19
阅读次数:
0
准备工作: npm install --save html2canvas 在需要的组件中引入 import html2canvas from "html2canvas" 需要生成的图片所在的div 要添加<div ref="imageWrapper">.... </div> 方法一:生成blob文件 ...
分类:
Web程序 时间:
2021-04-24 11:59:51
阅读次数:
0
做法:记录每个点i向左与它最近的不互质的数j,从j+1到i是可以分成1块的。 对于每次询问,从r开始一直贪心往前跳,每跳一步ans++;但这样一步一步跳会T,需要去倍增优化。 #include<bits/stdc++.h> using namespace std; #define ll long l ...
分类:
其他好文 时间:
2021-04-23 12:09:38
阅读次数:
0
此处双指针代表的是一种思想,即两个(或多个)"先锋"动态式跟随并进行信息交流[个人理解],样例如下: 先输入数组大小,然后依次赋值(按照升序) ①若不得有重复元素,代码如下: 1 #include<iostream> 2 using namespace std; 3 4 const int N = ...
分类:
编程语言 时间:
2021-04-22 16:22:56
阅读次数:
0
#include <stdio.h> #include <iostream> using namespace std; class abc { private: int a; int b; }; int main() { cout << "Hello, World!" << endl; cout < ...
分类:
其他好文 时间:
2021-04-22 15:25:05
阅读次数:
0
部分iPhone 11、iPhone 11 Pro和iPhone 11 Pro Max用户发现,最近iPhone 11耗电量快、耗电异常和待机耗电也特快问题,查询iOS「电池健康」都相当正常,实际会造成耗电主因是因为iOS 14电池健康的「最大百分比和高峰期效能容量」出问题,才会导致iPhone 1 ...
分类:
其他好文 时间:
2021-04-21 12:52:00
阅读次数:
0
# 安装依赖 yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel # 解压缩 tar -zxvf linux-nginx-1.12.2.tar.gz cd nginx-1.12.2/ # 执行配置 ./configu ...
分类:
其他好文 时间:
2021-04-21 12:51:27
阅读次数:
0
代理 1.不要乱设置代理:git config --global --unset http.proxy 2.openssl 问题: git config --global http.sslVerify "false" 3.443 重新下载 4.提示xx端口问题:去配置文件删除这个端口 5.提交代码给 ...
分类:
Web程序 时间:
2021-04-21 11:47:54
阅读次数:
0
###三方框架 PromiseKit : https://github.com/mxcl/PromiseKit Bolts : https://github.com/BoltsFramework/Bolts-ObjC ###自定义demo: #import <Foundation/Foundatio ...
分类:
移动开发 时间:
2021-04-20 15:43:40
阅读次数:
0
爆搜,按照题意来搜。。。 太难写了,当模拟写的,代码分成了很多块,长度比较难看。。。 #include<bits/stdc++.h> using namespace std; #define ll long long #define fastio ios::sync_with_stdio(false ...
分类:
其他好文 时间:
2021-04-20 15:37:24
阅读次数:
0