模块与import语句 任何Python源文件都能以模块的形式使用。例如:如下代码# spam.pya = 37def foo(): print " I`m foo and is %s" %a def bar(): print "I`m bar and I`m calling f...
分类:
编程语言 时间:
2015-10-23 14:50:27
阅读次数:
219
前言部分注:本文并非绝对原创 大部分内容摘自 http://blog.csdn.net/hengshujiyi/article/details/20943045文中有些方法可能已过时并不适用于现在的开发环境。1、Search Bar 怎样去掉背景的颜色(storyboard里只能设置backgrou...
分类:
移动开发 时间:
2015-10-22 12:28:54
阅读次数:
521
<!DOCTYPE?html>
<html>
<head>
<style?type="text/css">
/*data?loading*/
#nprogress?{?pointer-activities:?none?}
#nprogress?.bar?{?background:?#a0ce4e;?position:?fixed;?z-index:?100;?...
分类:
其他好文 时间:
2015-10-21 19:29:19
阅读次数:
200
状态栏的字体为黑色:UIStatusBarStyleDefault状态栏的字体为白色:UIStatusBarStyleLightContent一、在info.plist中,将View controller-based status bar appearance设为NO状态栏字体的颜色只由下面的属性设...
分类:
移动开发 时间:
2015-10-20 22:31:12
阅读次数:
223
True Launch Bar 官网 增强及自定义window任务栏快捷方式管理。 有免费版的Free Launch Bar 官网
分类:
其他好文 时间:
2015-10-20 19:29:03
阅读次数:
134
查看ADDM(数据库版本为ORACLE 10.2.0.5.0)报告时,发现其中有个结论非常不靠谱:Significant virtual memory paging was detected on the host operating system,具体内容如下所示: FINDING 2: 100%...
分类:
其他好文 时间:
2015-10-16 13:29:25
阅读次数:
253
还是在苹果的 View Controller Catalog for iOS 文章中找到答案。文中提到了两点:1、If the navigation bar or toolbar are visible but not translucent, it does not matter if the v...
分类:
其他好文 时间:
2015-10-16 00:57:55
阅读次数:
202
html.parser使用正则表达式解析html代码在使用中发现部分网页无法完全解析,跟踪发现因为网页中有这样的代码badidu而html.parser定位tag使用的正则如下locatestarttagend = re.compile(r""" \s]+ # bar...
分类:
Web程序 时间:
2015-10-15 11:17:09
阅读次数:
166
如何运用布尔算子?AND(且)是缺省使用的布尔算子。例如:如果要搜索foo和bar同时出现的文件:foobar如果从两者之中任一个都可以,则用|介于两者之间。例如:如果要搜索.jpg或.bmp文件:.jpg|.bmp(注:在|两侧有空格)。如何运用通配符?通配符*可以匹配任意长度和类型的字符..
分类:
其他好文 时间:
2015-10-15 10:09:53
阅读次数:
142
MakeFile 学习1、静态模式objects = foo.o bar.o all: $(objects) $(CC) $(CFLAGS) -o -o $@ $^ $(objects): %.o: %.c $(CC) -c $(CFLAGS) $< -o $@ 上面的例子中,指明了我们的目标从$o...
分类:
其他好文 时间:
2015-10-14 01:34:44
阅读次数:
312