본문 바로가기

.주제별

(98)
[Course] 통신 분야 대학교 과정에서 배우는 통신과 관련된 과목을 소개하고자 한다. 일단 모대학의 "Course Sequence"을 보자. (참고 : http://www.ee.kaist.ac.kr/education/course.asp) 1. 통신 & 네트워크 분야 2. 무선 및 광 분야 1은 "SW & 디지탈" 라 보면, 2는 "HW & 아날로그" 라 보는게 편할 것이다. 과정 중 몇개만 추려보면 다음과 같다. 기초과정 신호 및 시스템 (Signals and Systems) 시연속 그리고 이산 신호 및 시스템을 소개한다. 푸리에 급수, 푸리에 변환, 라플라스 변환, z 변환 및 그들의 응용에 대하여 알아보고 시불면 선형 시스템이 강조되면서 다양한 시스템에 대해서 알아본다. Text Book : 'Fundamentals of ..
RubyOnRails - Logger 기능 Rails App에는 3가지 구동 모드가 있다. [Development/ Production/ Test] Mongrel 웹서를 이용하는 경우, 다음 처럼 구동모드를 선택할 수가 있다. mongrel_rails start -e development -d -p mongrel_rails start -e production -d -p mongrel_rails start -e test -d -p 이 구동모드에 따라 각각 log파일이 따로 존재한다. /log/development.log /log/productiont.log /log/test.log Rails에서 제공되는 logging 이외 다른 log을 기록하고 싶다면 다음처럼 꾸리면 된다. ## Log 선언 표준 or 파일 입출력 모두 가능함 logger = L..
[WP] Jeromes Keywords - Comment &amp; Tags 문제 : Jeromes Keywords 을 통해서 Tagging후, Comments 을 통해서 글을 업데이트 하면, Tag가 사라지는 현상 해결 : 참조) 082Net In "./wp-contents/plugins/jeromes-keywrod/jeromes-keywords.php " Line 554 ~ 556 을 다음처러 수정한다. if($wp_db_version < 3308) { add_action('edit_post', 'keywords_update'); add_action('publish_post', 'keywords_update'); } add_action('save_post', 'keywords_update');
[Wordpress] Tag + Cosmos 환경 : Ubuntu + Wordpress + Networker Themes, cosmos + jkeywords 설정 : jkeywords plugin 설치 cosmos.php 다운로드 cosmos.php에서 style 관련 부분은 "cosmos.css"로 저장 style.css 에 "@import cosmos.css" 추가 Admin -> Write Pages -> "cosmos template" 선택하여, 페이지 추가 + Slug에는 "cosmos" 입력" cosmos.php 에, 다음 내용 추가> ------
[Wordpress] Permalink - Error 상황 : Ubuntu 7.04 + Apache2 (mod_rewrite on) + Wordpress Permalink "../blog/.htaccess " 내용은 다음과 같다. # BEGIN WordPress RewriteEngine On RewriteBase /blog/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L] # END WordPress 에러 : rewirte module load되었는데도, "../archives/7 was not found on server" 발생 문제는 Directory 지시자의 "AllowOverride" 였슴. 해결 : "/etc..
[Linux] 사용자 만들기, 권한 1. 사용자 추가 / 삭제 adduser deluser deluser --remove-home delluser --remove-all-files 2. 디렉토리 권한 및 변경 - 권한 변경 chmod [Option] MODE File(or Dir) [tip drwx rwx rwx = 소유자 그룹 일반 - 소유자 변경 chown [option] : File(or Dir)
[Ubuntu] Samba 설치 : apt-get install samba 설정 : In "/etc/samba/smb/conf" (다른 부분은 내버려 두고, Share Definition 만 수정) 1) Home 설정 [homes] comment = %H Home Directories path = %H browseable = yes writeable = yes valid users = %S 2) Share 설정 [smarter] comment = Share Server path = /home/share writable = yes share modes = no valid users = @group,user1,user2.... admin users = adminuser 기타 : 서버 재시작 "/etc/init.d/samba resta..
[Rails] Ordered Hash * ruby에서 hash을 쓰다보면, Hash table에 입력순서대로 값이 들어가질 않는다. 이 Ordered hash을 사용하게 되면, 입력 순서대로 값이 입력된다. Ordered Hash을 위해서, 몇가지 Gem을 설치하였다. GoodLibs - 현재 사용중인 것 (2006.05 이후로 업데이트 이루어지지 않음) Facets - Dictionary - 좀더 유명한 Gems, 하지만 "Sort" method을 지원하지 못한다. Sort method 을 지원하기 위하여, GoodLibs을 다시 설치하였는데, "File is not to unload" 라는 에러 발생한다. Gem 설치하고, Ruby Path가 잡혀있는데도 이런 상황. 혹시나 해서, GoodLibs 설치된 폴더에서 "ruby ordered..