최종병기 활
2011-08-16 02:25:02

박해일의 재치 일품 ㅋ

등장인물 너무 국한되서 이품 ㅠ

재치만 있으면 위선

성실하기만 하면 굿

성실하고 재치가 있으면 베리 굿

지금은 무엇이 병자호란이고

그 시대의 배신일까?

구직난? 경제대란? 인간성 상실?

전쟁과 역사 속의 슬픔이 아니라 지금있는 문제를 직시할 필요가 있다.

미국도 아무래도 케케묵은 마리화나 합법화 보다 구직란이 고민해야할 문제라면..

흐음.

나에겐 아직은 차분함과 성실함?

덜 되었으니 더 채워야겠지. 재치는 그 다음에 하자. 아직 갈길이 멀다.

▼ more
java _file_write
2011-08-13 07:51:27

1:/** Simple Program to write a text file

2:*/

3:

4:import java.io.*;

5:

6:public class WriteText{

7: public static void main(String[] args){

8: try {

9: FileWriter outFile = new FileWriter(args[0]);

10: PrintWriter out = new PrintWriter(outFile);

11:

12: // Also could be written as follows on one line

13: // Printwriter out = new PrintWriter(new FileWriter(args[0]));

14:

15: // Write text to file

16: out.println("This is line 1");

17: out.println("This is line 2");

18: out.print("This is line3 part 1, ");

19: out.println("this is line 3 part 2");

20: out.close();

21: } catch (IOException e){

22: e.printStackTrace();

23: }

24: }

25:}

▼ more
worklist
2011-08-12 18:54:47

Paper

Make the problem clear

SA

Study about PCM and audio files

Examine the wav, raw file + Make document

Visualize Audio file

Work

upload all data

do work

▼ more
이번엔 제대로 껐겠지?? ㅎㄷㄷ
2011-08-12 17:08:34

ㅠㅠ

▼ more