码迷,mamicode.com
首页 >  
搜索关键字:eve    ( 10269个结果
MySql数据库的下载和安装卸载
下载 卸载 1.找到mysql安装目录下的my.ini文件 2.找到配置项datadir datadir="D:/develop /MySQL/MySQL Server 5.0/Data/" 3.关闭mysql服务 4.卸载 5.删除datadir 安装 访问:cmd命令: mysql -uroot ...
分类:数据库   时间:2017-02-19 12:53:59    阅读次数:192
Add Two Numbers(Linked List)
Add Two Numbers You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes c ...
分类:其他好文   时间:2017-02-18 22:54:29    阅读次数:203
openssl生成签名与验证签名
继上一篇RSA对传输信息进行加密解密,再写个生成签名和验证签名。 一般,安全考虑,比如接入支付平台时,请求方和接收方要互相验证是否是你,就用签名来看。 签名方式一般两种,对称加密和非对称加密。对称加密就是双方互相有一个相同的key。非对称比如就是公钥和私钥。 利用非对称openssl,下面是生成签名 ...
分类:其他好文   时间:2017-02-18 22:46:08    阅读次数:160
Java编程基础-字符串
在Java语言中,字符串数据实际上由String类所实现的。Java字符串类分为两类:一类是在程序中不会被改变长度的不变字符串;另一类是在程序中会被改变长度的可变字符串。Java环境为了存储和维护这两类字符串提供了 String和StringBuffer两个类(在JDK1.5版本后出现了String ...
分类:编程语言   时间:2017-02-18 19:50:10    阅读次数:285
HDOJ 1014
Problem Description Computer simulations often require random numbers. One way to generate pseudo-random numbers is via a function of the formseed(x+1 ...
分类:其他好文   时间:2017-02-18 18:52:36    阅读次数:165
December 11th 2016 Week 51st Sunday
If a thing is worth doing it is worth doing well. 如果事情值得做,那就做好。 If it is worth doing, then it is worth doing well, otherwise it is just a waste of tim ...
分类:其他好文   时间:2017-02-18 15:57:09    阅读次数:179
error LNK2038: 检测到“_ITERATOR_DEBUG_LEVEL”的不匹配项: 值“0”不匹配值“2
使用VS2013版本引用外部的lib进行编译时候提示: 错误 25 error LNK2038: 检测到“_ITERATOR_DEBUG_LEVEL”的不匹配项: 值“0”不匹配值“2”(jrtplibSend.obj 中) F:\jrtplibProjects\jrtplibSend\jrtpli ...
分类:其他好文   时间:2017-02-17 17:06:09    阅读次数:232
【leetcode】solution in java——Easy2
转载请注明原文地址:http://www.cnblogs.com/ygj0930/p/6410409.html 6:Reverse String Write a function that takes a string as input and returns the string reversed ...
分类:编程语言   时间:2017-02-17 16:55:00    阅读次数:151
jquery 实现处理esc按键
$(document).keyup(function (event) { switch (event.keyCode) { case 27: FilterWindow.Hide(); } }); ...
分类:Web程序   时间:2017-02-17 15:21:58    阅读次数:285
内置函数
abs() 对传入参数取绝对值 bool() 对传入参数取布尔值, None, 0, "",[],{},() 这些参数传入bool后,返回False all() 所有传入参数为真,才为真 any() 任何一个传入参数为真,才为真 ascii() 自动执行传入参数的_repr_方法(将对象转换为字符串 ...
分类:其他好文   时间:2017-02-17 12:55:05    阅读次数:153
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!