Content Explore
  • 4. 类图, UML学习笔记

    Published : 2008-03-21 Categories : Tech Tags : Class Class Diagrams UML 类图 逻辑视图 Reading
    Modeling a System's Logical Structure: Introducing Classes and Class Diagrams
    为系统逻辑结构建模: 类与类图
    class: 类
    object: 对象
    instance: 实例
    state: 状态
    behavior: 行为
    attribute: 属性
    inline attribute: 内置属性
    attribute pro...
  • 3. 活动图, UML学习笔记

    Published : 2008-03-20 Categories : Tech Tags : Activity Diagrams Workflows UML 活动图 流程视图
    Modeling System Workflows: Activity Diagrams
    为工作流程建模: 活动图
    Activity diagrams are the only UML diagram in the process view of your system's model.
    process: 流程
    flowchart: 流程图
    activity: 活动
    action: 动作
    init...
  • 2. 用例, UML学习笔记

    Published : 2008-03-19 Categories : Tech Tags : Use Case UML 用例 Reading
    Modeling Requirements: Use Cases
    为需求建模: 用例
    Use cases affect every other facet of your system's design;
    they capture what is required and the other views on your model, then show how those requirements...
  • 1. 简介, UML学习笔记

    Published : 2008-03-18 Categories : Tech Tags : UML Tools Software Dia Visual Paradigm for UML VP-UML FreeMind Reading
    UML: Unified Modeling Language 统一建模语言 (http://www.uml.org)
    Figure 1-1.
    Philippe Kruchten's 4+1 view model
    http://www3.software.ibm.com/ibmdl/pub/software/rational/web/whitepapers/2003/Pbk4p1.pdf
    http:...
  • 误操作

    Published : 2008-03-10 Categories : Tech Tags : rm trash
    ChinaUnix一帖子:
    写下你职业生涯中最难以忘怀的误操作
    http://linux.chinaunix.net/bbs/thread-981914-1-1.html
    看完当前所有回复...很深刻很搞笑,从桌面到企业核心应用...各种失误都有涉及,~得防备自己不要遇到!
    其中比较搞笑的是,一个人就这样写道:
    本来只是想编译个程序的……
    $make love
    donot know how to ...
  • 从字符串中删除不需要的字符[SQL]

    Published : 2007-12-21 Categories : Tech Tags : Replace Translate SQL DB2 MySQL SQL Server Oracle PostgreSQL
    O'Reilly , SQL Cookbook
    by Antbony Molinaro
    解决方案:replace(), translate()
    DB2
    select ename,
    replace(translate(ename, 'aaaa', 'AEIOU'), 'a', '') stripped1,
    sal,
    replace(cast(sal as char(4)), '0', '') str...
  • Ubuntu 中文编码设置

    Published : 2007-12-11 Categories : Tech Tags : Linux Ubuntu Locales zh
    今天开始把工作环境全部迁移到Linux,一天下来,算平静。很庆幸当初在win下面用了Mozilla Thunderbird邮件客户端,而不是OutLook,这简直太方便了,可以直接把上百兆的邮件存放目录复制到linux下直接用 :) 与之形成鲜明对比的是微软的新版live Messager,今天发现微软的这个东西甚至不支持安装在他们自己的WinXP 64/Wind2003/2008上面? 我没有什...
  • token 小结

    Published : 2007-11-24 Categories : Tech Tags : Token
    token: 记号,标记,标识... 字符串
    I. 验证
    常见的,尝试登录一系统,或者系统之间建立连接,server端会建立一token,唯一字符串,客户端凭此token,可以在服务器端对应到一合法账户。token不能直接写入用户信息,通常需要使用各种方法加固token,以保护弱密码,防止被猜解。
    II. 查重
    给流程中每一项都加入token。
    e.g. 接触一次事故,在一接入第三方在线支付接口的...
  • PHP 4 end of life announcement

    Published : 2007-07-19 Categories : Tech Tags : PHP
    [13-Jul-2007]
    Today it is exactly three years ago since PHP 5 has been released. In those three years it has seen many improvements over PHP 4. PHP 5 is fast, stable & production-ready and as PHP 6 is...
  • 基于mysql + php 的 utf-8 应用

    Published : 2007-03-14 Categories : Tech Tags : MySQL PHP UTF-8
    SmartKit 0.0.26实现了utf-8的应用,小结一下:
    utf-8是unicode的一种变长字符编码,由Ken Thompson于1992年创建。utf-8用1到6个字节编码unicode字符,这种编码致力于把全球的语言纳入一个统一的编码...
    详细信息参考: The Basics of UTF-8
    http://www.codeguru.com/cpp/misc/misc/multi-...