ChinaUnix.net
相关文章推荐:

openstack example

Small bulk INCAR System=bulk-GaAs DOS related values ISMEAR=-5 Electronic minimisation ENCUT=215 ! EMax for Ga !ENAUG=335.0 KPOINTS Monkhorst Pack 0 Monkhorst Pack 11 11 11 0 0 0 Supercell INCAR !ISPIN=2 DOS related values ISMEAR=0 SIGMA=0.05 Electronic minimisation NELECT=585 !chg 0 (neutral 585) NSW=30 IBRION=2 NELMIN = 4 EDIFF = 1E-4 EDIFFG = -0.05 ENCUT = 262 ! ENMIN for N LREAL = .TRUE. KPOIN...

by 冰海里的一条鱼 - Linux文档专区 - 2009-11-10 14:39:45 阅读(568) 回复(0)

相关讨论

Small bulk INCAR System=bulk-GaAs DOS related values ISMEAR=-5 Electronic minimisation ENCUT=215 ! EMax for Ga !ENAUG=335.0 KPOINTS Monkhorst Pack 0 Monkhorst Pack 11 11 11 0 0 0 Supercell INCAR !ISPIN=2 DOS related values ISMEAR=0 SIGMA=0.05 Electronic minimisation NELECT=585 !chg 0 (neutral 585) NSW=30 IBRION=2 NELMIN = 4 EDIFF = 1E-4 EDIFFG = -0.05 ENCUT = 262 ! ENMIN for N LREAL = .TRUE. KPOIN...

by 冰海里的一条鱼 - Linux文档专区 - 2009-11-10 14:39:42 阅读(571) 回复(0)

Struts example Struts is modeled after the MVC design pattern, you can follow a standard development process for all of your Struts Web applications. ...

by @sky - Java文档中心 - 2009-10-29 16:11:02 阅读(1091) 回复(0)

http://wiki.laptop.org/go/GStreamer#examples http://article.gmane.org/gmane.comp.video.gstreamer.devel/20240 附加: gst-launch v4l2src ! videorate ! video/x-raw-yuv,width=1280,height=1024 ! videoscale ! video/x-raw-yuv,width=640,height=480 ! ffmpegcolorspace ! xvimagesink 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/66419/showart_2059373.html

by xw_max - Linux文档专区 - 2009-09-24 17:52:05 阅读(794) 回复(0)

Bash by example Summary: By learning how to program in the bash scripting language, your day-to-day interaction with Linux will become more fun and productive, and you'll be able to build upon those standard UNIX constructs (like pipelines and redirection) that you already know and love. In this three-part series, Daniel Robbins will teach you how to program in bash by example. He'll cover the...

by sunshareall0709 - Linux文档专区 - 2009-09-11 15:42:01 阅读(669) 回复(0)

by tangke 2009-09-07 这是同事写的两个shell script 1.update.sh #!/bin/bash set -e server="http://172.16.20.99/tmp" download_list=(Student rdesktop_loongson_1.0.3_mipsel.tar.gz static_ip.sh) echo "Download files..." for d in "${download_list[@]}" do rm -f "$d" wget "${server}/${d}" done . static_ip.sh echo "Install rdesktop_loongson..." tar xzpf rdesktop_loongson_1.0.3_mipsel.tar.gz -C / ec...

by fewlife - Linux文档专区 - 2009-09-07 16:45:41 阅读(583) 回复(0)

#include sys/types.h> #include netinet/in.h> #include sys/event.h> #include sys/time.h> #include sys/socket.h> #include sys/types.h> #include arpa/inet.h> #include unistd.h> #include stdlib.h> #include string.h> #include stdio.h> #define err(msg) perror(msg) #define SA struct sockaddr struct event { int fd; void (*handle)(struct event *); }; static int tcp_listen(void) { ...

by @sky - BSD文档中心 - 2009-08-28 14:04:03 阅读(2212) 回复(0)

by tangke 200-06-05 数字加密: 加密的传统方法只用一把密钥加密。发出讯息者用这把钥匙对讯息加密。接收讯息者需要有完全相同的钥匙才能将加密了的讯息解密。这把钥匙必须以一种其他人没有机会得到它的方式给予接收讯息者。如果其他人得到了这把钥匙,这种加密方式就没用了。 使用一种称为"公开钥匙"的方法可以解决这个问题。公开钥匙的概念涉及两把钥匙。一把钥匙称为"公开钥匙"(公钥),可以以所有方式传递,任何人都可以得到...

by fewlife - Linux文档专区 - 2009-07-22 20:35:27 阅读(688) 回复(0)

by tangke 2009-06-02 [基本仓库]: 拥有 GIT 仓库的人需要的命令——也就是所有人,因为 git 的每个工作拷贝都是一个仓库。 [个人开发者 (独立工作)]: 任何需要进行 commit 的人都需要的命令,即使是一个人工作的情况。 如果你和其他人一起工作,你还需要列在[个人开发者 (参与者)]小节的命令。 扮演[集成者]角色的人还需要学习这一节中的命令。 [仓库管理]命令是给哪些负责维护 GIT 仓库的系统管理员的。 基本仓库 所有人都可以...

by fewlife - Linux文档专区 - 2009-07-22 19:10:02 阅读(755) 回复(0)

by tangke 2009-06-02 1、创建工程 svnadmin create /var/svn/repos/server svn import /home/yqliu29/server file:///var/svn/repos/server -m "First import" 2、检出工程 svn co http://192.168.61.79/repos/server 3、添加文件或者文件夹 cp /home/yqliu29/main.c ./ svn add main.c 4、提交更改 svn commit -m "add main.c" 5、查看本地或者网络svn工程目录的情况 svn list http://192.168.61.79/repos/server svn list -v...

by fewlife - Linux文档专区 - 2009-07-22 19:08:42 阅读(537) 回复(0)

GDB调试精粹及使用实例 来源:不详 (2006-07-14 11:18:05) 一:列文件清单 1. List (gdb) list line1,line2 二:执行程序 要想运行准备调试的程序,可使用run命令,在它后面可以跟随发给该程序的任何参数,包括标准输入和标准输出说明符()和外壳通配符(*、?、[、])在内。 如果你使用不带参数的run命令,gdb就再次使用你给予前一条run命令的参数,这是很有用的。 利用set args 命令就可以修改发送给程序的参数,而...

by landherd - Linux文档专区 - 2007-11-06 13:15:04 阅读(756) 回复(0)