上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页
摘要: 以/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 雪域蓝心 阅读(4471) 评论(0) 推荐(0) 编辑
摘要: 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 雪域蓝心 阅读(548) 评论(0) 推荐(0) 编辑
摘要: ++++全部++++++++ @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 雪域蓝心 阅读(743) 评论(0) 推荐(0) 编辑
摘要: 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 雪域蓝心 阅读(149) 评论(0) 推荐(0) 编辑
摘要: // ConsoleApplication2.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <string.h> #include <string> #include <vector> #include <iostream> using n 阅读全文
posted @ 2018-04-22 13:51 雪域蓝心 阅读(393) 评论(0) 推荐(0) 编辑
摘要: **** # -*- 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 雪域蓝心 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 使用 360极速浏览器抓取HTTP的 请求头 与 响应头: *** 从 工具 >开发人员工具(F12) 或者 直接按下 F12键,打开抓包工具: **** 按下F5刷新: 双击其中的 Name 栏下的任意一列,显示报文头的内容: 文章参考【https://jingyan.baidu.com/arti 阅读全文
posted @ 2018-02-26 14:25 雪域蓝心 阅读(322) 评论(0) 推荐(0) 编辑
摘要: **** cPickle 是 python2 的库,到 python3,改名为 pickle 了 (全部小写) **** 阅读全文
posted @ 2018-02-09 13:58 雪域蓝心 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 除了 pycharm 可以调试python外,python自带的内置工具pdb 也可以调试 python。其命令方式类似于 gdb。 pdb 常用的调试命令见下表。 有两种不同的方法启动Python调试器: 一种直接在命令行参数指定使用pdb模块启动Python文件,如下所示: python -m 阅读全文
posted @ 2018-02-07 16:08 雪域蓝心 阅读(298) 评论(0) 推荐(0) 编辑
摘要: **** python 模块路径查找: 通过模块的__file__属性来确定: **** 模块路径添加: 方法一:函数添加1 import sys2 查看sys.path3 添加sys.path.append("c:\\")方法二:修改环境变量用户可以修改系统环境变量PYTHONPATH 方法三:  阅读全文
posted @ 2018-02-07 11:09 雪域蓝心 阅读(197) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页