码迷,mamicode.com
首页 >  
搜索关键字:tde    ( 1722个结果
Python报错UnicodeDecodeError: ascii codec can t decode byte 0xe0 ...解决方法
用命令(python setup.py install)安装webpy时候总是报错 在网上搜索到的解决方法如下: 1. 这是Python 2 mimetypes的bug 2. 需要将Python2.7/lib/mimetypes.py文件中如下片段注释或删除: try: ctype = ctype. ...
分类:编程语言   时间:2016-12-25 02:09:54    阅读次数:215
linux 下向github上传代码
上传代码: cd TPS/devices/M8 git init #//初始化 git add . #如果是.表示上传全部目录下的文件,可以是某个文件 git commit -m 'version 1.0' git remote add origin https://github.com/jiugu ...
分类:Web程序   时间:2016-12-24 16:23:39    阅读次数:240
数组实现多项式的加减乘运算
"fatal.h"//头文件 1 #include<stdio.h> 2 #include<stdlib.h> 3 #define Error(Str) FatalError(Str) 4 #define FatalError(Str) fprintf(stderr,"%s\n",Str),exit ...
分类:编程语言   时间:2016-12-24 01:10:07    阅读次数:288
jpype调用jar
import easyguiimport osfrom jpype import * jarpath = "d:\jar"print "jarPath: %s" % jarpathjpath=getDefaultJVMPath()# jarpath= os.path.join(os.path.abs ...
分类:编程语言   时间:2016-12-22 19:32:47    阅读次数:252
react生命周期
1.getDefaultProps 初始化设置props 2.getInitialState 初始化设置state 3.componentWillMount 第一次完成渲染时调用 4.componentDidMount 第一次渲染完成后调用,且仅调用一次,一般用于绑定时间 5.componentWi ...
分类:其他好文   时间:2016-12-20 20:08:08    阅读次数:146
SQL Server 扩展事件(Extented Events)从入门到进阶(4)——扩展事件引擎——基本概念
本文属于 SQL Server 扩展事件(Extented Events)从入门到进阶 系列http://www.sqlservercentral.com/articles/Stairway+Seri...
分类:数据库   时间:2016-12-20 14:16:25    阅读次数:309
Python爬虫初识
暑假学的,并写的笔记。现在把他写到博客上,也是复习一波。寒假继续学习。争取写个帮我抢火车票的。因为学的是python2.7x。。。。 所以用的urllib 原来可以在submile 中运行pyth...
分类:编程语言   时间:2016-12-19 16:41:20    阅读次数:271
Android: TODO 应用交互的两种实现方法(Behavior)
最近在写 TODO app,涉及到 Calendar 和 RecyclerView 的交互, 需求: 1. 往上滑动, Calendar 显示为周 2. 周显示模式下,往下滑动,显示为月 3. 列表下滑到第一个 item 的位置, Calendar 显示为周的时候,这时候改变为显示月 4. 列表上滑 ...
分类:移动开发   时间:2016-12-19 14:28:54    阅读次数:233
python types模块
types模块成员: ['BooleanType', 'BufferType', 'BuiltinFunctionType', 'BuiltinMethodType', 'ClassType', 'CodeType', 'ComplexType', 'DictProxyType', 'DictTyp ...
分类:编程语言   时间:2016-12-19 13:39:23    阅读次数:171
Flexslider图片轮播、文字图片相结合滑动切换效果
Flexslider是一款基于的jQuery内容滚动插件。它能让你轻松的创建内容滚动的效果,具有非常高的可定制性。开发者可以使用Flexslider轻松创建各种图片轮播效果、焦点图效果、图文混排滚动效果。 Flexslider具有以下特性: 支持滑动和淡入淡出效果。 支持水平、垂直方向滑动。 支持键 ...
分类:其他好文   时间:2016-12-18 18:15:08    阅读次数:275
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!