coComment – 재미있네…

coComment 전에 들어보고, 간단히 써보고,
음.. 괜찮네.. 했었는데.

가입된 사이트들 정리하다가 다시 이래저리 돌아보니깐.
blog commenting 말고도 웹사이트에 대한 commenting을 정리할 수가 있네.

“Blogger Web Comments” 하고 같이 사용하면 재미있을듯 하다.
블로그로 포스팅하기는 좀 그런… 그런 내용들을 정리하면 될듯하네.

- Performancing 에서 blog tag 추가할 수 있는 방법은 없을까? ㅎㅎ

Leave a Comment

아이피를 이용한 네트웍상의 컴퓨터 이름 찾기.

nbtstat -A 해당IP (예 : 192.168.1.2)

Leave a Comment

Writing Skill

  1. 관찰하고, 기록하라.
  2. 컨셉을 생각하라. 무엇을 쓰는가?
  3. 글을 읽는 대상을 고려하라. 경영자에게는 설득, 중간관리자에게는 설명을 위주로…
  4. 99%의 연구와 조사가 필요하다.
  5. 제목이 80%이상을 차지한다.
  6. 결론을 먼저 말하라.(두괄식) 핵심사안 -> 세부사안 -> 보충자료
  7. 짧고 굵게, 복잡한 내용은 도표 등 이미지로…
  8. 주어와 술어의 관계가 명확한 단문을 사용하라. 의미전달의 오류, 변질, 왜곡을 조심하라.
  9. Onepage Proposal
  10. 객관적인 관점으로 기술하라. 조직의 의사, 경영방침과 부합되는 관점으로 기술하라.

KTX 2006.8 에서 급하게 정리해온…

Leave a Comment

읽을려고 하는 책들

  • 윈윈 파트너쉽
  • TimePower 잠들어 있는 시간을 깨워라
  • 성공하는 사람들의 7가지 습관
  • 직장인의 6가지 독서 습관

Leave a Comment

Conditionally enter Debugger in Flex 2

While coding in Flex Builder 2 I found an interesting code hint for a enterDebugger():void
method. This seemed to be another undocumented goodie so I gave it a
try – and it really works. By using the enterDebugger() method in your
code you can invoke the Debugger without setting any breakpoints in
your code. Just place the method call where you want to enter the
Debugger and it will stop at that very line :)

Here’s a quick example:

var n:Number = Math.random();
if (n > 0.9)
{
enterDebugger();
}

This
allows you to write pretty nice dynamic debug code – of course you need
to have the Debug version of Flash Player 9 to get this working. I
haven’t tested yet what happens if the enterDebugger() gets called in
the Release version but I suspect it is just ignored silently.

Original post by Richinternet Blog and software by Elliott Back

Leave a Comment

덥다…

정말 덥네.
이런날 일하고 있을려니깐 거의 죽음이다 –;;;;

Leave a Comment

FLEX LifeCycle

Leave a Comment

datagrid에 대한 subTotals.

http://www.helpqlodhelp.com/blog/archives/000154.html

<?xml version=”1.0″ encoding=”utf-8″?>
<mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml” layout=”absolute”>
    <mx:Script>
        <![CDATA[
            import mx.collections.ArrayCollection;
            
            [Bindable]
            private var dataProvider : ArrayCollection = createData();
            
            private function createData() : ArrayCollection
            {
                var result : ArrayCollection = new ArrayCollection();
                for( var i : int = 0; i < 3; i++ )
                {
                    result.addItem( createSimpleRow());
                }
                result.addItem( createSubTotalRow( result ));
                return result;
            }
            
            private function createSimpleRow() : Object
            {
                var result : Object = new Object();
                result.A = randomInt( 10 );
                result.B = randomInt( 10 );
                result.C = randomInt( 10 );
                return result;
            }
            
            private function createSubTotalRow( data : ArrayCollection ) : Object
            {
                var result : Object = new Object();
                result.data = data;
                result.A = createSubTotalObject( data, “A” );
                result.B = createSubTotalObject( data, “B” );
                result.C = createSubTotalObject( data, “C” );
                return result;
            }
            
            private function createSubTotalObject( data : ArrayCollection, property : String ) : Object
            {
                var result : Object = new Object();
                result.toString = function() : String
                {
                    var sum : Number = 0;
                    var length : int = data.length – 1;
                    for( var i : int = 0; i < length; i++ )
                    {
                        var item : Object = data.getItemAt( i );
                        var value : Number = item[ property ];
                        if( ! isNaN( value ))
                        {
                            sum += value;
                        }
                    }
                    return sum.toString();
                }
                return result;
            }
            
            private function randomInt( max : int ) : int
            {
                return Math.floor( Math.random() * max );
            }
        ]]>
    </mx:Script>    
    <mx:DataGrid dataProvider=”{ dataProvider }” editable=”true”/>
</mx:Application>

Leave a Comment

dataGrid의 row 별 색상처리.

Leave a Comment

« Newer Posts