« Previous : 1 : 2 : 3 : 4 : 5 : ... 14 : Next »

Mac OS X Lion 시스템 글꼴 바꾸기

라이언 시스템 글꼴 변경을 위한 사이트
- C. Republic
- 시스템 글꼴 자동으로 바꾸는 스크립트

Posted by solarview

2012/01/09 14:55 2012/01/09 14:55
, , , ,
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/370

윈도우에서 애플 키보드 사용하기

윈도우에서 애플 키보드를 사용하기 위해서 고려해야 할 것들(개인적인 판단임)
- 결론적으로 말하면, 윈도우에서는 애플 유선 키보드 (모델 **)을 사용하는 것이 좋다
- 맥용(맥, 아이패드 등)으로는 애플 무선 키보드도 좋다.

이유는 이렇다.
- 두 운영체제를 위한 전용 키들이 다르다.
- 윈도우에서는 한영전환, 한자변환, 페이지업/다운,  Delete, Home 등의 전용키가 있으나, 애플 키보드에는 이런 것이 없다.
- 따라서, 키보드에서 이를 구현하려면 레지스트리를 변경해줘야 하는 수고가 따른다.

Posted by solarview

2012/01/09 13:57 2012/01/09 13:57
, ,
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/369

맥에서 한자 특수 기호 입력하기

맥에서 한자 특수문자 입력하기를 소개하는 사이트
- http://openstory.tistory.com/25
- 전우현님의 Mac Tip of Today (문자입력말고도 많은 팁이 있다!!!)

Posted by solarview

2012/01/02 17:55 2012/01/02 17:55
, ,
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/365

윈도우에서 애플 유선 키보드 사용하기

사용자 삽입 이미지

윈도우에서 애플 유선 키보드를 사용하기 위한 사이트들

- 애플의 유선키보드(Ultra-thin USB) 키매핑 설명(애플 공식 사이트)
- 애플 키보드 키매핑 설명(전체)
- 주관적이며 경험적인 지식의 백과사전

Posted by solarview

2012/01/02 14:01 2012/01/02 14:01
, ,
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/364

사용자 삽입 이미지

추천 웹페이지들
- 제로 (마우스)
- 꿈의 늪 (키보드와 마우스)
- 윈도에서 애플 무선 키보드를 사용하려면 (주의 : 레지스트리를 변경하는 방법임. 복구 레지스트리가 아직 없음.)

개인적으로는 다음 사이트에서 macbook.exe를 실행시켜서 한자 변환 기능을 첨가했다.
http://x64core.tistory.com/52
이를 이용해서 '왼쪽 커맨드' 키를 '한자'키로 바꾸었다.
한/영 전환을 '시프트+스페이스'로 하는 방법은 여기에 있다.
BootCamp에서의 키매핑은 여기를 참고하시라.
다른 키를 변경하기 위해서는 Key Tweak이라는 프로그램을 사용했다.
또한 외국 사이트도 참고했다.

[바꾼 내용]
- 왼쪽 커맨드 ==> 한자변환
- 오른쪽 커맨드 ==> delete
- F11 ==> Page Down
- F12 ==> Page Up

사용자 삽입 이미지
버튼은 하나이다. 아니 마우스 전체가 하나의 버튼이라고 할 수 있다. 좌클릭, 우클릭은 물론 휠 기능까지 다 된다. 놀라운 사용자 인터페이스이다.






Posted by solarview

2011/11/16 21:28 2011/11/16 21:28
, , , , ,
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/361

Downgrade php / installing php5.2 next to php 5.3

다운그레이드를 위해서 아래의 내용을 스크립트로 만들었다.
출처 : http://ubuntuforums.org/archive/index.php/t-1459163.html
#!/bin/bash
# by Ruben Barkow (rubo77) http://www.entikey.z11.de/

# Originally Posted by Bachstelze http://ubuntuforums.org/showthread.php?p=9080474#post9080474
# OK, here's how to do the Apt magic to get PHP packages from the karmic repositories:

echo "Am I root? "
if [ "$(whoami &2>/dev/null)" != "root" ] && [ "$(id -un &2>/dev/null)" != "root" ] ; then
echo " NO!

