logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

linux 安装yum 安装php

#安装yumsudo apt-get updateapt-get install lrzszapt install yumapt-get install php7.0 libapache2-mod-php7.0

#linux
Linux下载文件夹下所有文件

我们可以使用zip+sz命令,最简单方便首先zip压缩#把oldFile文件夹及其子文件夹下所有文件打包# -r 包含子目录zip -r newFile.zip oldFile#右键,选择Receive file using Z-modem#Zmodem 目前最流行的文件传输协议sz newFile.zip...

#linux
C++11 make_pair和pair

先看这段代码:#include <iostream>int main() {std::string str = "hello world";auto error = std::make_pair<int, std::string>(0, str);// errorauto success = std::pair<int, std::string>(0, str)

#c++#算法
cmake入门

cmake入门github地址Cross platform Make 跨平台自动化建构系统cmake的重点是添加依赖Cmake is great. Don't waste time on other c++ build tools.# 注意事项1 cmake命令不区分大小写,但变量区分2 cmake没有clean,一般工程所在目录和工程编译目录分开,使用build/作为工程编译目录一、cmake入

#c++
Pytorch运行错误:CUDA out of memory处理过程

1.初始报错CUDA out of memory. Tried to allocate 244.00 MiB (GPU 0; 2.00 GiB total capacity; 1.12 GiB already allocated; 25.96 MiB free; 1.33 GiB reserved in total by PyTorch)需要分配244MiB,但只剩25.96MiB空闲。,...

#深度学习#python#tensorflow +1
解决 fatal: unable to access xxx: Encountered end of

方案一:将git clone中的https改为git,如:git clone https://github.com/dapr/cpp-sdk.git# 改为:git clone git://github.com/dapr/cpp-sdk.git方案二:命令行中执行,修改git配置git config --global --unset http.proxygit config --global --

#git
MobaXterm 中文乱码问题

MobaXterm默认的是UTF-8编码,如果显示错误,一般情况是因为文件的编码格式为GB2312。我们可以修改当前session的编码设置,然后重启session就可以。然后重启session,就可以看到正确显示的中文了。...

到底了