OLD개발이야기

    안드로이드 푸시 알람 ( 서버 x)

    http://blog.naver.com/PostView.nhn?blogId=tkddlf4209&logNo=220722386993&categoryNo=0&parentCategoryNo=0&viewDate=&currentPage=1&postListTopCurrentPage=1&from=postView

    Android Studio AR

    유니티 엔진 기반으로 Vuforia 증강현실을 구현해보았기 때문에당연히 안드로이드 스튜디오도 뷰포리아로 하려고 했는데튜토리얼도 그렇고 다들 유니티 엔진만 쓴다.. 확실히 안드로이드 개발하고 jar뽑아서 유니티 엔진에서 결합 할 수 있지만,새롭게 안드로이드 스튜디오로 개발하고 싶은 목표가 있다! http://blog.mirr.info/wordpress/comparison-and-selection-of-ar-sdk/ 여길 보고 일단은 원랜 AR Tool Kit 쓰려 햇는데Kudan을 사용해보려고한당!

    자구 공부

    깊이 탐색 http://blog.eairship.kr/268

    파이프라인이란

    pipeline and pipelining ; 파이프라인 컴퓨터에서, 파이프라인이란 프로세서로 가는 명령어들의 움직임, 또는 명령어를 수행하기 위해 프로세서에 의해 취해진 산술적인 단계가 연속적이고, 다소 겹치는 것을 말한다. 파이프라인이 없다면 컴퓨터의 프로세서는 메모리에서 첫 번째 명령어를 가지고 와서, 그것이 요구하는 연산을 수행하고, 그리고 나서 다음번 명령어를 메모리로부터 가져오는 식으로 동작한다. 명령어를 가져오는 동안에, 프로세서의 산술연산부분은 다음 명령어가 도착되기를 기다리며 쉬어야만 한다. 파이프라인을 쓰면, 컴퓨터 구조는 프로세서가 산술연산을 수행하는 동안에 다음번 명령어를 가져올 수 있으며, 그것을 다음 명령어 연산이 수행될 수 있을 때까지 프로세서 근처의 버퍼에 가져다놓는다. 명령..

    combinebykey 해석

    The groupByKey call makes no attempt at merging/combining values, so it’s an expensive operation.Thus the combineByKey call is just such an optimization. When using combineByKey values are merged into one value at each partition then each partition value is merged into a single value. It’s worth noting that the type of the combined value does not have to match the type of the original value and ..

    qtablewidget / text color/ bg color

    //model 읽는 작업이고 QString temp=model->index(1,1).data().toString(); QStandardItem * colorItem = new QStandardItem(temp); // colorItem->setData(Qt::AlignCenter,Qt::TextAlignmentRole); colorItem->setData(QVariant(QBrush(Qt::red)), Qt::BackgroundRole); model->setItem(1,1,colorItem); // 0번째 컬럼을 클리어하고 체크박스를 넣어야 함 ----- QStandardItem * colorItem = new QStandardItem(" put the text" );----- QString temp=m..

    부모자식 선택자 공부

    ul 하고 띄고 li하면 ul밑에 있는 li를 의미 ul 하고 띄고 li하면 ul밑에 있는 li를 의미 바로 밑 직계만! ul{} ol{} => ul,ol{background-color: powderblue;}따로따로 x, 합치는 것 가능

    css id

    태그 선택자 위와 같은 경우는 모든 li 에 대해서 효과 지정 - > li는 태그 선택자 CSS 아이디 선택자 id가 select인 애만 -> id 선택자 // 한번만 사용 가능 한줄일때는 ; 안해도 됨 test2HTMLTEST>/li> 클래스 선택자 여러개할때는 클래스로 그룹핑. 그리고 . 을 통해서 하면 됨.꼭 같은거일 필요 없음 클래스 선택자 사용하게 하면, 서로 다른 태그들도 그룹핑해줄 수 있음

    css와 html?

    css와 html?

    HTML CSS html에서는 정보, 텍스트 만 다루고 css로 () 컬러 등 디자인을 다루게 구분한것. 결과

    python - csv - 한글 못 읽는/ 깨지는 문제

    pip install chardet import chardet test= list[12][1] print (chardet.detect (test)) {'confidence': 0.99, 'language': 'Korean', 'encoding': 'EUC-KR'}결과값 print list[12][1].decode('euc-kr').encode('utf-8') 성공~

    자바스크립트 공부

    console.log() // 출력할 수 있음 변수선언var num = 10;var text="test";자유롭게 var와 함께 선언 "test".length // 길이를 얻을 수 있음 4 prompt(" type any text") // 메세지창이 ㅈ뜸 confirm(" type") // 이것도 팝업창이 뜸 "test".substring(0,2) // 글자의 0~ 2 까지 출력

    QT: cell클릭 말고, 하나의 셀을 클릭했을 때 전체 row 받고 싶을 때

    MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); ShowTable(); ui->tableView->setSelectionBehavior(QAbstractItemView::SelectRows); } ui->tableView->setSelectionBehavior(QAbstractItemView::SelectRows);

    [translation]QT: why delete() delete everything in QlineText?

    http://www.qtcentre.org/threads/45795-Deleting-characters-in-QLineEdit-widget void BackspaceKeyNotification(){if(qlineedit1->hasFocus()){qlineedit1->backspace();}else if(qlineedit2->hasFocus()){qlineedit2->backspace();}} 이런식으로 작성했는데 왜 backspace() 함수를 쓰면 다 지워지나요 ? A: this is most probably because on a change you select all text on the line edit. Thus the whole is being deleted when you call QLine..

    python type check

    for example, test='aaa'type(test)>>>str

    Hierachy Clustering

    Hierachy Clustering 의 종류 2가지Divisive Clustering (top -down )Agglomerative Clustering(bottom up) 1. Divisive Clustering 분할적 클러스터링 하향식이다. 다른 블로그의 글을 참고해 보면 ( http://www.openwith.net/?p=619)같은 같은 군집 내의 모든 객체들에서 시작하므로 하향식 (top-down) 접근이라 불린다. 연속적인 반복으로 군집은 결국 각 객체가 하나의 군집이 되거나 종료의 조건이 될 때까지 더 작은 군집으로 분할된다. 2. Agglomerative Clustering 병합적 클러스터링각 객체가 각각의 그룹을 형성하는 것에서 시작하여 상향식 (bottom-up) 접근이라고도 불린다.

    install mysql - brew

    잘못된 블로그를 따라해서 Sudo 코드를 썼다가 시스템파일이 날라가서 맥북을 포맷했다 ... 다시는이런일이없도록 .. 포맷후 설치가 겨우되었다. 되는 링크를 저장해둔다. https://github.com/helloheesu/SecretlyGreatly/wiki/%EB%A7%A5%EC%97%90%EC%84%9C-mysql-%EC%84%A4%EC%B9%98-%ED%9B%84-%ED%99%98%EA%B2%BD%EC%84%A4%EC%A0%95%ED%95%98%EA%B8%B0 그다음에는 Toad를 설치했다.

    mysql 된다

    https://github.com/helloheesu/SecretlyGreatly/wiki/%EB%A7%A5%EC%97%90%EC%84%9C-mysql-%EC%84%A4%EC%B9%98-%ED%9B%84-%ED%99%98%EA%B2%BD%EC%84%A4%EC%A0%95%ED%95%98%EA%B8%B0