Russian Doll Design

Tags:


<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                      targetNamespace="http://www.books.org"
                      xmlns="http://www.books.org"
                      elementFormDefault="qualified">
    <xsd:element name="BookStore">
        <xsd:complexType>
            <xsd:sequence>
                <xsd:element name="Book"  maxOccurs="unbounded">
                    <xsd:complexType>
                        <xsd:sequence>
                            <xsd:element name="Title" type="xsd:string"/>
                            <xsd:element name="Author" type="xsd:string"/>
                            <xsd:element name="Date" type="xsd:string"/>
                            <xsd:element name="ISBN" type="xsd:string"/>
                            <xsd:element name="Publisher" type="xsd:string"/>
                        </xsd:sequence>
                    </xsd:complexType>
                </xsd:element>
            </xsd:sequence>
        </xsd:complexType>
    </xsd:element>
</xsd:schema>

This way of designing the schema – by inlining everything – is called the Russian Doll design.

러시아인들에게는 무언가가 있다?
이게 왜 러시아 인형 디자인이냔 말이다 -_-;;;

역시 이바닥의 작명의 세계란..

김원박사의 강연에서도 거지같은 이름으로 뽑혔던 것 중 하나가 C4.5 라는 마이닝 알고리즘이다. 무슨 약이름 같다나.. ㅋㅋㅋ (동의!)

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *