본문 바로가기

정보기술/일반399

Windwos Live Messenger 에서 Growl Notification 보내기 Requirements: 1. Messenger Plus http://www.msgplus.net 2. growlnotify http://www.growlforwindows.com/gfw/help/growlnotify.aspx 참고: 1. https://groups.google.com/forum/?fromgroups#!topic/growl-for-windows/MRa2hTTpKto 2. Messenger Plus Script Reference Docs http://mpscripts.net/docs/ 설정방법: 1. Messenger Plus 설치 2. Messenger Plus 의 Preference 창에서 Plugins - Plus! Plugins 에 새 플러그인 추가 3. 아래와 같이 스크립트를 작성.. 2012. 3. 21.
유용한 달력 ics (ICAL) 모음 Evilone's 음력 달력 - 1일, 15일 표기 -> 1일, 5일, 10일, 15일, 20일, 25일 표기로 변경 - 음력 x월 x일 표기 -> (음)x/x 표기로 변경 - 24절기의 경우 '24절기' 표기 - 세시의 경우 '세시' 표기 - 명절의 경우 '명절' 표기 http://www.google.com/calendar/ical/khi0jajc5vot0u18umds83qf80%40group.calendar.google.com/public/basic.ics 출저: Evilone's Blog 음력달력 (old) - 1일, 15일 표기 http://www.google.com/calendar/ical/i0q6etp3unuq4anaodvruqrufk%40group.calendar.google.com/publ.. 2011. 12. 6.
Bookmarklets 설치방법: 링크를 bookmark toolbar 에 끌어다 놓는다. Reload via MIT Library Proxy: Reload via MIT http://libraries.mit.edu/about/faqs/remote-proxystring-bookmarklet.html Reload via NUS Library Proxy: Reload via NUS http://lib.nus.edu.sg/lion/d/proxybkmrklet.html QR-code on the fly: QR on the fly http://marklets.com/QR+on+the+fly.aspx Download YouTube Video: PwnYouTube http://marklets.com/PwnYouTube.aspx 2011. 8. 26.
텍스트 파일 한글 인코딩 변환 (euc-kr 에서 utf-8 로 변환) for Mac or UNIX http://kldp.org/node/63419 http://pc-to-mac-changer.blogspot.com/2010/02/shell-script-text-unicode.html Shell script 이용 한개의 파일에 대해서 변환 #/bin/bash iconv -c -f euc-kr -t utf-8 $1 > $1.tmp mv $1.tmp $1 폴더 내의 smi, srt, txt 파일에 대해서 모두 변환 find "$1" -name "*.smi" -o -name "*.srt" -o -name "*.txt" | while read filename do tempName=${filename}~temp~.txt mv "$filename" "$tempName" iconv -c -f euc-kr -t ut.. 2011. 8. 24.