본문 바로가기

人 煙403

구글 캘린더, 주소록과 맥 동기화 - How to sync google calendar, contacts with mac OSX iCal & adress book How to sync Multiple Google CalendariCal 실행Menu -> iCal -> 환경설정(Preference) -> 계정(Account)'+' 버튼을 누르고 gmail 계정 주소 및 암호 입력구글 계정을 선택하고 오른쪽 메뉴에서 '위임'을 누름'접근 가능한 계정'에서 원하는 달력을 체크하여 사용한다. ( 만약 리스트가 안나오는 경우 iCal 환경설정을 종료했다가 '위임' 탭으로 다시 접근하면 리스트가 나온다. How to sync Google Contacts주소록 실행Menu -> 주소록 -> Preference -> '계정' tabiCloud 선택후 우측에서 '이 계정 활성화' 체크 해제'나의 Mac' 선택후 우측에서 Google과 동기화 체크Google 계정 및 암호를 누르면.. 2012. 7. 23.
[Python] Power User 파이선 공부중 짧으면서 강력했던 기법들을 하나씩 정리해 보려 한다. Assign each item in array into multiple variables (Warning : the size of array must be the same as the number of variables) firstParam, secondParam, ThirdParam = argv 2012. 7. 21.
두성이란 이렇게 내는 거야 - 민경훈 2012. 2. 29.
[python] isVowel() and getVowelCount() 영어 형태소 분석기를 작성하면서 사용하는 스크립트 코드중, 영어 모음인지 체크하는 코드와, 모음 개수 판단하는 스크립트 코드를 간략하게 만들어 공개해본다. def isVowel(char): vowels = ['a', 'e', 'i', 'o', 'u'] if (char.lower() in vowels): return True return False def getVowelCount(inputStr): count = 0 isPrevCharVowel = False for i in inputStr: if isVowel(i): if isPrevCharVowel is False: count += 1 isPrevCharVowel = True else: isPrevCharVowel = False if ( inputStr.. 2011. 8. 29.