远程使用Navicat for mysql 客户端软件连接 mySql数据时,连接出现 2003-Can’t connect to MySQL on ’192.168.1.2’(10061)错误时,是由于MySQL不准许远程连接。修改方法如下: 1:在服务端MySQL文件夹下找到my.ini文件。修...
分类:
数据库 时间:
2014-07-06 22:15:12
阅读次数:
322
1:源代码#!/usr/bin/env pythonname = raw_input('请输入您的姓名:')print 'Hello,', name运行时出错:y@y:~/my_note/my_python$ python 5.py File "5.py", line 3SyntaxError:.....
分类:
编程语言 时间:
2014-07-06 21:57:42
阅读次数:
236
1、join方法——把列表的内容通过某个字符连接起来具体使用方法如下:>>> a = ['my', 'name', 'is', 'yaha']>>> ''.join(a)'mynameisyaha'>>> ' '.join(a)'my name is yaha'>>> '-'.join(a)'my-...
分类:
编程语言 时间:
2014-07-06 20:31:36
阅读次数:
204
from http://yalla.itgroove.net/2014/04/use-sharepoint-tasks-web-part-outside-sites/Use the SharePoint My Tasks Web Part outside of My SitesWritten by ...
分类:
Web程序 时间:
2014-07-06 20:20:40
阅读次数:
234
打开VMware系统时,出现错误“Invalid configuration file. File "I:/My Virtual Machines/Windows XP english Professional/Windows XP Professional.vmx" was created by ...
分类:
其他好文 时间:
2014-07-06 19:06:08
阅读次数:
175
[client]port = 3306socket = /tmp/mysql.sock[mysqld]port = 3306socket = /tmp/mysql.sockbasedir = /usr/local/mysqldatadir = /data/mysqlpid-file = /data/...
分类:
数据库 时间:
2014-07-06 16:35:55
阅读次数:
249
1 /************************************************************************* 2 > File Name: my_socket.h 3 > Author:Monica 4 > Mail:liling...
分类:
编程语言 时间:
2014-07-06 16:30:11
阅读次数:
186
add by zhj:介绍了什么是一致性hash,以及实现一致性hash的一种算法。原文:http://my.oschina.net/u/195065/blog/193614 目录[-]一致性hash算法(consistent hashing)1基本场景2 hash算法和单调性3 consisten...
分类:
其他好文 时间:
2014-07-06 14:30:16
阅读次数:
194
直接上配置,你懂的
lai'mac:~ laijingli$ more .bash_profile
###add my scripts to the search path for convenient daily usage
export PATH=$PATH:/Users/laijingli/autoshell:/opt/local/bin:/opt/local/sbin
##...
分类:
其他好文 时间:
2014-07-06 10:12:26
阅读次数:
185
疯狂的暑假学习之 Django学习笔记(二)—— 模板
参考: 《The Django Book》 第四章
一、模板基础知识
1.模板是如何工作的
用 python manage.py shell 启动交互界面(因为manage.py 保存了Django的配置,如果直接python启动交互界面运行下面代码会出错)
输入下面代码
>>> from django import template
>>> t = template.Template('My name is {{name}}.')
>>> ...
分类:
其他好文 时间:
2014-07-05 10:41:57
阅读次数:
278