전에... 예전에... 는 xserver 리스타트는 ctrl+shift+backspace 였다.

지금은? alt+k+printScrn 이다. 


right alt라던데.. 뭐 상관없는것 같기도 하고; 

from http://blog.csdn.net/liuyanzhi08/article/details/7747117

InputHelper

Just a little plugin to open new gtk.window having textinput field which will support Input Method like Ibus, then insert it back to Sublime Text 2 when you complete input text.

MANUAL INSTALL:

cd ~/.config/sublime-text-2/Packages

git clone https://github.com/xgenvn/InputHelper.git

USING:

  • Make sure your iBus/scim is working normally on other gtk application
  • Default key combination: Ctrl+Shift+Z > Input text in the text field > Press Enter or Ctrl+Enter to place text > Press Arrow Key or End to place cursor to the last position. Ctrl+Enter to reach new line after input text.

This plugin is ONLY working on Linux! On Windows or Mac you shouldn't have above issues to use this plugin.



1. new project

2. import project from external model

3. eclipse 

4. eclipse 프로젝트 디렉토리 선택

5. 프로젝트 선택

6. import 되고난후 모듈을 골라서 F4를 누르고 JDK 를 제대로 되게 선택해준다.

7. 프로젝트 부분에 pom.xml 파일이 보일것이다. 마우스 오른쪽 누르고 Add as Maven Project 를 선택한다.


그러면 메이븐 으로 부터 jar를 가져오면서 기본설정 끝


from : http://mistonline.in/wp/detect-browser-close-event-and-alert-some-messages-using-javascript/


window.onbeforeunload = function (my_event) {
    var message = "Your logout page has been opened in a new window, Check that out. Make sure that you have enabled pop up in your browser to see that?";
    if (typeof my_event == 'undefined') {
        my_event = window.event;
    }
    if (my_event) {
        newWindow = window.open('test.html', '', 'width=450,height=350')
        newWindow.document.write("<p>This is 'newWindow'</p>")
        newWindow.focus();
        my_event.returnValue = message;
    }
    return message;
}

4대브라우저에서 먹히는 닫기 이벤트에 대한 이벤트 처리. 단 페이지이동등에도 역시 반응하므로 해당 부분에 대한 필터링이 필요하다.



3. run "update-manager -d" or "do-release-upgrade -m desktop -d


결국 난... 우분투 시디를 구해서 업그레이드 했다. 그냥 업그레이드 안되는 경우도 있으니 참고 바란다.

SELECT * 

FROM

(

SELECT '10' 원본컬럼값,'100' 컬럼2  FROM dual UNION ALL 

SELECT '20' 원본컬럼값,null 컬럼2  FROM dual UNION ALL

SELECT '30' 원본컬럼값,'300' 컬럼2  FROM dual

);

결과

원본컬럼값    컬럼2

--------------------

10         100

20         (null)

30         300


흐음.. 이런식으로 테스트용도의 테이블 형태 구조 생성 가능


from SQL의 컨셉 책...


toggle 은 한가지가 아니다; 

하나는 Effects>Basics  , 다른 하나는 Events > Mouse Events 이다.

Effects 쪽은 대상 엘리먼츠를 숨기거나 보여주는 역할이고

  • .toggle( [duration] [, callback] )

    durationA string or number determining how long the animation will run.

    callbackA function to call once the animation is complete.

  • version added: 1.4.3.toggle( [duration] [, easing] [, callback] )

    durationA string or number determining how long the animation will run.

    easingA string indicating which easing function to use for the transition.

    callbackA function to call once the animation is complete.

  • version added: 1.3.toggle( showOrHide )

    showOrHideA Boolean indicating whether to show or hide the elements.


Events 쪽은 두개 이상의 행들러를 대상에 바인드하는 역할을한다. ( 다른유형의 클릭에 실행되도록...)
    즉.. 이건 홀수,짝수의 동작에 반응하는거였다; 뭐 마지막 옵션에 해당하는 함수를 하나 더 넣으면 매번도 되는듯 하다.


  • version added: 1.0
    .toggle( handler(eventObject), handler(eventObject) [, handler(eventObject)] )

    handler(eventObject)A function to execute every even time the element is clicked.

    handler(eventObject)A function to execute every odd time the element is clicked.

    handler(eventObject)Additional handlers to cycle through after clicks.


'IT > jquery' 카테고리의 다른 글

$ 초기화...  (0) 2012.01.04

jQuery.each( collection, callback(indexInArray, valueOfElement) )

collectionThe object or array to iterate over.

callback(indexInArray, valueOfElement)The function that will be executed on every object.


each 를 쓸때 callback function 에  첫번째 파라미터는 index 값이다. i++ .. 과 같다고 봐도 된다.

---------------------------------

from https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/forEach

Syntax

array.forEach(callback[, thisArg])

Parameters

callback
Function to execute for each element.
thisArg
Object to use as this when executing callback.


<script>

var arr = ['a','b','c','d','e'];

// item:a/index:0

arr.forEach(function (item,index) {
    alert('item:'+item+'/index:'+index);

});

</script>


+ Recent posts