반응형

 

* 이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.

 

얼마전에 땀이 비오듯 쏟아지게 운동을 마친 후 편의점에 가서 가장 눈에 들어오는 이온음료수를 손에 잡고 계산을 한 뒤

벌컥벌컥 마셨다. 

 

그런데 이게 웬일? 그동안 먹었던 모든 이온음료수중에 가장 맛있는게 아닌가?

속으로 생각했다. 내가 너무 땀을 많이 흘려서 그런게 아닐까? 그런데 아니였다. 얼마전에 마라톤 10Km를 뛰고 먹은

이온 음료수보다 더 맛있었다. 

 

음료수도 그때도 포카리 , 요번에 먹은것도 포카리인데 왜 맛이 차이가 나지? 생각하던 와중에 딱 한가지의 차이점을 발견했다.

 

바로 그때는 페트병 이였고 요번에 먹은건 캔이였다!!!

그렇다 그법칙을 까먹고 있었던 것이다. 원래 과학적으로 내가 알기로 담는 용기에 다라 화학 반응으로 인해

음료의 맛이 달라질 수 있다는 것이다. 

 

기본적으로 아래와 같은 순이라고 볼 수 있겠다.

 

병 > 캔  > 자기 > 페트병

 

그래서 그 후부터 나는 무조건 캔 한박스씩 사서 쟁여놓고 먹는다는거!! ㅋㅋㅋ

 

 

 

 

반응형
반응형

CALL mysql.rds_skip_repl_error

 

혹은

 

CALL mysql.rds_skip_repl_error()

반응형

'DBMS > mysql' 카테고리의 다른 글

mysql join 개념도  (0) 2012.08.13
mysql - 외부 접속 허용해 주기  (0) 2010.04.28
반응형

Handling Multiple Github Accounts on MacOS

The only way I've succeeded so far is to employ SSH.

Assuming you are new to this like me, first I'd like to share with you that your Mac has a SSH config file in a .ssh directory. The config file is where you draw relations of your SSH keys to each GitHub (or Bitbucket) account, and all your SSH keys generated are saved into .ssh directory by default. You can navigate to it by running cd ~/.ssh within your terminal, open the config file with any editor, and it should look something like this:

Host *
 AddKeysToAgent yes
 UseKeyChain yes
 IdentityFile ~/.ssh/id_rsa
 ForwardAgent yes

Assuming you've got 2 github accounts, for work and play, lets get your Mac to "register" them. To do that that you'll need to create SSH key pairs for each account. If you have already setup your Mac to SSH with one of them, or check if you have one, continue on with the following for the second account.

1. Creating the SSH keys. For each SSH key pairs:

  • run ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
  • You'll be prompted: "Enter a file in which to save the key" and the suggested default filename would be id_rsa. This filename will be used for your SSH private and public keys so remember to make it unique, eg. user-1, user-2. This step will generate both the private and public keys, user-1 + user-1.pub , user-2 + user-2.pub respectively.
  • GitHub has this step in detail. We're not adding the keys to the ssh-agent.

2. Register your keys to the respective GitHub accounts.

  • Follow these steps to do so.

3. Head back over to the SSH config file at ~/.ssh and amend accordingly to:

#user1 account
Host github.com-user1
   HostName github.com
   User git
   IdentityFile ~/.ssh/github-user1
   IdentitiesOnly yes

#user2 account
Host github.com-user2
   HostName github.com
   User git
   IdentityFile ~/.ssh/github-user2
   IdentitiesOnly yes

Replace user1 or user2 with your GitHub usernames/identification-handlers

4. Go ahead to git clone your respective repository

git clone git@github.com-user1:user1/your-repo-name.git your-repo-name_user1

5. Configure your git identity:

  • Open up local git config using git config --local -e and add:
[user]
    name = user1
    email = user1@gmail.com

6. Ensure your remote url is in the right format e.g: git@github.com-user1:user1/your-repo-name.git your-repo-name_user1

  • You either run git remote set-url origin git@github.com-user1:user1/your-repo-name.git your-repo-name_user1
  • Or amend your remote ssh-url in your local git config file:
 [remote "origin"] 
       url = git@github.com-user1:user1/your-repo-name.git
       fetch = +refs/heads/*:refs/remotes/origin/*

Now you can git actions (pull/push/fetch...etc) all you like!

Resources:

Special thanks to @pbuditi for your help!

반응형

+ Recent posts