会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
雪域蓝心
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
3
4
5
6
7
8
9
10
11
下一页
2018年7月16日
docker 容器 设置网络代理
摘要: 以/bin/bash 形式进入容器: 【设置http 及https代理】,如下: export http_proxy=http://172.16.0.20:3128 export https_proxy=https://172.16.0.20:3128 要取消该设置: unset http_prox
阅读全文
posted @ 2018-07-16 16:26 雪域蓝心
阅读(4503)
评论(0)
推荐(0)
2018年5月21日
windows server dump文件
摘要: 1. mini dump: ***** 需要包含 dbghelp.dll 库 ****mini_dump.h文件: // reference:https://msdn.microsoft.com/zh-cn/library/windows/desktop/ee416349(v=vs.85).aspx
阅读全文
posted @ 2018-05-21 14:53 雪域蓝心
阅读(583)
评论(0)
推荐(0)
2018年5月6日
openssl windows 下 编译 bat
摘要: ++++全部++++++++ @echo offrem set sslpath=C:\0openssl\rem echo %sslpath% set X86_lib=C:\0openssl\32\lib\srcset X86_lib_o=C:\0openssl\32\lib\out set X86_
阅读全文
posted @ 2018-05-06 00:26 雪域蓝心
阅读(777)
评论(0)
推荐(0)
2018年4月22日
Websocket 临时参考网站
摘要: https://blog.csdn.net/SGuniver_22/article/details/74273839 https://www.zhihu.com/question/20215561 https://bbs.csdn.net/topics/392193545?page=1 https:
阅读全文
posted @ 2018-04-22 22:23 雪域蓝心
阅读(161)
评论(0)
推荐(0)
c++拆分字符,不拆开中文
摘要: // ConsoleApplication2.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <string.h> #include <string> #include <vector> #include <iostream> using n
阅读全文
posted @ 2018-04-22 13:51 雪域蓝心
阅读(406)
评论(0)
推荐(0)
2018年3月6日
python 抓取图片
摘要: **** # -*- coding:utf-8 -*-from urllib import requestfrom bs4 import BeautifulSoupimport reimport time url = "https://www.zhihu.com/question/22918070"
阅读全文
posted @ 2018-03-06 15:14 雪域蓝心
阅读(175)
评论(0)
推荐(0)
2018年2月26日
浏览器内置http抓包工具软件
摘要: 使用 360极速浏览器抓取HTTP的 请求头 与 响应头: *** 从 工具 >开发人员工具(F12) 或者 直接按下 F12键,打开抓包工具: **** 按下F5刷新: 双击其中的 Name 栏下的任意一列,显示报文头的内容: 文章参考【https://jingyan.baidu.com/arti
阅读全文
posted @ 2018-02-26 14:25 雪域蓝心
阅读(349)
评论(0)
推荐(0)
2018年2月9日
pickle
摘要: **** cPickle 是 python2 的库,到 python3,改名为 pickle 了 (全部小写) ****
阅读全文
posted @ 2018-02-09 13:58 雪域蓝心
阅读(156)
评论(0)
推荐(0)
2018年2月7日
python 内置调试工具 pdb
摘要: 除了 pycharm 可以调试python外,python自带的内置工具pdb 也可以调试 python。其命令方式类似于 gdb。 pdb 常用的调试命令见下表。 有两种不同的方法启动Python调试器: 一种直接在命令行参数指定使用pdb模块启动Python文件,如下所示: python -m
阅读全文
posted @ 2018-02-07 16:08 雪域蓝心
阅读(338)
评论(0)
推荐(0)
python 模块路径查找 及 添加
摘要: **** python 模块路径查找: 通过模块的__file__属性来确定: **** 模块路径添加: 方法一:函数添加1 import sys2 查看sys.path3 添加sys.path.append("c:\\")方法二:修改环境变量用户可以修改系统环境变量PYTHONPATH 方法三:
阅读全文
posted @ 2018-02-07 11:09 雪域蓝心
阅读(214)
评论(0)
推荐(0)
上一页
1
···
3
4
5
6
7
8
9
10
11
下一页
公告