일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Code Blast
- 나만의 독서법
- 선각자
- MontyHall
- 머신러닝
- 2022 개정 교육과정
- 베스트 극장
- 동영상 플레이어
- 수학적 귀납법
- 안드로이드
- 4차 산업혁명
- 블록 코딩
- 패트릭 브링리
- 박사 논문
- 매트로폴리탄 미술관
- code.org
- 누구를 위한 교육과정인가?
- 중학교 교육과정
- 인공지능
- 코드 폭발 효과
- 휴먼명조
- 2021년 튜링상
- 욱
- 단편 드라마
- Visual Studio Code
- 변곡점
- 알프레드 에이호
- 파일 검색
- 제프리 울만
- 앱
- Today
- Total
목록컴퓨터과학 (79)
코딩하는 공무원
프로세스 탐지, 중복실행방지 및 포커스 이동 http://lonelyheart.tistory.com/240
http://en.wikipedia.org/wiki/Nassi-Shneiderman_diagram The Nassi-Shneiderman Diagram Editor Nessi : http://eii.ucv.cl/nessi/ Structorizer : http://structorizer.fisch.lu/ 정수 n이 주어질 때, 1~n까지의 합계를 구하는 알고리즘 정수 n이 주어질 때, 1~n까지 숫자 중에서 짝수의 합계를 구하는 알고리즘
https://developers.google.com/maps/documentation/javascript/?hl=ko-KR
http://it-ebooks.info 이건 너무 하잖아…
1. 해당 IDE에서 소스코드 복사 2. EditPlus에 해당 언어로 새 문서를 연 후, 붙여넣기 3. EditPlus에 Ctrl+A > 마우스 우클릭 > 클립보드 HTML로 복사 4. 새 HTML 페이지 연 후 붙여 넣기 5. 다음 그림의 버튼 클릭 6. EditPlus에서 임시로 만든 html 문서에서 Ctrl+A를 눌러 복사한다. 7. 한글에서 표를 만든 후 표 내부에 붙여넣기. 이때 반드시 원본 형식 유지!! 8. 한글에서 소스코드 전체 선택 > Monaco 서체, 크기는 9, 줄간격 160으로 설정9. 한글에서 소스코드 전체 선택 > 마우스 우클릭 > 문단 번호 모양 > 1. 1.1 1.1.1 모양을 '사용자 정의' 버튼을 눌러 다음과 같이 수정 '글자모양지정' 선택 > 글자모양 > 크기 9,..
1. 다음의 주소에서 mingw를 설치한다. (MinGW는 리눅스 내장 컴파일러 gcc를 윈도우환경에서 제공합니다.) http://mingw.org > mingw-get-inst-날짜.exe 다운로드 2. 환경변수 Path에 MinGW의 bin 폴더의 절대 경로 추가 3. EditPlus의 설정 > 도구 > 사용자 도구에서 다음과 같이 설정한다. C++ 컴파일 C:\MinGW\bin\g++.exe -o $(FileNameNoExt).exe $(FileName) $(FileDir) 출력 내용 캡쳐 C++ 실행 $(FileNameNoExt) $(FileDir)
Nimbus is a polished cross-platform look and feel introduced in the Java SE 6 Update 10 (6u10) release. The following screen capture, from SwingSet3 shows the Nimbus look and feel. Nimbus uses Java 2D vector graphics to draw the user interface (UI), rather than static bitmaps, so the UI can be crisply rendered at any resolution. Nimbus is highly customizable. You can use the Nimbus look and feel..
INCLUDE C:\Program Files\Microsoft SDKs\Windows\v7.0A\Include; C:\Program Files\Microsoft Visual Studio 10.0\VC\include; LIB C:\Program Files\Microsoft SDKs\Windows\v7.0A\Lib; C:\Program Files\Microsoft Visual Studio 10.0\VC\lib; 빌드시 전혀 반응이 없거나. cl.exe 파일을 직접 실행했을 때 pdb100.dll이 없어 프로그램을 시작할 수 없습니다.. 라는 메시지가 나타나는 경우는 Common7 > IDE 폴더에 있는 mspdb100.dll을 복사해서 bin 폴더에 복사한다.
http://docs.oracle.com/javase/tutorial/uiswing/components/index.html
Pyscipter의 코드 상에서 한글 경로를 사용할 때 다음과 같은 문제가 발생하는 경우 Python 2.x 의 LIB 폴더의 site.py 파일을 다음과 같이 수정한다. 수정전 ============ if 0: # Enable to support locale aware default string encodings. import locale loc = locale.getdefaultlocale() if loc[1]: encoding = loc[1] 수정후 ============ if 1: # Enable to support locale aware default string encodings. import locale loc = locale.getdefaultlocale() if loc[1]: encodi..
http://code.google.com/p/pyscripter/ 1. Tools > Option > IDE Options > Default file encoding for new files : sf_UTF8 > Defualt line break format for new files : sffUnicode2. Tools > Editor Options > Display 탭 > Font 설정 > Options 탭 > Word wrap 체크3. Edit > File Format > UTF-8 체크