맥북에 이것저것 깔았다 지우다 보니 finder의 다음으로 열기(Open with) 항목이 이런저런 이유로 복잡해졌다(중복된 어플, 지워진 어플)

인터넷을 검색해 보니 이게 제일 간단한 방법 같았다.

http://www.clien.net/cs2/bbs/board.php?bo_table=cm_mac&wr_id=575678

$ /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user


Posted by 빨강토끼
,

이 간단한 insert sort가 어제 커뮤니티 행사 이벤트때엔 생각이 잘 안나서 해맸다.

C 도 그렇고 기본적인 알고리즘은 항상 반복해서 봐둬야겠다.

#include <stdio.h>

int printArr(int* arr){  
    for (int k = 0; k < 6; ++k) {
        printf("%d",arr[k]);
    }
    printf("\n");
}
int main() {  
    int i=0 ;
    int j=0;
    int arrays[]  = {5,2,4,6,1,3};

    printf("hello : ");
    printArr(arrays);
    for( i = 1 ; i< 6 ; i++)
    {

        int offset = arrays[i];
        printf("offset : %d\n", offset);
        for(j = i-1; j >=0 ;j--)
        {
            printf("comp : %d , %d\n", arrays[j], offset);
            if ( arrays[j] > offset)
            {
                arrays[j+1] = arrays[j];

            }
            else{
                break;
            }

        }
        arrays[j+1] = offset;

        printArr(arrays);


    }

    for (int k = 0; k < 6; ++k) {
        printf("%d",arrays[k]);

    }
    return 0;
}


Posted by 빨강토끼
,

SpringBoot를 사용하는데 요청하는 기존 레거시 시스템이 한글 인코딩을 EUC-KR로 보내고 있다.

한글처리가 잘안되서 검색해보니 http://theeye.pe.kr/archives/2206 
라는 글을 발견하였다.

그런데도 잘 안되었다.

그런데 이것 저것 조금더 수정해보니 된다. ㅎ

주요한것은 
public Filter characterEncodingFilter() -> public CharacterEncodingFilter characterEncodingFilter(
로 바꾸었다.

참조 http://emflant.tistory.com/97

Posted by 빨강토끼
,