아이폰 위치 정보 테스트
아이폰 명동, 아이폰, 영플라자, 위치정보 View Comments
명동 롯데 영플라자 건너편에서 아이폰으로 테스트를 해봤습니다.


다시 한번 살짝 움직여서 시도해봤습니다.


아무튼 아이폰 위치 정보가지고 노는 것 참 재미있네요 :-)
아이폰 명동, 아이폰, 영플라자, 위치정보 View Comments
명동 롯데 영플라자 건너편에서 아이폰으로 테스트를 해봤습니다.




생활/맛집 곱창, 맛집, 신림 View Comments



OS/Windows & IIS FREB, iis7, LOG_FILE_MAX_SIZE_TRUNCATE, win2k8, 실패한요청규칙추적 View Comments
cd /d "%windir%\system32\inetsrv"
appcmd set config /section:sites-siteDefaults.traceFailedRequestsLogging.maxLogFileSizeKB:1024
개발/SVN & Trac gantt, GanttCalendar, GanttChart, plugin, trac View Comments
# cd /usr/local/src2. 한글화 작업
# svn co http://svn.sourceforge.jp/svnroot/shibuya-trac/plugins/ganttcalendarplugin/branches/0.10/
# mv 0.10 ganttcalendarplugin
ganttcalendar/ticketcalendar.pyUTF-8 인코딩으로 파일을 열어서 보면 일본어로 되어있는 부분들이 있습니다. 이걸 적당히 수정해 주면 됩니다. ex. 日 → 월, イルストーン → Milstone
ganttcalendar/ticketgantt.py
ganttcalendar/templates/calendar.cs
ganttcalendar/templates/gantt.cs
# cd /usr/local/src/ganttcalendarplugin4. 설정
# easy install .
[components]그리고 서비스 (apache 또는 trac)를 재시작해 줍니다. 안그러면 적용이 안되기도 하더군요
ganttcalendar.ticketcalendar.* = enabled
ganttcalendar.ticketgantt.* = enabled
[ticket-custom]
complete = select
complete.label = % Complete
complete.options = 0|5|10|15|20|25|30|35|40|45|50|55|60|65|70|75|80|85|90|95|100
complete.order = 3
due_assign = text
due_assign.label = Start (YYYY/MM/DD)
due_assign.order = 1
due_close = text
due_close.label = End (YYYY/MM/DD)
due_close.order = 2


개발/SVN & Trac ignore pattern, svn, 무시 패턴 View Comments
잡담 widget, 온오프믹스, 위젯, 위젯뱅크 View Comments
<script src="http://widgetprovider.daum.net/view?url=http://widgetcfs1.daum.net/xml/16/widget/2008/09/24/15/28/48d9de0cd3a6e.xml&up_WidgetStyle=A&up_Category=00&up_Username=&up_HideDateLocation=true&up_HideStatus=true&up_HideBottom=true&&width=166&height=350&widgetId=122&scrap=1" type="text/javascript"></script>여기서 height=350 부분을 아래처럼 적당히 수정하는거죠!
<script src="http://widgetprovider.daum.net/view?url=http://widgetcfs1.daum.net/xml/16/widget/2008/09/24/15/28/48d9de0cd3a6e.xml&up_WidgetStyle=A&up_Category=00&up_Username=&up_HideDateLocation=true&up_HideStatus=true&up_HideBottom=true&&width=166&height=200&widgetId=122&scrap=1" type="text/javascript"></script>많은 분들에게 도움이 되었으면 좋겠군요. ^^
개발/PHP textcube, 웹호스팅, 파일업로드 View Comments
개발/vim gvim, random colors, vim, 컬러스킴 View Comments
" Create the comma-separated list of colorscheme files[edit] - [startup settings] 에 등록하시고 :wq! 하고 실행하면 짠~ 하고 계속 바뀝니다 ^^
let s:colors = substitute(globpath(&runtimepath, 'colors/*.vim'), '\n', ',', 'g')
if strlen(s:colors)
" Count the number of color schemes
let s:num = strlen(substitute(s:colors, '[^,]\+', '', 'g')) + 1
if s:num > 1
let s:loop = localtime() % s:num
" Rotate the list s:loop times
while s:loop
let s:colors = substitute(s:colors, '^\([^,]\+\),\(.*\)$', '\2,\1', '')
let s:loop = s:loop - 1
endwhile
endif
let s:color = matchstr(s:colors, '^[^,]\+')
unlet! g:colors_name
execute 'source' s:color
" Prevent the message from disappearing
redraw
" 스킨이름을 보고 싶으면 아래 주석을 푸세요~
"echomsg 'Color applied: '.(exists('g:colors_name') ? g:colors_name : '').' ('.s:color.')'
endif
unlet! s:colors s:color s:num s:loop
개발/vim apache2, apache22, FreeBSD, syntaxhighlight, vim View Comments
일반적인 설정
au BufNewFile,BufRead httpd.conf*,srm.conf*,access.conf*,apache.conf*,apache2.conf*,/etc/ap ache2/*.conf* call s:StarSetf('apache')
#1 apache22 디렉토리를 몽땅 설정
au BufNewFile,BufRead httpd.conf*,/usr/local/etc/apache22/*.conf*,srm.conf*,access.conf*,apache.conf*,apache2.conf*,/etc/ap ache2/*.conf* call s:StarSetf('apache')
#2 httpd-*.conf 를 인식하도록 설정그리고 :wq! 후에 vim /usr/local/etc/apache22/extra/httpd-vhost.conf 등을 열어봅시다~
au BufNewFile,BufRead httpd.conf*,httpd-*.conf,srm.conf*,access.conf*,apache.conf*,apache2.conf*,/etc/ap ache2/*.conf* call s:StarSetf('apache')
Recent Comments