'행번호
   nCnt = intTotalCnt - (page_size * (nPage-1))
2009/11/19 16:18 2009/11/19 16:18
TAG

알쏭~ 2.0

분류없음 2009/11/16 14:33
사용자 삽입 이미지





















알송 2.0으로 오면서 부터 UI(유저 인터페이스)가 확 바뀌었네~
통합모드 / 분리모드
사실 통합모드보다는 분리모드로 사용하고 있는데,...

장점만 쓴다.
1. 색감이 너무 좋으네요.
2. 벨소리 맹글기 기능 좋으네요.
3. 스킨맹글기 기능도 있지만 그닥 이쁘지도 않고 별로 안쓰고 걍 기본적은 비비드컬러 스킨이
짱인듯 하고
4. url 연결해서 음악방송 듣기도 좋궁.
5. mp3 기계 연결해 놓은후에 mp3 기계로 바로넣기 기능이 좋은거 같으네요.

점점 진화하는 알탱이들이 자랑스럽네요.~
2009/11/16 14:33 2009/11/16 14:33
TAG

G-Dragon 소년이여

할꺼야 2009/11/10 12:45
 

GD

your chores drop it on me

 

밤은 깊었는데 잠은 안오고

늘어난 두통과 싸우고

이리저리 뒤척이다 생각에 잠겨

또 펜을 붙잡고

빼곡히 써내려가는 가사

이 안에 내 철학이 가득하다

뿌연 담배연기 꽉찬 내 방

home sweet home 아늑하다

 

13살 나이에 와서 쉴 틈없이 달려 왔어

멋 모르는 자신감 내겐 가장 큰 무기였어

오르막길이라면 내리막길도 있는 법

돌아가기에 너무 늦어버렸어

I can't let go

 

remember back in the day

남은 절대 믿지 못해

don't forget back in the day

소년이여 그 멋진 목소리로

세상에 소리쳐 shine alive

 

난 G-Dragon 남들이 뭐라건

작다고 어리다고 난 G-Dragon

남들이 뭐라건

사람들은 말해 내가 부러워 가진게 너무 많아

연예인들은 다 편하게만 살아

딱 하루만 그 입장이 돼 봐라

보이는 게 다가 아니란 걸 알아

 

시간이 흘러가면서 외로움만 커져 갔어

멋 모르는 의무감 내겐 가장 큰 부담였어

오르막길이라면 내리막길도 있는 법

도망치기엔 너무 늦어버렸어

I wanna go

 

remember back in the day

남은 절대 믿지 못해

don't forget back in the day

소년이여 그 멋진 목소리로

세상에 소리쳐 shine alive

 

십년동안 수많은 물음들과

내가 흘린 수 많은 땀방울들과

내가 참아온 차가운 눈물들

아아 아아 자 시작해 보는 거야

 

remember back in the day

남은 절대 믿지 못해

don't forget back in the day

소년이여 그 멋진 목소리로

세상에 소리쳐 shine alive

just ones

 

remember back in the day (go back)

we are the woo woo

남은 절대 믿지 못해 (forget)

그대로 woo woo

don't forget back in the day (way back)

소년이여 그 멋진 목소리로 세상에 소리쳐 shine alive

 

come back to me now woo come back to me now 십년이 지나도

come back to me now woo come back to me now 지나간 세월 내 진심을

 

