原文链接: "https://xiaoheidiannao.com/articles/Change Folder Path Under User Directory.html" 在用户目录下,存在 ,`OneDrive 保存的游戏 联系人 链接 视频 收藏夹 搜索 图片 文档 下载 音乐 桌面`等 ...
分类:
移动开发 时间:
2020-03-03 18:58:50
阅读次数:
107
在Ubuntu上面搭建caffe环境,搭建完成之后运行sudo make runtest -j8失败,提示错误为:.build_release/tools/caffe: error while loading shared libraries: libcudart.so.10.0: cannot o ...
分类:
系统相关 时间:
2020-03-03 13:16:34
阅读次数:
178
Flume: source: Avro是一个轻量级的rpc框架,可以解决单点故障。 Thrift少用。 Exec:类似 tail -f spooling Directory:目录 Tail dir多个目录里面动态变化的数据 kafka sosurce netcat source 图中红色用法较多。 ...
分类:
Web程序 时间:
2020-03-03 10:33:19
阅读次数:
61
报错原因意思是说:mysql5.7版本中有了一个STRICT mode(严格模式),而在此模式下默认是不允许设置日期的值为全0值的,所以想要 解决这个问题,就需要修改sql_mode的值。 修改全局设置 mysql> set @@global.sql_mode=(select replace(@@g ...
分类:
数据库 时间:
2020-03-02 21:07:36
阅读次数:
118
Maven设置http代理 编辑~/.m2/settings.xml文件,添加如下配置 找到 <proxies> 节点。去掉相应的注释,设置代理信息如下: 1 <proxy> 2 <id>optional</id> 3 <active>true</active> 4 <protocol>http</ ...
分类:
其他好文 时间:
2020-03-02 19:08:33
阅读次数:
72
在github上已经注册了账号。 特别注意: 括号内均为提示信息 1、常用命令行工具: ①cmd ②powershell ③git bash 2、命令行常用命令(在git bash上生效,部分在cmd无用) ? pwd (print working directory) 查看当前所在路径 绝对路径 ...
分类:
其他好文 时间:
2020-03-02 18:54:38
阅读次数:
80
父传子 class HelloWorld extends React.Component{ constructor(props) { super(props) this.state = { isActive:false } } render() { return ( <div> <button on ...
分类:
其他好文 时间:
2020-03-01 23:17:19
阅读次数:
79
1、使用class样式 使用数组:<p :class="['italic']">随便输入一些文字内容</p> 数组中使用三元表达式:<p :class="['italic',flag? 'active':'']">内容</p 数组中嵌套对象:<p :class="['italic',{'active ...
分类:
其他好文 时间:
2020-03-01 20:08:11
阅读次数:
65
C#常用文件操作在 System.IO 命名类库中有:File、Directory; 一、 1、文件(File) 操作: 文件创建:File.Create(filePath); 在指定路径中创建或覆盖文件 文件删除:File.Delete(filePath); 判断文件是否存在:File.Exist ...