2011-11-02

IE9 에서 Flash 배경이 까맣게 나오는 현상 해결하기


IE9에서 Flash 의 배경이 까맣게 나오는 경우가 있다. Flash의 버그라고 생각했었는데, 다른 브라우저(크롬 ,파이어폭스) 등에서는 정상적으로 나온다. 한참을 고민하고 검색을 해봐도 방법을 못찾았는데, 사무실 직원이 해결해주었다. ^^ 방법은 아래 화면처럼 인터넷 옵션고급탭을 누르고, GPU 렌더링 대신 소프트웨어 렌더링 사용 에 체크를 하고 적용하면 잘 되는 것을 확인할 수 있다. IE9에서 새로 생긴 옵션인데, 이 것이 지원이 안되는 하드웨어를 가지고 있다면, 반드시 체크하여 사용해야 하나보다.


2011-11-01

.tmux.conf

Install Tmux

$ apt-get install tmux

Configure Tmux

set-option -g prefix C-a
bind-key C-a last-window
unbind % # Remove default binding since we're replacing
bind | split-window -h
bind - split-window -v
# Set status bar
set -g status-bg black
set -g status-fg white
set -g status-left '#[fg=green]#H'
# Highlight active window
set-window-option -g window-status-current-bg red
set -g status-right '#[fg=yellow]#(uptime | cut -d "," -f 2-)'
# Set window notifications
setw -g monitor-activity on
set -g visual-activity on
# Automatically set window title
setw -g automatic-rename