일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 엄마
- asiairpro
- 카이스트
- 오사카
- GALAXY
- 기숙사
- 토성
- 금성
- osaka
- asi294mcpro
- narrowbandimage
- 성운
- fc100df
- 게임
- 달
- optolonglextreme
- 은하
- 혜성
- astrophotography
- m33
- mavic pro
- iceland
- takahashitelescope
- VC++ 6.0
- 목성
- 할아버지
- 행성
- 별사진
- zwo
- 삼각형자리은하
- Today
- Total
목록잡지식 (17)
June's Story
호주, 영문 홈페이지에서 JESS 한테 Live chat 라고 치면 됨 ;;
Download the style you want to install.Double-click the style file. It should open in EndNote.In EndNote, go to “File Menu” and choose “Save As”. Replace the word “copy” with your style’s name and click “Save”.Click on “File Menu” and choose “Close Style”.
vsrename이라고 누가 만들어 놓은거에 GUI만 입힌것...넘 불편해서...내컴에선 잘되는데...딴데서도 잘 될런지는 모르것음 ..
찾아 바꾸기에서 찾을 스타일 과 바꿀 스타일을 지정해주고 찾을 내용 무시 바꿀 내용 무시 선택해주면 스타일 바로 바뀜.... 보고서 워드로 다 써놨는데 한글로 바꾸라그래서 삽질좀 했음; 썩을 ㅋㅋㅋ
projecteuler.net/ 25번 째 문제....직접풀었음.ㅎ The Fibonacci sequence is defined by the recurrence relation: Fn = Fn−1 + Fn−2, where F1 = 1 and F2 = 1. Hence the first 12 terms will be: F1 = 1 F2 = 1 F3 = 2 F4 = 3 F5 = 5 F6 = 8 F7 = 13 F8 = 21 F9 = 34 F10 = 55 F11 = 89 F12 = 144 The 12th term, F12, is the first term to contain three digits. What is the first term in the Fibonacci sequence to contain 1000..
..........
태그 생성기를 만들면서 썼던 라이브러리 VC++ 6.0 에서 사용할려면 다음과 같이 하면 된다. DLL 파일 -> 윈도우\system32 헤더(H) 파일 -> VC 설치 폴더\Include 라이브러리(LIB) 파일 -> VC 설치 폴더\Lib 프로젝트 셋팅에서 추가 라이브러리에 GdiPlus.lib 추가 StdAfx.h 파일에 다음 추가 #define ULONG_PTR DWORD #include using namespace Gdiplus; ~App.h 파일에 다음 추가 ULONG_PTR m_gdiplusToken; ~App.cpp ExitInstance() 함수에 다음추가 GdiplusShutdown(m_gdiplusToken); return CWinApp::ExitInstance(); ~App.cpp ..