remember back in the day (It's time to shine)

남은 절대 믿지 못해

don't forget back in the day

소년이여 그 멋진 목소리로 세상에 소리쳐 shine alive

2009/11/10 12:45 2009/11/10 12:45

삼항연산

JS 2009/11/05 14:58
f.sex[f.sex[0].checked?0:1].value
2009/11/05 14:58 2009/11/05 14:58
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
    <title></title>
    <style type="text/css">
        .preView { width: 70px; height: 70px; text-align: center; border:1px solid silver; }
    </style>
    <script type="text/javascript">

        function fileUploadPreview(thisObj, preViewer) {
            if(!/(\.gif|\.jpg|\.jpeg|\.png)$/i.test(thisObj.value)) {
                alert("이미지 형식의 파일을 선택하십시오");
                return;
            }

            preViewer = (typeof(preViewer) == "object") ? preViewer : document.getElementById(preViewer);
            var ua = window.navigator.userAgent;

            if (ua.indexOf("MSIE") > -1) {
                var img_path = "";
                if (thisObj.value.indexOf("\\fakepath\\") < 0) {
                    img_path = thisObj.value;
                } else {
                    thisObj.select();
                    var selectionRange = document.selection.createRange();
                    img_path = selectionRange.text.toString();
                    thisObj.blur();
                }
                preViewer.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fi" + "le://" + img_path + "', sizingMethod='scale')";
            } else {
                preViewer.innerHTML = "";
                var W = preViewer.offsetWidth;
                var H = preViewer.offsetHeight;
                var tmpImage = document.createElement("img");
                preViewer.appendChild(tmpImage);

                tmpImage.onerror = function () {
                    return preViewer.innerHTML = "";
                }

                tmpImage.onload = function () {
                    if (this.width > W) {
                        this.height = this.height / (this.width / W);
                        this.width = W;
                    }
                    if (this.height > H) {
                        this.width = this.width / (this.height / H);
                        this.height = H;
                    }
                }
                if (ua.indexOf("Firefox/3") > -1) {
                    var picData = thisObj.files.item(0).getAsDataURL();
                    tmpImage.src = picData;
                } else {
                    tmpImage.src = "file://" + thisObj.value;
                }
            }
        }

    </script>
</head>
<body>
    <input id="fileData" name="fileData" type="file" onchange="fileUploadPreview(this, 'preView')" />
    <div id="preView" class="preView" title="이미지미리보기"></div>
</body>
</html>


출처 : http://junyong.pe.kr/98
2009/11/04 14:29 2009/11/04 14:29
TAG

IXMLDOMNode Interface

ASP 2009/11/04 13:11

IXMLDOMNode Interface

Extends the core Node interface with support for data types, namespaces, DTDs, and schemas.

This interface inherits from IDispatch.

Methods

appendChild Appends newChild as the last child of this node.
attributes Contains the list of attributes for this node.
* Returns the base name for the name qualified with the namespace.
childNodes Contains a node list containing the children (for nodes that can have children).
cloneNode Creates a new node that is an exact clone of this node.
dataType* Specifies the data type for this node.
definition* Returns the definition of the node in the DTD or schema.
firstChild Contains the first child of this node.
hasChildNodes Returns True if this node has children.
insertBefore Inserts a child node to the left of the specified node or at the end of the list.
lastChild Returns the last child node.
namespaceURI* Returns the URI for the namespace.
nextSibling Contains the next sibling of this node in the parent's child list.
nodeName Contains the qualified name of the element, attribute, or entity reference, or a fixed string for other node types.
nodeType Specifies the DOM node type, which determines valid values and whether the node can have child nodes.
nodeTypeString* Returns the node type in string form.
nodeTypedValue* Contains this node's value, expressed in its defined data type.
nodeValue Contains the text associated with the node; depends on the node type.
ownerDocument Returns the root of the document that contains this node.
parentNode Contains the parent node (for nodes that can have parents).
parsed* Indicates whether this node and all descendants have been parsed and instantiated.
prefix* Returns the namespace prefix.
previousSibling Contains the left sibling of this node.
removeChild Removes the specified child node from the list of children and returns it.
replaceChild Replaces the specified old child node with the supplied new child node in the set of children of this node, and returns the old child node.
selectNodes* Applies the specified pattern to this node's context and returns the list of matching nodes.
selectSingleNode* Applies the specified pattern to this node's context and returns the first matching node.
specified* Indicates whether the node (usually an attribute) is explicitly specified or derived from a default value in the DTD or schema.
text* Contains the text content of the node and its subtrees.
transformNode* Processes this node and its children using the supplied XSL style sheet and returns the resulting transformation in a string.
transformNodeToObject* Processes this node and its children using the supplied XSL style sheet and returns the resulting transformation in the supplied object.
xml* Contains the XML representation of the node and all its descendants.

* denotes an extension to the W3C DOM.

Requirements

Implementation: Msxml.dll

Header and IDL files: Msxml.h, Xmldom.idl

2009/11/04 13:11 2009/11/04 13:11

IXMLDOMNodeList Interface

ASP 2009/11/04 13:10

IXMLDOMNodeList Interface

Supports iteration through the live collection, in addition to indexed access.

This interface inherits from IDispatch.

Methods

item Allows random access to individual nodes within the collection.
length Indicates the number of items in the collection.
nextNode Returns the next node in the collection.
reset Resets the iterator.

Remarks

A NodeList collection is live; that is, the addition and removal of nodes, and changes within nodes, are immediately reflected in the collection. This means that two successive requests for items using the same index can return two different items, depending on changes to the collection. This also means that changes to the node objects are immediately available in the nodes obtained from the list. The collection can also be accessed using the "for...next" construct.

Requirements

Implementation: Msxml.dll

Header and IDL files: Msxml.h, Xmldom.idl

2009/11/04 13:10 2009/11/04 13:10

사업장이 "사실 상 도산"된 경우 사업주를 대신하여 노동부에처 "체당금"을 받을 수 있는 제도가 있습니다.



절차는 다음과 같습니다


1. 근로자들이 연대하여 관할 노동청에 "사실상도산인정신청서"와 사업주를 상대로 "고소장"을 제출하여야 합니다


2. 위 신청서 및 고소장의 담당  근로감독관은 고소인(신청인) 및 사업주 등을 조사하여 사업장이 사실상 도산상태에 있는지 여부와 근로자들에 대한 체불임금. 퇴직금이 얼마인지 판단합니다


---> 이때 상당한 법률 서류 등이 필요하여 대개의 경우 "공인노무사"가 사건을 수임하며, 공인노무사가 근로자들을 대리하여 "사실상도산인정신청서"를 제출합니다.  따라서 일단 가까운 공인노무사 사무실에 전화 또는 방문하여 상담을 받아 보셔야 할 듯합니다.


--> 질문자님께서 다닌 회사가 정식회사가 아니라 사업주의 협조는 필수적일 것으로 판단되므로 사모님을 잘 설득하여 협조토록 하게 하십시오. 물론 사업주 입장에서도 위 제도를 활용하면 근로기준법 위반(임금체불)에 대한 형사책임에서는 벗어나게 되므로 협조적으로 나올 것입니다



3. 근로감독관이 관련 서류 검토 및 관계인 조사를 마치고 사업장이 사실상 도산상태임을 확인하여 근로복지공단에 통보를 합니다. (대개 2개월 가량 걸립니다)


4. 근로감독관으로부터 통보를 받은 근로복지공단은 수주일 내에 근로자의 계좌로 임금을 지급해 줍니다.


---> 참고로, 체불된 모든 금품을 받을 수 있는 것은 아니며 "3개월분의 임금 및 3년간의 퇴직금"으로 제한되며 그 금액도 연령에 따라 한도가 있습니다. 자세한 것은 노동부민원실 이나 공인노무사 사무실 등으로 연락하여 문의하세요


5. 근로자가 위와 같이 임금을 수령한 경우 대개 근로자들이 사업주에 대한 "고소장"을 취소합니다. 따라서. 사업주는 임금체불에 대한 "형사 책임"에서는 벗어 나게 되므로 대개의 경우 위 도산사실인정신청에 대해 협조적으로 나옵니다.


--> 물론, 민사적인 책임은 남아 있습니다. 근로자를 대신하여 임금을 지급한 근로복지공단에서 사업주를 상대로 구상권을 행사하게 됩니다.




현재 사업주가 전혀 재산이 없고 사업장도 조만간 도산할 것으로 생각되니 위 방법을 적극 활용하시길 권합니다.


그럼 좋은 결과 있으시길...^^



p.s.    참고로 회사의 재산이 남아 있다면 위 체당금 신청과는 별개로 회사 재산을 압류하여 처분한 후 일정 금품을 수령할 수 있습니다. 물론, 법원판결도 없이 근로자 맘대로 회사 물건을 가져가는 것은 "절도"에 해당하므로 이러한 행동은 금물이구요..(사업주 동의 있다면 가능..물론 압류가 설정되지 않은 물건)


근로자들이 "3개월분 임금 및 3년간의 퇴직금"은 어떠한 채권(은행의 저당권, 다른 기업의 미수채권 등)보다도 우선하므로 일단 법원에 가압류 신청하시고, 본안 판결을 받아 가압류를 본압류로 변경하여 강제 처분하여 임금을 지급받으실 수가 있습니다.


한편, 대개의 경우 근로자가 독자적으로 민사소송을 하시기는 힘든 것이므로, 우선 노동부에 "고소장"을 제출하시고, 노동부로부터 "고소사실확인원"을 발급받은 후에 이를 가지고 "대한법률구조공단"에 가서 민사소송을 대행해 달라고 요청하시면 "대한법률구조공단"에서 무료로 민사소송(가압류신청 등)을 대행줄 것입니다. (노동부가 소송 비용을 지원해 줌)

출처 : 지식인 펌

2009/10/23 02:34 2009/10/23 02:34
 
cd-rom 꺼내기/닫기를 반복하여 아가재우기
ㅎㅎ

기발하다.
2009/10/15 13:18 2009/10/15 13:18

me2day, 트위터와 비슷한 마이크로 블로그(클럽, 카페)

카카오닷컴 http://www.kakao.com 을 소개한다.

간단한 댓글형태로 글 작성시 화면이동없이 리얼타임으로 글이 갱신되고

사진, 동영상등을 편리하게 공유할 수 있다.

사진은 네이버검색과 제휴를 통해 검색되는것 같고 동영상은 Youtube와 함께한다.

본인의 pc에서 직접 업로드도 가능하고

카카오라는 단위 (쉽게 채팅방)를 생성한 자가 초대를 통해서만

해당 카카오에 가입할 수 있고 카카오 생성자는 해당 카카오에서

생성자만 초대가 가능하게 할것인지 모든 멤버가 초대가 가능하게 할것인지 선택해 줄 수 있다.

카카오에서 제공하는 서비스는 톡톡, 동영상, 일정, 포토, 스토리, 연락처, 파일방, 뮤직

정도이다.

2009/10/09 09:43 2009/10/09 09:43