Oculus VR DK2 설치 및 실행방법

컴퓨터/Oculus VR 2014. 10. 1. 13:05

아래 자료는 Oculus VR 카페(http://cafe.naver.com/)

오쿨럭쿨럭(dngc****)님의 자료(http://cafe.naver.com/oculusvr/7400)를

제가 보기 쉽게끔 정리 한 자료입니다.


1. DK2 하드웨어 설치.

 동봉된 Quick Start Guide에 잘 적혀있어서 큰 어려움 없이 설치 가능.

 (사실 그냥 맞는 곳에 꽂으면 설치 끝)

 - 주의사항! : USB 2.0에 연결요망. 3.0에서는 자주 끊어진다는 보고가 있음.


2. Oculus Runtime for Windows(https://developer.oculusvr.com/?action=dl&status=1) 다운로드 및 설치

 회원가입은 각자 간단하게 하시면 됩니다. (그냥 쓸꺼 쓰고 이메일 체크만 해주시면 완료)

이렇게 약관 동의 하고나면

Oculus Runtime for Windows를 다운받습니다.

(보통 SDK를 설치하면 런타임은 설치 안해도 되는데... 오큘러스도 같겠죠?)










우분투에서 이클립스 C++ 개발환경 만들기

컴퓨터/Linux 2014. 4. 16. 12:58

간단하게 요약만 표시함.


$ sudo apt-get install update

# 전체 소프트웨어 업데이트


$ sudo apt-get install build-essential

# 컴파일 관련 설치


$ sudo apt-get install sun-java8-jdk

# 최신버전 java 설치

# http://www.oracle.com/technetwork/java/javase/downloads/index.html

# 위사이트에서 최신버전 확인하여 다운받기


$ sudo apt-get install eclipse

# 이클립스 설치


$ sudo apt-get install eclipse-cdt

# 이클립스 - CDT 설치

# CDT가 C/C++를 컴파일 가능하게 해줌



Power Mockup

컴퓨터/Tips! 2014. 3. 31. 11:52

프로그램 설계 시 MS 파워포인트에서 화면디자인을 쉽게 할 수 있게 해 주는 프로그램!


http://www.powermockup.com/




설치 후 ppt실행!




Nutch

컴퓨터/Nutch 2014. 3. 17. 13:22

출처1(원문) : https://today.java.net/pub/a/today/2006/01/10/introduction-to-nutch-1.html

출처2(해석) : http://www.joinc.co.kr/modules/moniwiki/wiki.php/Site/Search/Document/nutch/Crawling

다음 글은 출처1과 출처2, 그리고 구글번역을 도움으로 하여 작성되었습니다. 작성자의 영어실력이 초딩수준(요즘은 초등학생도 잘한다던데...)인 관계로 구글번역과 앞뒤 개연성만 가지고 작업하였으니 오역이 많을 수 있습니다. 더 좋은 번역이 가능한 부분(혹은 오역)이 있으면 댓글을 달아 주시면 수정하겠습니다.


Nutch is an open source Java implementation of a search engine. It provides all of the tools you need to run your own search engine. But Why would anyone want to run their own search engine? After all, there's always Google. There are at least three reasons.

Nutch는 자바로 구현된 오픈소스 검색엔진입니다. 이것(Nutch)은 당신이 자신만의 검색엔진을 만드는데 필요한 모든 도구(Tools)를 제공합니다. 구글이 있는데 왜 자신만의 검색엔진이 필요할까? 여기엔 세 가지 이유가 있습다.


1. Transparency.

Nutch is open source, so anyone can see how the ranking algorithms work. With commercial search engines, the precise details of the algorithms are secret so you can never know why a particular search result is ranked as it is. Furthermore, some search engines allow rankings to be based on payments, rather than on the relevance of the site's contents. Nutch is a good fit for academic and government organizations, where the perception of fairness of rankings may be more important. 

1. 투명성

Nutch는 오픈소스이기 때문에, 이것이 어떻게 순위 알고리즘을 작업하는지 볼 수 있습니다. 상용 검색엔진의 경우 랭킹엔진과 관련된 세부 사항은 감추어져 있습니다. 또한, 일부 검색 엔진에서는 순위가 내용의 관련성 보다는 해당 사이트의 과금(혹은 지불)을 기반으로 하고 있습니다. Nutch는 랭킹에 대한 공정성이 중요한 학계나 정부 기관에 적합할 것입니다.


2. Understanding.

 We don't have the source code to Google, so Nutch is probably the best we have. It's interesting to see how a large search engine works. Nutch has been built using ideas from academia and industry: for instance, core parts of Nutch arecurrently being re-implemented to use the "http://labs.google.com/papers/mapreduce.html">Map Reducedistributed processing model, which emerged from Google Labs last year. And Nutch is attractive for researchers who want to try out new search algorithms, since it is so easy to extend.

2. 이해의 편리성

 우리에게는 구글의 소스코드가 없습니다. 따라서 거대한 검색 엔진의 작동 방식을 이해하는데 Nutch가 최고입니다. Nutch는 검색엔진과 관련된 다양한 이론들은 포함하고 있습니다. 예를들어, Nutch의 핵심 중 하나인 Map Reduce는 지난해, 구글 연구소에서 등장한 distributed processing model(분산 처리 모델)이 사용되었습니다. 이 외에도 Nutch는 최근에 연구되어지고 있는 검색 알고리즘을 적용하고 테스트하기 위한 시도를 하고 있으니, 관련된 이론적인 지식을 알고 있다면, 쉽게 이해할 수 있다.


3. Extensibility.

 Don't like the way other search engines display their results? Write your own search engine--using Nutch! Nutch is very flexible: it can be customized and incorporated into your application. For developers, Nutch is a great platform for adding search to heterogeneous collections of information, and being able to customize the search interface, or extend the out-of-the-box functionality through the plugin mechanism. For example, you can integrate it into your site to add a search capability.

3. 확장성

 다른 검색 엔진들의 결과 표시 방식이 좋지 않다면? Nutch를 이용하여 자신만의 검색 엔진을 만들면 된다. Nutch는 아주 유연합니다. Nutch는 사용자가 커스터마이징 할 수 있고, 응용프로그램에 통합 할 수도 있습니다. 개발자에게 너치 정보 컬렉션에 추가하거나, 검색 인터페이스를 변경하거나, 또는 플러그인 매커니즘을 활용할 수 있는 훌륭한 플랫폼입니다. 예를들어 

 

AHK(Auto Hot Key) 공식홈페이지 및 다운로드 링크

컴퓨터/Auto Hot Key 2014. 3. 17. 12:21

공식 홈페이지 : http://www.autohotkey.com/

다운로드 링크 : http://ahkscript.org/download/

한국 AHK 포럼 : http://www.autohotkey.co.kr/


오토핫키v1.1.14.03 32 bit - 2014. 02. 14.

AutoHotkey111403.zip

오토핫키v1.1.14.03 64 bit - 2014. 02. 14.

AutoHotkey111403_x64.zip


- AHK 공식 홈페이지 마크


[Chrome]크롬의 GPU가속을 이용하여 속도를 향상 시키자

컴퓨터/Tips! 2013. 10. 10. 20:22

구글의 크롬 브라우저를 사용할 때 옵션을 주어 사용하면 좀 더 편하게 사용할 수 있습니다.

옵션을 주는 방법은 크롬 브라우저의 바로 가기속성을 편집하면 됩니다.

1. 크롬 브라우저를 우 클릭하여, 속성 페이지를 연다.

image

2. 여기에서 대상의 뒷 부분에 옵션을 추가 해 준다.

SNAGHTML2b57d86

보통대상에는 "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"라고 적혀있습니다.

이것을 크롬의 경로라고 합시다.

이제 경로 이후 한 칸을 띄운 후 다음과 같은 옵션을 적어봅시다. (GPU 가속 옵션 입니다.)

--enable-accelerated-2d-canvas

이렇게 옵션을 주면 대상에는 총 다음과 같은 글이 써져야 합니다.

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --enable-accelerated-2d-canvas

'컴퓨터 > Tips!' 카테고리의 다른 글

Power Mockup  (0) 2014.03.31