
Program
文章平均质量分 63
justinyun
把失去的当成一种收获
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
OSSIM 集中式的安全信息管理系统
总是有时候走神的乱逛的网络,看到这个,觉得应该去了解,如果你打算想深入了解LINUX安全方面的知识的话,相信学习使用这个软件,应该能够学到不少东西。中文介绍: 来源: http://www.oschina.net/p/ossimOSSIM即开源安全信息管理系统(OPEN SOURCE SECURITYINFORMATIONMANAGEMENT)是目前一个非常流行和完整的开源安全架构原创 2009-10-17 22:06:00 · 918 阅读 · 1 评论 -
Django - 上传文件(初稿)
views: from django.shortcuts import render_to_responseerror = Falsedef upload_file(request): if request.method == POST: try: file = request.FILES[file]原创 2009-11-02 18:41:00 · 376 阅读 · 0 评论 -
Python - pExcelerator 读取Excel表格
pExcelerator模块 http://sourceforge.net/projects/pyexcelerator/ #-*- coding: UTF-8 -*-import sysfrom pyExcelerator import *file = "/path/sample.xls"### get max row and colt1 = parse_xls(fi原创 2009-11-02 18:23:00 · 490 阅读 · 0 评论 -
Django - Philosophies and Limitations
Now that you’ve gotten a feel for the Django template language, we should point out some ofits intentional limitations, along with some philosophies behind why it works the way it works. More原创 2009-10-26 15:36:00 · 388 阅读 · 0 评论 -
Learing website development with django
简介Product DescriptionDetail DescriptionDjango is a high-level Python web framework that was developed by afast-moving online-news operation to meet the stringent twin challengesof ne原创 2009-10-17 22:07:00 · 391 阅读 · 0 评论 -
linux_c学习
<!-- document.body.oncopy = function() { if (window.clipboardData) { setTimeout(function() { var text = clipboardData.getData("text"); if (text && text.原创 2009-10-17 22:05:00 · 450 阅读 · 0 评论 -
HigherOrderPerl
Praise for Higher-Order Perl . . .As a programmer, your bookshelf is probably overflowing with books that did nothing to change the way youprogram . . . or think about programming.You’re going t原创 2009-10-17 22:00:00 · 351 阅读 · 0 评论 -
Linux Kernel in a Nutshel
Linux Kernel in a Nutshell By Greg Kroah-Hartman ............................................... Publisher: OReilly Pub Date: December 01, 2006 ISBN-10: 0-596-10079-5 ISBN-13: 978-0-596-1原创 2009-10-17 22:05:00 · 426 阅读 · 0 评论 -
Minimalist GNU for Windows - MinGW
MinGW, a contraction of "Minimalist GNU forWindows", is a port of the GNU Compiler Collection (GCC), and GNUBinutils, for use in the development of native Microsoft Windowsapplications. Offere原创 2009-10-17 22:07:00 · 624 阅读 · 0 评论 -
Django - ManyToMany relationship problem
在管理平台, 当我们建立了一个ManyToManyField的关系,(换成五笔打字真的很舒服), 在后台管理平台添加一条记录时,会自动关联相关的表格,通过定义的返回值显示,选则多个值与该条记录相对应,但有一个前题,就是需要定义ModelAdmin, 不然,后台是不会显示的,也没办法添加完关系。需要定义两个关系, 一个是list_display, 这个与显示有关,另一个是filter_hor原创 2009-11-09 17:16:00 · 1020 阅读 · 0 评论