摘要: //The code to create a database file and a table named Tracks with two columns in the database is as follows:1 #!/usr/bin/python2 import sqlite33 conn... 阅读全文
posted @ 2015-12-19 16:11 鹏_VFX 阅读(438) 评论(0) 推荐(0)
摘要: HyperText Transport Protocol - HTTPThe HyperText Transport Protocol is described in the following document: http://www.w3.org/Protocols/rfc2616/rfc261... 阅读全文
posted @ 2015-12-12 22:52 鹏_VFX 阅读(478) 评论(0) 推荐(0)
摘要: //创建一个列表 1 from Tkinter import * # Importing the Tkinter (tool box) library 2 root = Tk() # Create a background window ... 阅读全文
posted @ 2015-12-09 20:42 鹏_VFX 阅读(330) 评论(0) 推荐(0)
摘要: //注意Linux主机 //删除指定目录中文件名以 .tmp 为后缀的文件 //输出指定文件夹(包括子文件夹)中最大的两个文件 //删除指定文件(包括子文件夹)中的所有文件及文件夹 //删除指定文件中的文件序列 运行后分别输入: /srv/scratch/houdini_zpeng/Render/s 阅读全文
posted @ 2015-12-05 16:36 鹏_VFX 阅读(2126) 评论(0) 推荐(0)
摘要: houdini vex 阅读全文
posted @ 2015-12-03 16:37 鹏_VFX 阅读(12301) 评论(0) 推荐(0)
摘要: //search lines that start with the string “From:”import rehand = open('mbox-short.txt')for line in hand: line = line.rstrip() if re.search('ˆFrom:',... 阅读全文
posted @ 2015-12-01 23:41 鹏_VFX 阅读(705) 评论(0) 推荐(0)
摘要: 对应文档为Houdini帮助:Expression cookbook章节RipplesTo get ripples radiating from a center, base the sine function on the distance of the point to the center o... 阅读全文
posted @ 2015-09-04 17:19 鹏_VFX 阅读(1635) 评论(0) 推荐(0)