如果你是一个sdk的开发者,那么so与符号的问题一定要清楚。 关于符号的基本知识:http://blog.csdn.net/wuzoujing/article/details/56674000 每个so都有自己的符号,所谓的函数和结构体变量之类的,其实本质上都是地址,如果一个so依赖了另外一个so, ...
分类:
其他好文 时间:
2017-10-12 17:00:20
阅读次数:
237
https://oracle-base.com/articles/misc/utl_http-and-ssl http://blog.whitehorses.nl/2010/05/27/access-to-https-via-utl_http-using-the-orapki-wallet-comm ...
分类:
数据库 时间:
2017-10-11 15:22:21
阅读次数:
1331
通过 sysdig 我们可以近距离观察 linux 操作系统和容器的行为。 ...
分类:
其他好文 时间:
2017-10-11 11:14:13
阅读次数:
281
webpack 是一个打包工具,用在asp.net Core MVC 会觉得有必要吗? MVC 本身就有bundler~ 如果用过webpack就会知道,打包出来的效果结果就是不一样,MVC的打包就是把所有的代码放在一起,而且一个项目就只可以有一个打包,那里够用? 打包主要目的减少多页面应用反问服务 ...
分类:
Web程序 时间:
2017-10-11 10:40:30
阅读次数:
247
Moore's Law Reliability Memory Wall Programmability Wall Design complexity Power/energy constraints Programmability Wall Tradeoffs Three key component ...
分类:
其他好文 时间:
2017-10-09 00:32:51
阅读次数:
196
背景:无线网卡初次连接可以正常上网,但是用了一会儿就会出现无法上网的情况 版本: Ubuntu 16.04 一.分析: 1.使用ifconfig命令发现不会显示无线网卡,说明无线网卡被关闭,笔者输出的信息如下: jello@jello:~$ ifconfig eth0 Link encap:以太网 ...
分类:
系统相关 时间:
2017-10-09 00:32:11
阅读次数:
444
POJ3126:Prime Path kuangbin专题一:F题 Description The ministers of the cabinet were quite upset by the message from the Chief of Security stating that the ...
分类:
其他好文 时间:
2017-10-08 21:22:46
阅读次数:
288
JS中this的四种用法 1.在一般函数方法中使用 this 指代全局对象 1 2 3 4 5 function test(){ this.x = 1; alert(this.x); } test(); // 1 2.作为对象方法调用,this 指代上级对象 function test(){ ale ...
分类:
Web程序 时间:
2017-10-08 19:44:12
阅读次数:
200
http://blog.csdn.net/baimafujinji/article/details/51374202 贝叶斯定理:一个例子 其实我们在之前介绍朴素贝叶斯分类器时就介绍过它,如果你有点忘了,这里就通过一个例子来帮你回忆一下。 假设有一所学校,学生中60%是男生和40%是女生。女生穿裤子 ...
分类:
其他好文 时间:
2017-10-08 13:37:41
阅读次数:
214
#include using namespace std; typedef unsigned long long ULL; int power(ULL a,int k,int mod){ ULL ans=1l; while(k){ if(k&1) ans*=a; a*=a; a%=mod; ans%... ...
分类:
其他好文 时间:
2017-10-06 20:34:05
阅读次数:
177