본문 바로가기

Skill up

(12)
딕테이션(Dictation) 프로그램 딕테이션 프로그램을 찾다가, 동영상의 자막이나 음원에 가사를 작성하는 등의 작업을 위해 사용하는 프로그램을 찾았다. 딕테이션 프로그램으로 써도 괜찮을것 같아서... 프로그램은 http://www.nch.com.au/scribe/index.html 사이트에 가서 download 받을 수 있다. 직접 다운로드를 하려면, http://www.nch.com.au/scribe/essetup.exe 혹시나하여, 프로그램은 프리웨어이다. 아직 제대로 사용해보지는 않았지만, 원래 풋라이터 장비와 같이 사용하는 모양이다. 하지만, 그런거 있으면 편리하겠지만, 없어도 단축키로 조정해가며 할 수 있다. 잘만 활용하면, 영어공부할때 좋은 툴이 되어줄것 같다.
지각동사(Verb of Perception) [연습문제] 맞는 답을 선택하시오. (1) I saw a gentleman (to enter/enter) the conference room. (2) You should listen to the teacher (to explain/explain) the theory. (3) I noticed the woman (tended/tend) to be partial and arrogant. (4) She felt the children (insult/to insult) her much. (5) They looked at the lion (taking/to take) care of its baby. (6) The lady observed the young (to help/help) the poor without ..
JAVA Thread 동기화 방법 Java에서 Thread를 동기화 하는 방법. synchronized를 사용하면 된다. 아래 코드를 참조. class A extends Thread { private int value = 0; public synchronized void setValue(int var) { value = var; } public void run() { //synchronized로 block된 부분은 동기화처리가 된다. synchronized (this) { //처리할 코드 } } } public class Test { public station void main(String[] ar) { A _thread = new A(); _thread.start();//run thread } }
JAVA 쓰레드 생성 방법 JAVA나 C++이나 기본 문법구문이나 구조는 크게 다르지 않다고 본다. C++을 계속 만져왔기때문에 JAVA의 기본 구문이나 기본적인 구조를 이해하는데는 전혀 문제가 없었다. 오히려 하나를 알고 있으니 다른 하나가 쉽게 다가 오는 것처럼... 그래서, JAVA를 공부하는데, 기본적인 내용에 대해서는 단 한두시간만에 대충대충 훑어보고 넘어갔다. 이후에 공부할 내용조차도 기본적인 개념은 몇가지를 빼놓고는 거의 동일한것 같다. 프로그램을 짤때, 종종 쓰게 되는것이 Thread인데 JAVA에서 Thread를 어떻게 쓰는지 봤다. JAVA에서 독립 쓰레드를 쓰기 위해서는 이렇게 쓰면 된다. class A extends Thread { public void run() { //쓰레드로 실행할 코드 } } publi..