분류 전체보기 1348

[Telegram] Bot Token 및 Chat Id 얻기

출처: https://gabrielkim.tistory.com/entry/Telegram-Bot-Token-%EB%B0%8F-Chat-Id-%EC%96%BB%EA%B8%B0 텔레그램을 이용하여 홈 서버나 NAS에서 메시지를 받을 수 있는데 이 때 필요한 것이 Bot Token 및 Chat Id 이다. Telegram API 를 이용하여 Bot Token(발신인) 이 Chat Id(수신인) 으로 메시지를 보내는 것이다. 우선 메시지봇을 만들기 위해 웹브라우저에서 Telegram Web-version(https://web.telegram.org) 으로 접속 후 botfather 를 검색한다. @BotFather 를 선택하면 우측 대화창 부분에 아래와 같이 대화를 시작할 수 있는 창이 보이는데 여기서 STAR..

Programming 2020.01.11

Visual Studio 2017 오프라인 도움말 설치 방법

출처: https://studyc.tistory.com/24 비주얼 스튜디오 2017 설치 방법 이번에 마이크로소프트에서 비주얼 스튜디오 2017이 출시되었습니다. 사실 C언어 부분은 2015와 달라진 부분이 없기 때문에 앞으로의 강좌도 당분간은 2015로 하게 될 테지만, 혹시나 최신 비주얼 스튜디오를 설치.. studyc.tistory.com 2. 도움말 설치 이번에는 도움말을 설치해봅시다. 위의 메뉴에서 '도움말' → '도움말 기본 설정 지정' → '도움말 뷰어에서 시작' 을 눌러 체크상태가 되게 합니다. 그러면 다음과 같이 콘텐츠를 다운로드 하겠냐고 물어봅니다. '예' 버튼을 누릅니다. 기다리면 다음과 같은 창이 나오는데, 중간쯤의 'Visual C++'과 'Visual C++ 영어' 부분 옆에 ..

Programming 2019.12.19

Microsoft Visual Studio Express 버전별 등록 방법 정리

Visual Studio Express 2005: 등록 필요 없음 2008, 2010, 2012: 등록 키 필요 (키만 있으면 오프라인 등록 가능) 2008 All-In-One ISO (916 MB): 등록 키 필요 없음 2013, 2015, 2017, 2019: Microsoft 계정으로 등록 필요 (인터넷 연결 필요) Visual Studio Express 2012: (ISO File) Download Link : Visual Studio Express 2012 Offline Installer (~608 MB) Product Key: MMVJ9-FKY74-W449Y-RB79G-8GJGJ - See more at: http://beyoens.blogspot.com/2012/11/free-visual-s..

Programming 2019.12.19

Haskell은 별로다.

random number를 생성시키기 위한 System.Random이 기본으로 포함되지 않게 됨. 실용성 꽝 https://stackoverflow.com/a/7265610 The System.Random module belongs to the random package, which is no longer included with GHC as of version 7.2.1. 해결책: Haskell Platform Full Version을 설치하면 된다. core에는 random 패키지 없음. mutable IO array인 Data.Array.IO도 표준은 아님. 표준만으로는 실용성에 문제가 있다.

Programming 2019.10.19

[Python] setup.py 를 이용하여 모듈 설치

http://egloos.zum.com/mcchae/v/10546273 만약 설치가 필요한 모듈이 있고, 그 디렉터리 내에 setup.py 파일을 만들어 다음과 같이 지정한다. from distutils.core import setup py_modules = [ 'cqattr', 'cqcompile', 'cqdaemon', 'cqdatetime', 'cqdebug', 'cqexception', 'cqexpect', 'cqlog', ] print 'BillEye-Agent modules\n%s' % py_modules setup (name = 'BillEye-Agent', version = '1.0', description = 'This is a BillEye Agent services', py_modul..

Programming 2019.08.08