TAG: 开源开发类

创建者: 黄富强    创建时间:2007-12-28 18:01:15    总信息数: 10

查看该TAG下的全部信息

日志

  • shell脚本的编缉、存储、执行

    作者: 黄富强 / 发表于 2008-05-27 13:50:57

    编缉工具:vi  gedit  ee  leafpad  vim很多存储为*.sh文件执行:$ sh  *.sh  # sh *.shchmod permission your-scrīpt-nameEx...

  • ETAPS 2008

    作者: 黄富强 / 发表于 2008-04-25 22:25:30

      researchers working on topics relating to Software Science. ETAPS, established in 1998, is a confederation of five main annual conferences...

  • gcov—a Test Coverage Program

    作者: 黄富强 / 发表于 2008-04-21 12:40:15

    gcov is a tool you can use in conjunction with GCC to test code coverage in your programs.http://gcc.gnu.org/onlinedocs/gcc/Gcov.html覆盖率(白盒测...

  • 最基本linux c编程基础

    作者: 黄富强 / 发表于 2008-03-15 19:24:32

    例子文件:/*this is bill.c*/#include  <stdio.h>void  bill(char *argv){    printf("bill:  %s\n",argv);}/*this is lin...

  • python数据结构--->set(集合)

    作者: 黄富强 / 发表于 2008-01-29 11:34:53

    主要了解集合的语义、组成、操作集、比较运算、集合的指令集、集合的内置函数与方法等信息。集合:相关数据对象集.Set SemanticsA set is, perhaps the simpl...

  • Graphical tools for ODBC management and browsing

    作者: 黄富强 / 发表于 2008-01-26 14:17:32

       This package contains three graphical applications for use withunixODBC, the Open DataBase Connectivity suite: ODBCConfig, a graphical...

  • 关于Python的线程程序设计

    作者: 黄富强 / 发表于 2008-01-09 16:41:24

    关于Python的线程程序设计 一、为什么用线程(Thread)?    在现阶段应用程序设计技术中,线程扮演很重要的角色,比如好多中间件是基于线程的、...