虽是转的。但好东西不应该沉默
原文地址:http://www.cnblogs.com/lhb25/archive/2012/10/19/10-free-html-admin-templates.html
免积分下载地址:http://download.csdn.net/detail/yangwei19680827/7324845
Admin Panel Template
这...
分类:
Web程序 时间:
2014-05-12 14:58:53
阅读次数:
613
这是python吧的一个帖子(http://tieba.baidu.com/p/3030737423),具体的就是,导入txt文档,然后就会生成像一个gif的界面,文字不断的更换,用这种方法看文档,如图:
代码:
# -*- coding: utf-8 -*
#-------------------------------------
import pygame
from pygame...
分类:
编程语言 时间:
2014-05-12 14:44:34
阅读次数:
492
1、list.append(obj) 向列表中添加一个对象obj
list = ['apple', 'pear', 'orange']
>>> list.append('apple')
>>> list
['apple', 'pear', 'orange', 'apple']
2、list.count(obj) 返回一个...
分类:
编程语言 时间:
2014-05-12 14:17:41
阅读次数:
418
例子代码可以在http://download.csdn.net/detail/worldmatrix/4603488下载
iOS的UI是基于UIView类的,我们能看到的每个UI元素都是UIView或者UIView的子类。View按树形结构组织起来,树根是UIWindow。View负责界面的交互和....
分类:
移动开发 时间:
2014-05-12 10:12:40
阅读次数:
478
原谅我这个小白到现在才搭建好apache....之前都是无限次的 cd
mysite(第一个django project啊,就没变过= =),python manage.py
runserver然后我就可以在127.0.0.1:8000中访问了....我原以为ubuntu下的软件永远是sudo ap...
分类:
其他好文 时间:
2014-05-12 09:50:59
阅读次数:
478
原题地址:http://oj.leetcode.com/problems/binary-tree-postorder-traversal/题意:实现后序遍历。递归实现比较简单,非递归实现。解题思路:这道题的迭代求解比先序遍历和后序遍历要麻烦一些。假设一棵树是这样的:
...
分类:
编程语言 时间:
2014-05-12 08:13:39
阅读次数:
336
# -* coding: utf-8 -*-
import sys
import os
import getopt
import threading
import time
def Usage():
usage_str = '''说明:
\t定时器
\timer.py -h 显示本帮助信息,也可以使用--help选项
\timer.py -d num 指定一个延时时间(以毫秒为单位)...
分类:
编程语言 时间:
2014-05-12 06:29:06
阅读次数:
428
1、len(mapping) 返回映射的长度(键-值对的个数)
2、hash(obj) 返回obj的哈希值
>>> myDict = {'name':'earth', 'port':'80'}
>>> len(myDict)
2
>>> hash('name')
15034981
3、dict.copy...
分类:
编程语言 时间:
2014-05-11 14:40:22
阅读次数:
327
Install Ruby(安装)For windows you can download Ruby
fromhttp://rubyforge.org/frs/?group_id=167for Linux
tryhttp://www.rpmfind.net.Our first program(从此开始...
分类:
其他好文 时间:
2014-05-11 00:02:21
阅读次数:
602
1.下载安装文件加压、编译和安装cd /tmpwget
http://download.redis.io/releases/redis-2.8.9.tar.gztar -zxf
redis-2.8.9.tar.gzcd redis-2.8.9makesudo make install这时Redis ...
分类:
其他好文 时间:
2014-05-10 22:29:44
阅读次数:
432