Python学习懒出极致——自备常用链接
linux:
samba配置:http://blog.chinaunix.net/uid-23069658-id-3142052.html
ubuntu:
mysql启停:http://www.2cto.com/database/201305/207791.html
mysql开启3306端口:http://www.linuxdiyf.com/linux/15206.html
安装pip:http://www.2cto.com/os/201305/213725.html
python:
线程指南:http://www.cnblogs.com/huxi/archive/2010/06/26/1765808.html
一行python实现并行:http://blog.chedushi.com/archives/9158
memcache的权重原型代码:http://www.cnblogs.com/wupeiqi/articles/4999680.html
Django:
django web框架:https://www.processon.com/view/link/547a9650e4b047b811dd6fdb
django 初始化数据库:http://www.itnose.net/detail/6111283.html
django 请求及参数传递:http://www.cnblogs.com/qq78292959/p/3238752.html
django model报错:http://blog.csdn.net/pipisorry/article/details/45727309
django框架学习-Model进阶用法:http://blog.csdn.net/sundaydashu/article/details/7959977
前端:
天帅大神的html详解:http://www.cnblogs.com/luotianshuai/p/5159449.html
jquery: http://www.php100.com/manual/jquery/
JavaScript、Dom、jQuery:http://www.cnblogs.com/wupeiqi/articles/4457274.html
bootstrap-modal:http://www.bkjia.com/webzh/1037178.html
Echarts:
离线使用echarts及一些细节:http://blog.csdn.net/wudishine/article/details/41940761
银角脑残粉必备 http://www.cnblogs.com/wupeiqi:
目录:http://www.cnblogs.com/wupeiqi/articles/4938499.html
JavaScript、Dom、jQuery:http://www.cnblogs.com/wupeiqi/articles/4457274.html
django基础:http://www.cnblogs.com/wupeiqi/articles/4491246.html
django基础2:http://www.cnblogs.com/wupeiqi/articles/4508271.html
爬虫:http://www.cnblogs.com/wupeiqi/articles/5354900.html
51:http://www.cnblogs.com/wupeiqi/articles/5433893.html
金角大王那些鲜为人知的博客:
http://www.cnblogs.com/alex3714/category/770733.html
linux基础:http://www.cnblogs.com/alex3714/articles/5425379.html
python模块
1.pywin32 https://sourceforge.net/projects/pywin32/files/pywin32/Build%20220/
2.Microsoft Visual C++ 9.0 is required Unable to find vcvarsall.bat的解决方法:http://www.cnblogs.com/ldm1989/p/4210743.html
git
1.http://www.cnblogs.com/ruofengzhishang/p/3842587.html
2.http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/
神同步链接:http://www.cnblogs.com/Eva-J/p/5088566.html
Python学习懒出极致——自备常用链接的更多相关文章
- Python学习-第二天-字符串和常用数据结构
Python学习-第二天-字符串和常用数据结构 字符串的基本操作 def main(): str1 = 'hello, world!' # 通过len函数计算字符串的长度 print(len(str1 ...
- Python学习进程(15)常用内置函数
本节介绍Python的一些常用的内置函数. (1)cmp(x, y): cmp()函数比较 x 和 y 两个对象,并根据比较结果返回一个整数,如果 x<y,则返回-1:如果x&g ...
- python学习笔记(十)常用模块
import os print(os.getcwd())#取当前工作目录,绝对路径 print(os.chdir("../"))#更改当前目录,.代表当前目录,..代表上一级目录 ...
- python学习笔记(13)常用模块列表总结
os模块: os.remove() 删除文件 os.unlink() 删除文件 os.rename() 重命名文件 os.listdir() 列出指定目录下所有文件 os.chdir() 改变当前工作 ...
- 老男孩python学习自修第十二天【常用模块之生成随机数】
常用函数 import random random.random() 生成0到1之间的小数 random.randint(begin, end) 生成[begin, end]之间的整数 random. ...
- python学习笔记(12)常用模块
一.模块.包 什么是模块? 模块实质上就是一个python文件,它是用来组织代码的,意思就是说把python代码写到里面,文件名就是模块的名称,test.py test就是模块名称. 什么是包? 包, ...
- python学习第七天--文件系统常用模块os,os.path,pickle
模块是一个可用代码段的打包,后缀名为py,可被别的程序引入#使用import OS模块:operting system操作系统#import os os.chdir(path) 改变当前工作目录 os ...
- python学习笔记(四)- 常用的字符串的方法
一.常用的字符串方法(一):(字符串是不能被修改的) 1)a.strip() #默认去掉字符串两边的空格和换行符 a = ' 字符串 \n\n ' c = a.strip() a.lstrip() ...
- Python学习笔记五:字符串常用操作,字典,三级菜单实例
字符串常用操作 7月19日,7月20日 ,7月22日,7月29日,8月29日,2月29日 首字母大写:a_str.capitalize() 统计字符串个数:a_str.count(“x”) 输出字符, ...
随机推荐
- SZU:G32 Mass fraction
Judge Info Memory Limit: 32768KB Case Time Limit: 5000MS Time Limit: 5000MS Judger: Float Numbers (1 ...
- c# in deep 之Lambda表达式
从很多方面,Lambda表达式都可以看作是C# 2的匿名方法的一种演变.匿名方法能做的几乎一切事情都可以用Lambda表达式来完成,而且其更简洁.易读.下面是一个简单例子. class Film ...
- c/c++中typedef详解
1. typedef 最简单使用 typedef long byte_4; // 给已知数据类型long起个新名字,叫byte_4 你可以在任何需要 long 的上下文中使用 byte_4.注意 ty ...
- [转]Even when one byte matters
Source:http://kernelbof.blogspot.jp/2009/07/even-when-one-byte-matters.html Common Vulnerabilities a ...
- 企业架构研究总结(28)——TOGAF架构开发方法(ADM)之需求管理阶段
1.11 需求管理(Requirements Management) 企业架构开发方法各阶段——需求管理 1.11.1 目标 本阶段的目标是定义一个过程,使企业架构的需求可以被识别.存储并与其他架构开 ...
- MySQL关联查询总结
MySQL中经常使用关联查询,有机会总结下: 1 left join(左联查询): 返回包括左表中的所有记录和右表中联接字段相等的记录 例:select * from a left join b on ...
- Cracking the Coding Interview(Stacks and Queues)
Cracking the Coding Interview(Stacks and Queues) 1.Describe how you could use a single array to impl ...
- Weka 开发[1]-Instances类
先google一下,把Weka软件下载下来,安装完成之后,在Weka的安装目录中有一个weka.jar的包. 把包添加到工程中后,就可以调用weka中的函数了. 再介绍一点weka的基本知识,在wek ...
- Asp.Net MVC 进阶篇:路由匹配 实现博客路径 和文章路径
Asp.Net MVC 进阶篇:路由匹配 实现博客路径 和文章路径 我们要实现 通过路由 匹配出 博客地址 和博客文章地址 例如下面的这两个地址 //http://www.cnblogs.com/ma ...
- .NET Mvc Razor
.NET Mvc Razor也可以这样玩! 忙碌的工作总是占据了生活的大部分的时间!所以我的博客到现在还是寥寥的几篇文章,技术是用来分享和学习的,对技术有不同的见解,大家都可以分享下,如果如下文章有问 ...