아래의 내용을 reg 파일로 저장하여 실행하면
레지스트리에 내용이 생성되고 폰트가 변경된다.

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\DevStudio\6.0\Format]

[HKEY_CURRENT_USER\Software\Microsoft\DevStudio\6.0\Format\Output Window]
"FontFace"="Consolas"
"FontSize"=dword:0000000c

[HKEY_CURRENT_USER\Software\Microsoft\DevStudio\6.0\Format\Source Window]
"FontFace"="Consolas"
"FontSize"=dword:0000000c
[HKEY_CURRENT_USER\Software\Microsoft\DevStudio\6.0\Format\Workspace Window]
"FontFace"="Tahoma"
"FontSize"=dword:00000008



블로그 이미지

요다할아범

,

주소창에 chrome://flags/ 를 입력하고 들어가서

DirectWrite 사용하고 재시작 하면 됩니다.

블로그 이미지

요다할아범

,

요즘 웹서버의 대세는 APM에서 Nginx+Php+MariaDB 로 흘러가는 형국인 것 같다.


테스트로 CentOS 6.4 x64에 MariaDB를 설치해보기로 한다.

우선 yum으로 설치가 안되기에 repository에 등록을 시키고 yum으로 설치해보자.

# vi /etc/yum.repos.d/MariaDB.repo
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/5.5/centos6-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1

저장하고

# yum update

# yum install MariaDB-server MariaDB-client <=대소문자 구분

# service mysql start
Starting MySQL.. SUCCESS! 



MariaDB 실행...

1. mysql 암호 설정
# mysqladmin -u root password
New password:
Confirm new password:

2. MariaDB 실행
# mysql -u root -p mysql
Enter password:
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 8
Server version: 5.5.32-MariaDB MariaDB Server

Copyright (c) 2000, 2013, Oracle, Monty Program Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [mysql]> 
MariaDB [mysql]> 
MariaDB [mysql]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
4 rows in set (0.00 sec)


블로그 이미지

요다할아범

,

  2013년 노임단가 월평균
근무일수
월노임단가 제경비 기술료 M/M 단가
기술사            398,119         21   8,360,499   9,196,549   1,839,310   19,396,358
특급기술자            357,171         21   7,500,591   8,250,650   1,650,130   17,401,371
고급기술자            266,590         21   5,598,390   6,158,229   1,231,646   12,988,265
중급기술자            219,469         21   4,608,849   5,069,734   1,013,947   10,692,530
초급기술자            182,194         21   3,826,074   4,208,681     841,736    8,876,492
고급기능사            154,529         21   3,245,109   3,569,620     713,924    7,528,653
중급기능사            126,240         21   2,651,040   2,916,144     583,229    6,150,413
초급기능사            114,675         21   2,408,175   2,648,993     529,799    5,586,966
자료입력원              94,612         21   1,986,852   2,185,537     437,107    4,609,497

블로그 이미지

요다할아범

,

오라클에 붙어서 작업하려면 클라이언트를 설치해야 한다. 매번 PC를 포멧할 때마다 해줘야 하는작업인데 여간 귀찮은 작업이 아니다. 이를 극복할 수 있는 방법이 있는데, 오라클 인스턴트 클라이언트를 받아서 사용하면 된다.

다음 링크에서 인스턴트 클라이언트를 다운받도록 한다.


아래와 같은 화면에서 자신이 사용하는 O/S에 맞는 버전을 클릭하도록 한다. 나는 윈도우 32비트를 쓰기에 파란 링크를 눌러 다운받았다.

인스턴트 클라이언트 다운로드


그러면 버전별로 다운받을 수 있는 링크가 나타난다. 약관에 동의하고 Basic과 SQL*Plus를 다운받도록 한다. 과정중 계정을 입력해야 하는데, 오라클 사이트에 가입되어있지 않으면 가입을 먼저 해야한다. 기억상으로는 가입시 ID, 이메일, 패스워드 정도만 입력했던 것 같다.


그리고 특정 폴더에 압축을 푼다. 여기서는 D:\instantClient_11_2 에 풀도록 하겠다. 압축을 풀었으면 다음과 같이 환경변수를 잡아준다. 내 컴퓨터의 고급 설정에서 잡을 수 있다.

  • PATH = D:\instantClient_11_2 (기존 PATH변수에 추가)
  • ORACLE_HOME = D:\instantClient_11_2
  • TNS_ADMIN = D:\instantClient_11_2
  • NLS_LANG = KOREAN_KOREA.KO16MSWIN949


다 되었으면 TNSNAMES.ORA 파일을 TNS_ADMIN으로 잡은 폴더(D:\instantClient_11_2)에 복사해서 넣는다. 그러면 SQL*Plus와 다른 DB툴로 붙는 것을 확인할 수 있다.

블로그 이미지

요다할아범

,