
Windows
文章平均质量分 95
deywós
长风破浪会有时,直挂云帆济沧海。
展开
-
win7一键清理系统垃圾Bat脚本
转载至:http://www.pc6.com/softview/SoftView_78364.html@echo off@title windows7系统垃圾清理-王少华@color 0a@echo http://blog.youkuaiyun.com/u014028392@echo windows7系统垃圾清理-王少华@pauseecho ★☆ ★☆ ★☆ ★☆ ★☆原创 2016-07-21 15:04:37 · 9746 阅读 · 1 评论 -
HashMap两种遍历方式的异同(大数据的情况下)
1.两种遍历方式: 第一种:Iterator<String> keySetIterator = keySetMap.keySet().iterator(); while (keySetIterator.hasNext()) { String key = keySetIterator.next(); Strin转载 2017-04-09 11:06:49 · 729 阅读 · 0 评论 -
Python 3.6.0的那些坑(1)
1.TypeError: write() argument must be str, not bytes原来:pickle.dump(actions, open(dump_path, 'w'))修改后pickle.dump(actions, open(dump_path, 'wb')) 2.UnicodeDecodeError: ‘gbk’ codec can’t decode byte 0x原创 2017-04-10 18:02:33 · 1542 阅读 · 0 评论 -
利用VS2013在win7 64位机器上搭建xgboost 0.6+Anaconda3 环境
1.所需材料: xgboost xgboost 0.6 如果不想使用git clone –recursive https://github.com/dmlc/xgboost 这个命令,嫌弃网速慢的同学,请移步 下载 如果想使用老版本 xgboost 0.47 请移步 下载 如果嫌本文讲的不仔细,请移步 xgboost官网Anaconda3 下载地址VS2013 下载地址 CMAKE翻译 2017-04-08 16:47:52 · 2070 阅读 · 2 评论 -
idea常用快捷键总结
使用自定义的idea快捷键快捷键Ctrl + Space 完成类、方法、变量名称的自动输入Ctrl + N(Ctrl + Shift + N)跳转到指定的Java文件(其它文件)Ctrl + B跳转到定义处Ctrl + Alt + T用if、while、try catch来围绕选中的代码行Ctrl + Alt + B跳转到方法实现处Ctrl + W按一个word来进行选择操作,在IDE原创 2017-08-14 17:13:07 · 484 阅读 · 0 评论 -
使用win8.1安装tensorflow CPU一次成功
1.本机电脑配置 电脑概览 电脑型号 联想 ThinkCentre M6500t-N000 操作系统 Microsoft Windows 8.1 Pro (64位) CPU (英特尔)Intel(R) Core(TM) i3-4160 CPU @ 3.60GHz(3600 MHz) 显卡 Intel(R) HD Graphics 4400 (1024 MB)2.原创 2017-10-25 10:51:33 · 5515 阅读 · 3 评论 -
如何快速消除快捷方式的小箭头
如图所示: 1、按下键盘的win+R,然后输入 cmd,回车 ;2、然后输入 “ reg delete "HKEY_CLASSES_ROOT\lnkfile" /v IsShortcut /f & taskkill /f /im explorer.exe & start explorer.exe”,回车;之后: ...原创 2018-03-05 16:56:28 · 331 阅读 · 0 评论