gomplayer simple skin

Memory | 2009/08/09 15:26 | Sunghwan

OPrada Skin

깔끔하고... 용량도 참 착하다.(10kbs) 다만 한가지 흠이라면 잘 안보인다는거다. 수정을 가해야할듯... 일단은 마음에 든다.


Prada Skin

Screen Shot



html 기본 문법

분류없음 | 2009/08/09 10:48 | Sunghwan

머리말

html은 쉽다고 했다.
누가 그렇게 말했는지는 모르겠지만...

나는 쉽지가 않다.

이래저래 알아야 할것들도 많고 사실 잘 정리된 한글로 된 참고서를 찾기도 쉽지가 않다.

웹표준이라는 말이 대두되고 Internet Explore 만이 아닌 firefox, opera, safari, chrome을 생각해야한다. 이젠 많은 수의 OS, Browser들이 범람하고 있다. 여러환경 여러 상황에서도 완벽하게 내가 원하는 동작을 할 수 있도록 해야한다.


그러기 위해서 필요한것이 "표준"
아래의 기본 문법은 모두 표준이다. 모두 잘 동작하고 내가 원했던것을 그대로 보여준다.
첨부파일은 html문서와 txt버전을 모두 넣어두었다.


Html Basic grammer

1. Basic structure
    <html>
        <head>
        ...
        <title> ... </title>
        ...
        </head>
        <body>
        ...
        </body>
    </html>

2. Heading elements
    <h1>Largest heading</h1>
    <h2>...</h2>
    <h3>, <h4>, <h5>
    <h6>Smallest heading</h6>

3. Text elements
    <p>This is paragraph</p>
    <br>, </br>, <br/> break line
    <hr>, </hr>, <hr/> Horizontal rule
    <pre>This text is preformatted</pre>

4. Logical styles
    <em>Emphasized</em>
    <string>String</strong>
    <code>Computer code</code>

5. Physical styles
    <b>bold</b>
    <i>italic</i>

6. Links
    <a href="http://... ">this is a link</a>
    <a href="http:// ... "> <img src="URL" alt="alternate text"> </a>

7. Anchor
    anchor    : <a name="name of anchor">text...</a>
    link    : <a href=#name of anchor>text</a>

8. List
    A. unordered list
        <ul>
            <li>first item</li>
            <li>second item</li>
            ...
            <li>end item</li>
        </ul>
    B. ordered list
        <ol>
            <li>first item</li>
            <li>second item</li>
            ...
            <li>end item</li>
        </ol>
    C. Definition list
        <dl>
            <dt>first term</dt>
            <dd>definition</dd>
            <dt>second term</dt>
            <dd>definition</dd>
        </dl>
9. Table
    <table border="1">
        <tr>
            <th>Someheader</th>
            <th>Someheader</th>
        </tr>
        <tr>
            <th>sometext</th>
            <th>sometext</th>
        </tr>
    </table>
10. Block Quote
    <blockquote>
        Text quoted form some source.
    </blockquote>

11. Use css
    A. Insert a style sheet
        a. External style sheet
            <head>
                <link rel="stylesheet" type="text/css" href="mystyle.css"/>
            </head>

        b. internal style sheet
            <head>
                <style type="text/css">
                    hr{color:blue}
                    p{font-family:arial}
                    ...
                </style>
            <head>

    B. Syntax
        p{
            text-align:center;
            color:black;
            font-family:arial
        }

    C. Grouping
        h1,h2,h3,h4,h5,h6{
            color:green
        }
    
    D. Class selector
        a. definition
            p.right{text-align:right}
            p.center{text-align:center}
            p.green{color:green}
            .blue{color:blue}

            #example p{
                    color:yellow;
                    font-size:2em;
                    background:#fff
                }

        b. usage    
            <p class="right"> ... </p>
            <p class="center"> ... </p>
            <p class="center green"> ... </p>
            <p class="blue"> ...</p>

            <div id="example">
                <p>This is "example p" style...</p>
            </div>




제1화 네 드릴으로 하늘을 뚫어라!

지하세계에 살고있는 사람들, 사람들은 땅위가 아닌 지하에서 살고있다.

드릴으로 땅을파서 삶의 공간을 확장하는 사람들 그중의 한명 시몬,


그리고 그곳의 문제아 카미나.

카미나는 천장을 뚫고 땅위로 올라가려한다. 엉뚱하지만 가슴뜨거운 말으로 시몬을 움직이는 카미나. 어느
날 천장이 무너지며 큰 머리모양의 로봇이 지하세계로 내려온다. 거기에 딸려온 한명의 여자애 요코,

땅속에서 발견한 또하나의 머리모양의 로봇
라간을이용해 가까스로 머리를 물리치는데...

turbo C 2.01

Tech | 2009/07/04 22:57 | Sunghwan

Install Turbo C 2.01

turbo C 2.01은 완전히 공개되어 있으며 자유롭게 사용가능하다.
rar으로 압축되어 있으며 두번째 첨부파일을 이용하여 압축 해제(extract)가 가능하다.
사용법은 다음과 같다.

  1. 첨부 파일(rarx39b3.exe, tc201.rar)을 다운로드 한다.
  2. "rarx39b3.exe"를 실행하면 그 폴더내에 "rar"라는 폴더에 자동으로 파일이 생성된다.
  3. 그 폴더에 tc201.rar 파일을 넣고 다음과 같이 넣는다.
    <d:\폴더명> rar32 e tc201.rar
  4. 압축이 풀린다.
  5. 폴더에있는 "install.exe"를 실행시켜 인스톨(설치) 한다.
    <d:\폴더명> install

※ TIP : 한글 윈도우를 사용하면 줄이 제대로 출력이 되지 않는다. 아래와 같이 출력이 될것이다.


[fig1, 한글환경에서의 실행모습]

그래서 언어코드를 영문으로 바꿔줘야한다. 그러면 다음처럼 정상적으로 출력이 된다.


[fig2, 영어환경에서의 실행모습]

<d:\> chcp 437
다시 한글환경으로 돌아가기위해서는
<d:\> chcp 949


수학공식 정리표

Tech | 2009/07/04 20:22 | Sunghwan

Mathematical Formula Table

[출처 : Department of Mathematics, UMIST]

수식에관한 공식들을 모아놓은 파일.
  1. Greek Alphabet, 그리스 알파벳
  2. Indices and Logarithms, 제승 및 로그
  3. Trigonometric Identities, 삼각함수
  4. Complex Numbers, 복소수
  5. Hyperbolic Identities, 초월함수
  6. Series, 수열
  7. Derivatives, 미분
  8. Integrals, 적분
  9. Laplace Transforms, 라플라스 변환
  10. Z Transforms, Z 변환
  11. Fourier Series and Transforms, 푸리에급수 및 변환
  12. Numerical Formulae
  13. Vector Formulae, 벡터
  14. Mechanics, 역학
  15. Algebraic Structures, 대수학
  16. Statistical Distributions, 정규분포
  17. F - Distribution, F분포
  18. Normal Distribution, 일반분포
  19. t - Distribution, t-분포
  20. X²(Chi-squared) - Distribution, Chi-squared 분포
  21. Physical and Astronomical constants, 상수표
이전 1 2 3 4 5 ... 6 다음