본문 바로가기
반응형

분류 전체보기429

알고리즘 공부 사이트 https://www.acmicpc.net 2018. 2. 1.
Google Calendar API javascript [ insert ] https://developers.google.com/google-apps/calendar/v3/reference/events/insert#examples // Refer to the JavaScript quickstart on how to setup the environment: // https://developers.google.com/google-apps/calendar/quickstart/js // Change the scope to 'https://www.googleapis.com/auth/calendar' and delete any // stored credentials. var event = { 'summary': 'Google I/O 2015', 'l.. 2018. 1. 23.
FTP파일 이어받기(FTPClient) using System;using System.IO;using System.Net.FtpClient; namespace CR.Common { public static class FtpClientExtensions { public static void Download(this FtpClient ftp, string remoteFilePath, string localFilePath) { using (var fs = new FileStream(filePath: localFilePath, fileMode: FileMode.Create, fileAccess: FileAccess.Write, fileShare:FileShare.None)) { // istream.Position is incremented accor.. 2017. 12. 27.
MySQL 상태 메시지 분석 및 활용 MySQL 상태 메시지 분석 및 활용 https://www.slideshare.net/LeeIGoo/mysql-75858852 2017. 10. 23.
MySQL 쓰면서 하지 말아야 할 것 17가지 MySQL 쓰면서 하지 말아야 할 것 17가지권장사항이다. 이것을 이해하면 당신의 어플리케이션이 더 나은 성능을 발휘할 것이다.다만 이것이 사람의 실력을 판단하는 척도로 사용되서는 안 될 것이다.Original Post : https://blog.lael.be/post/370작게 생각하기조만간 규모가 커질거라면 MySQL ecosystem을 봐야된다.그리고 캐싱 빡시게 안 하는 메이저 웹사이트는 없다.develooper.com의 Hansen PT랑 Ilia 튜토리얼 볼 것처음부터 확장 가능하게 아키텍처 잘 쪼개놔야된다.복제랑 파티셔닝 어떻게 할지 미리 계획 세워놔라.파일 기반 세션 좀 쓰지마그렇다고 너무 쓸데없이 크게 생각하지도 말 것특히 성능하고 확장성 구분 못 하면 난감함EXPLAIN 안 써보기SEL.. 2017. 10. 23.
Gitlab Pycharm 연동 이클립스에서 사용하던 SVN과 마찬가지로 Gitlab 또한 Pycharm 프로그램과 연동하여 굳이 gitlab페이지에 연결하지 않더라도 Commit이 가능함. 1. Pycharm실행 2. VCS 메뉴 선택 3. Checkout from Version Control 선택 -> Git 선택 4. Gitlab 프로젝트 URL 복사 후 Git Repository URL에 붙여넣기 후 Test버튼 클릭 ( ID/PW는 gitlab 로그인 정보) 5. 나머지 정보는 두고 Clone 클릭 6. Yes 클릭 7. 기본 정보에 Add to currently opened projects 체크 후 OK 8. Pycharm 프로그램에 gitlab 프로젝트 생성 확인 후, 테스트로 소스파일을 열어 편집 9. 편집한파일 마우스 .. 2017. 9. 20.
반응형