Error: You must be root to run this script.
Enter
sudo su
"
exit 1
fi
echo " OK";


#install aptitude before, if you don`t have it:
apt-get install aptitude
# or if you prefer apt-get use:
# alias aptitude='apt-get'

# finish all apt-problems:
aptitude update
aptitude -f install
#apt-get -f install

# remove all your existing PHP packages. You can list them with dpkg -l| grep php
PHPLIST=$(for i in $(dpkg -l | grep php|awk '{ print $2 }' ); do echo $i; done)
echo these pachets will be removed: $PHPLIST
# you need not to purge, if you have upgraded from karmic:
aptitude remove $PHPLIST
# on a fresh install, you need purge:
# aptitude remove --purge $PHPLIST


#Create a file each in /etc/apt/preferences.d like this (call it for example /etc/apt/preferences.d/php5_2);
#
#Package: php5
#Pin: release a=karmic
#Pin-Priority: 991
#
#The big problem is that wildcards don't work, so you will need one such stanza for each PHP package you want to pull from karmic:

echo ''>/etc/apt/preferences.d/php5_2
for i in $PHPLIST ; do echo "Package: $i
Pin: release a=karmic
Pin-Priority: 991
">>/etc/apt/preferences.d/php5_2; done

# duplicate your existing sources.list replacing lucid with karmic and save it in sources.list.d:
#sed s/lucid/karmic/g /etc/apt/sources.list | sudo tee /etc/apt/sources.list.d/karmic.list

# better exactly only the needed sources, cause otherwise you can get a cachsize problem:
echo "# needed sources vor php5.2:
deb http://de.archive.ubuntu.com/ubuntu/ karmic main restricted
deb-src http://de.archive.ubuntu.com/ubuntu/ karmic main restricted

deb http://de.archive.ubuntu.com/ubuntu/ karmic-updates main restricted
deb-src http://de.archive.ubuntu.com/ubuntu/ karmic-updates main restricted

deb http://de.archive.ubuntu.com/ubuntu/ karmic universe
deb-src http://de.archive.ubuntu.com/ubuntu/ karmic universe
deb http://de.archive.ubuntu.com/ubuntu/ karmic-updates universe
deb-src http://de.archive.ubuntu.com/ubuntu/ karmic-updates universe

deb http://de.archive.ubuntu.com/ubuntu/ karmic multiverse
deb-src http://de.archive.ubuntu.com/ubuntu/ karmic multiverse
deb http://de.archive.ubuntu.com/ubuntu/ karmic-updates multiverse
deb-src http://de.archive.ubuntu.com/ubuntu/ karmic-updates multiverse

deb http://security.ubuntu.com/ubuntu karmic-security main restricted
deb-src http://security.ubuntu.com/ubuntu karmic-security main restricted
deb http://security.ubuntu.com/ubuntu karmic-security universe
deb-src http://security.ubuntu.com/ubuntu karmic-security universe
deb http://security.ubuntu.com/ubuntu karmic-security multiverse
deb-src http://security.ubuntu.com/ubuntu karmic-security multiverse
" >> /etc/apt/sources.list.d/karmic.list

aptitude update

apache2ctl restart

echo install new from karmic:
aptitude -t karmic install $PHPLIST

# at the end retry the modul libapache2-mod-php5 in case it didn't work the first time:
aptitude -t karmic install libapache2-mod-php5

apache2ctl restart
Thanks to "avrcan10"

Posted by solarview

2011/11/01 15:46 2011/11/01 15:46
, , ,
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/358

The first C program

사용자 삽입 이미지

[code c]#include <stdio.h>

main()
{
    printf("hello, world\n");
}
[/code]

To Dennis M. Ritchie

[code c]#include <stdio.h>

main()
{
    printf("Goodbye, World\n");
}
[/code]

- 유닉스-C언어의 아버지

Posted by solarview

2011/10/17 13:44 2011/10/17 13:44
, ,
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/355

« Previous : 1 : 2 : 3 : 4 : 5 : ... 14 : Next »