윈도우에서 클라우드 서비스를 쉽게 선택할 수 있게, 정리한 내용입니다. 자세한 서비스들(모바일 지원등)은 정리를 하지 않고, 기본적인 내용입니다. 아래의 용량은 유저의 타입과 추천과 같은 Activity 따라서, 무료이지만 용량의 차이가 있을 있습니다.

 

Google Drive(http://drive.google.com/), 5G

Box.net(http://www.box.net/), 5G

Drobox(http://www.dropbox.com/), 2G

SkyDrive(http://www.skydrive.com/), 7G

Ubuntu One(https://one.ubuntu.com/), 5G

Amazon Cloud Drive(http://www.amazon.com/clouddrive/), 5G

SugarSync(http://www.sugarsync.com/), 5G

Insync(https://www.insynchq.com/), 5G

Daum Cloud(http://cloud.daum.net/), 50G

NDrive(http://ndrive.naver.com/), 30G

Cubby(http://www.cubby.com/), 5G

Zoolz(http://www.zoolz.com/), 4G

TeamDrive(http://www.teamdrive.com/), 2G


개인적으로 무료로 많은 용량을 사용하고 싶으시면, Daum Cloud, NDrive나 Insync로 Gmail의 멀티 계정을 이용하는 것도 방법인 것 같습니다. ^^

저작자 표시

HSQLDB을 파일디비로 사용하는 경우, 디폴트로 락을 잡고 사용을 합니다. 

그래서, 다른 프로세스에서 HSQLDB에 접근해서 데이터를 읽어오려고 시도를 하게되면, 에러가 나게 됩니다. 


HSQLDB의 락을 해제하는 간단한 방법으로 Connection String에 hsqldb.lock_file=false 옵션을 추가하면 됩니다. 


예) "jdbc:hsqldb:file:db_name;ifxeists=true;hsqldb.lock_file=false" 


저작자 표시
Tag // HSQLDB

Java Magazine 11/12 2011

from Etc 2011/11/16 04:36
2011년 11월과 12월 자바 매거진입니다..


저작자 표시

ansi color code and text format

from Etc 2011/01/20 13:28
자바 console에서 텍스트 포맷과 컬러에 대한 값을 주기 위한 내용입니다. 
자세한 내용은 http://www.bluesock.org/~willg/dev/ansi.html 에 있습니다.. 

Listing of ANSI escape sequences

ESC code sequenceFunction
cursor controls
ESC[#;#H or ESC[#;#f moves cursor to line #, column #
ESC[#A moves cursor up # lines
ESC[#B moves cursor down # lines
ESC[#C moves cursor right # spaces
ESC[#D moves cursor left # spaces
ESC[#;#R reports current cursor line & column
ESC[s save cursor position for recall later
ESC[u Return to saved cursor position
erase functions
ESC[2J clear screen and home cursor
ESC[K clear to end of line
color and text formatting
ESC[#(;#)m there can be multiple text formatting sequence numbers separated by a ; and ending with an m where the # is of the following values:
attributes
0 normal display
1 bold
4 underline (mono only)
5 blink on
7 reverse video on
8 nondisplayed (invisible)
foreground colors
30 black
31 red
32 green
33 yellow
34 blue
35 magenta
36 cyan
37 white
background colors
40 black
41 red
42 green
43 yellow
44 blue
45 magenta
46 cyan
47 white
screen modes
ESC[=#;7h or
ESC[=h or
ESC[=0h or
ESC[?7h
put screen in indicated mode where # is:
0 40 x 25 black & white
1 40 x 25 color
2 80 x 25 b&w
3 80 x 25 color
4 320 x 200 color graphics
5 320 x 200 b & w graphics
6 640 x 200 b & w graphics
7 to wrap at end of line
ESC[=#;7l or
ESC[=l or
ESC[=0l or
ESC[?7l
resets mode # set with above command


ANSI codes

Black            \e[0;30m
Blue             \e[0;34m
Green            \e[0;32m
Cyan             \e[0;36m
Red              \e[0;31m
Purple           \e[0;35m
Brown            \e[0;33m
Gray             \e[0;37m
Dark Gray        \e[1;30m
Light Blue       \e[1;34m
Light Green      \e[1;32m
Light Cyan       \e[1;36m
Light Red        \e[1;31m
Light Purple     \e[1;35m
Yellow           \e[1;33m
White            \e[1;37m


저작자 표시