分类描述:记录一些技术相关的

deepin安装charles证书

进入隐藏目录cd ~/.charles/ca使用openssl转换下格式,木有openssl库的先安装openssl x509 -outform der -in charles-proxy-ssl-proxying-certificate.pem -out charles-proxy-ssl-pr
2023年11月07日 566次浏览

C++字符串对分类实现

目的将一个字符串对数组进行两两拉通配对进行分类,例如:[(a,b),(c,d),(e,f),(g,h),(j,k),(a,j),(h,c),(k,e),(x,y)] 这么一个数组分类后为: a,b + a,j + j,k + k,e+ e,f --> (a,b,j,k,e,f) c,d
c++ 算法 2022年04月06日 1,298次浏览

ubuntu20.04编译IfcOpenShell

1.安装依赖sudo apt-get install git cmake gcc g++ libboost-all-dev libcgal-dev2.以下任选一种安装OCCT包(如果源码编译安装,编译时间很长,可能需要花几个小时机器配置差的话,耐心等待)a.使用系统源中自带的sudo apt-get
c++ shell linux 2022年01月25日 1,345次浏览

自动重连云服务器实现内网穿透

本地的虚拟机或者本地linux系统,在有云服务器情况下,可以将本地服务端口通过ssh暴露到公网使用,自动重连脚本如下:#!/bin/bashwhile truedo ping xxx.xx -c 4 networkIsOk=$? </dev/tcp/xxx.xx/port
虚拟机 shell 2021年11月10日 1,230次浏览

C++的一点资料整理

基础https://github.com/Blitzer207/C-Resource.gitC++那些事https://github.com/Light-City/CPlusPlusThings.gitgoogle编码规范https://zh-google-styleguide.readthedoc
c++ 2021年10月23日 1,193次浏览

git仓库初始化

Git 全局设置git config --global user.name "nidaye"git config --global user.email "nidaye@xx.com"创建一个新仓库git clone 你的远程仓库(git@192.168.1.
git 2021年10月12日 1,367次浏览