11 2016 档案

摘要:mac下卸载nodesudo rm -rf /usr/local/{bin/{node,npm},lib/node_modules/npm,lib/node,share/man/*/node.*}xcode-select --switch /Applications/Xcode.app依赖:梯子-- 阅读全文
posted @ 2016-11-29 22:17 小小高 阅读(158) 评论(0) 推荐(0) 编辑
摘要:using System.Data; using System.Configuration; using System.Web; using System.IO; using System.Text; using NPOI; using NPOI.HPSF; using NPOI.HSSF; using NPOI.HSSF.UserModel; using NPOI.HSSF.Util; usi... 阅读全文
posted @ 2016-11-29 14:04 小小高 阅读(1900) 评论(0) 推荐(0) 编辑
摘要://注意url中要含? function getParameterByName(name, url) { if (!url) { url = window.location.href; } name = name.replace(/[\[\]]/g, "\\$&"); var r... 阅读全文
posted @ 2016-11-28 16:10 小小高 阅读(7891) 评论(0) 推荐(1) 编辑
摘要:记一次访问http数据接口的爬坑经历,一般访问一个http接口。 无非就是这么几行代码: 可是这次,死话乱码。PostMan下正常的。。在浏览器中直接访问,设置编码为utf-8b也是可以正常显示的。。用c#后台代码测试了各种编码都以无效,告终。。 查看响应头: Content-Encoding gz 阅读全文
posted @ 2016-11-24 17:00 小小高 阅读(3340) 评论(0) 推荐(0) 编辑
摘要://中国天气网的实时天气接口,经测试,实时温度不是室外温度,湿度貌似可以用。 //101200901.html :101200901为地区天气区码(自行baidu) http://www.weather.com.cn/data/sk/101200901.html //一个可用的天气预报接口 http 阅读全文
posted @ 2016-11-24 16:43 小小高 阅读(806) 评论(0) 推荐(0) 编辑
摘要:Android Android SDK 配置步骤 阅读全文
posted @ 2016-11-19 22:21 小小高 阅读(481) 评论(0) 推荐(0) 编辑
摘要:在vmx文件中加 smc.version=0 阅读全文
posted @ 2016-11-19 16:39 小小高 阅读(288) 评论(0) 推荐(0) 编辑
摘要:Could not load file or assembly 'System.Core, Version=2.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, Retargetable=Yes' or one of its depen 阅读全文
posted @ 2016-11-17 17:16 小小高 阅读(126) 评论(0) 推荐(0) 编辑
摘要:%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i 阅读全文
posted @ 2016-11-17 16:04 小小高 阅读(153) 评论(0) 推荐(0) 编辑
摘要:http://skypegnu1.blog.51cto.com/8991766/1538371 阅读全文
posted @ 2016-11-17 10:51 小小高 阅读(112) 评论(0) 推荐(0) 编辑
摘要:Windows Server 2003 R2, x32 EDDVB4Y-KF6GK-MT3XX-FW3HC-VXTB6 阅读全文
posted @ 2016-11-17 09:42 小小高 阅读(384) 评论(0) 推荐(0) 编辑
摘要:{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "0.1.0", "command": "firefox", 阅读全文
posted @ 2016-11-17 08:57 小小高 阅读(5839) 评论(0) 推荐(0) 编辑
摘要:重启防火墙 firewall-cmd --reload CentOS 7 设置开机自启动 https://www.cnblogs.com/ming-yuan/p/10028819.html 修改root账户的密码 sudo passwd 切换到root用户 su bbr: #!/bin/bashsu 阅读全文
posted @ 2016-11-16 20:15 小小高 阅读(638) 评论(0) 推荐(0) 编辑
摘要:cordova for android in windows环境配置 1.环境变量: JAVA_HOME :对应的JDK ANDROID_HOME:对应的安卓SDK PATH环境变量中加入%JAVA_HOME%和%ANDROID_HOME%\platform-tools、%ANDROID_HOME%\tools --使用cnpm npm install -g cnpm --registry... 阅读全文
posted @ 2016-11-15 17:17 小小高 阅读(429) 评论(0) 推荐(0) 编辑
摘要://docker-machine创建,boot2docker要下载,或从tool box中取 docker-machine -s "E:\docker" create --engine-registry-mirror=https://xxxxx -d virtualbox default//http 阅读全文
posted @ 2016-11-10 15:42 小小高 阅读(319) 评论(0) 推荐(0) 编辑
摘要:pwd 显示当前目录 passwd 改密码 who am i 显示当前登录用户信息 ps 查看进程 ls 查看目录 vi 编辑文本 (i 进入编辑模式 esc+:然后输入wq(保存退出) q(退出不保存))/serverspeeder/bin/serverSpeeder.sh status 查看加速 阅读全文
posted @ 2016-11-10 12:41 小小高 阅读(160) 评论(0) 推荐(0) 编辑
摘要:git init -- 初始化git仓库 git add . --添加当前目录的文件到本地git仓库git add file1 file2 --添加多个文件git status --查看本地库状态 git commit -m "my first commit" --提交更改到本地仓库 git rem 阅读全文
posted @ 2016-11-09 14:58 小小高 阅读(321) 评论(0) 推荐(0) 编辑
摘要:string fullPath = @"\WebSite1\Default.aspx"; string filename = System.IO.Path.GetFileName(fullPath);//文件名 “Default.aspx” string extension = System.IO.Path.GetExtension(fullPath);//扩展名 “.aspx” strin... 阅读全文
posted @ 2016-11-07 09:56 小小高 阅读(239) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示