Welcome to the wonderful world of
portability... or rather the lack of it. Before we start analyzing these two
options in detail and take a deeper loo...
分类:
系统相关 时间:
2014-06-11 22:05:34
阅读次数:
407
先上写干货,几个开源网站:
github.com
launchpad.netgitorious.orgsourceforge.netfreecode.com
今天介绍一下python函数和文件读写的知识。
函数
def print_two(*args):#That tells Python to take all the arguments to the function a...
分类:
编程语言 时间:
2014-06-08 10:37:23
阅读次数:
277
Problem 1: Ski Lessons [Brian Jacokes,
2002]Farmer John wants to take Bessie skiing in Colorado. Sadly, Bessieis not
really a very good skier.Bessie h...
分类:
其他好文 时间:
2014-06-08 01:30:57
阅读次数:
406
skiplist介绍跳表(skip
List)是一种随机化的数据结构,基于并联的链表,实现简单,插入、删除、查找的复杂度均为O(logN)。跳表的具体定义,跳表是由William
Pugh发明的,这位确实是个大牛,搞出一些很不错的东西。简单说来跳表也是链表的一种,只不过它在链表的基础上增加了跳跃功能...
分类:
其他好文 时间:
2014-06-07 07:18:01
阅读次数:
239
1. Take default loss function for grantedMany
practitioners train and pick the best model using the default loss function
(e.g., squared error). In pr...
分类:
其他好文 时间:
2014-06-05 21:54:12
阅读次数:
487
系统centOS-6.3
方法操作很简单,如下:
# /etc/init.d/mysql stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
# mysql>use mysql ;
mysql> UPDATE user SET Password=PAS...
分类:
数据库 时间:
2014-06-05 02:54:40
阅读次数:
331
1. mysql忘记密码
vim /etc/my.conf 文件在mysqld下添加skip-grant-tables,表示mysql在登录的时候不检查权限。登录mysql。直接运行mysql> use mysql;
> update user set Password=password('root') where User='root'
> flush privileges;
> qu...
分类:
数据库 时间:
2014-06-03 02:24:16
阅读次数:
283
Haskell functions can take functions as parameters
and return functions as return values. A function that does either of those is
called a higher orde...
分类:
其他好文 时间:
2014-06-02 18:16:16
阅读次数:
334
文章來源:http://blog.chinaunix.net/uid-9370128-id-1687475.html同一IDC
,IDC内部有DNS服务器,对各服务器的IP做了反向解析,但未对内网IP做反向解析,所以使用skip-name-resolve以后用内网地址向mysqlslap请求响应快了...
分类:
数据库 时间:
2014-05-31 17:12:33
阅读次数:
293
1、修改/etc/my.cnf文件
找到mysqld选项,增加子项skip-grant-tables2、重新启动mysql服务 service mysqld restart3、进入mysql
在shell中执行mysql -u root4、设置root新密码 update mysql.user se...
分类:
数据库 时间:
2014-05-30 23:34:38
阅读次数:
334