본문 바로가기

분류 전체보기473

TELEGRAM BOT 만들기 TELEGRAM BOT 만들기 ========== ========== ========== ========== ========== ========== # 환경설정? conda create --name softm python=3 activate softm conda list pip install python-telegram-bot conda list ========== ========== ========== ========== ========== ========== python으로 telegram bot 활용하기 - 1 기본 설정편 https://blog.psangwoo.com/coding/2016/12/08/python-telegram-bot-1.html TELEGRAM BOT 만들기 https://kim.. 2019. 1. 30.
이더리움을통한블록체인개발기본 이더리움을통한블록체인개발기본 AGENDA 이더리움 아키텍처 REMIX IDE Solidity란? 개발에 필요한 사이트 소개 (Solidity 매뉴얼, OpenZepplin, 기술 블로그 post 등) MetaMask 소개 및 설치 REMIX IDE에서 Token Contract 배포 (DoosanPreVisionToken 만들기: https://ropsten.etherscan.io/token/0xe2269f655e0ab8ea3d8b56d4e8c418d61bca266f#balances) Q&A REFERENCES Solidity development guide 블록체인 플랫폼 정리 Openzeppelin 웹사이트 (Open source smart contract code) Ethereum 토큰 발행 코드 .. 2019. 1. 30.
Selenium 을 이용한 Web 어플리케이션 테스트 자동화 Selenium 을 이용한 Web 어플리케이션 테스트 자동화 http://tech.whatap.io/2015/10/02/automation-with-selenium/ https://beomi.github.io/2017/02/27/HowToMakeWebCrawler-With-Selenium/ seleniumhq.org : https://www.seleniumhq.org/download/ # selenium : http://tech.whatap.io/2015/10/02/automation-with-selenium/ # JUnit4 vs TestNG : Junit말고 TestNG Mercury HP > QTP >> 로드러너 #see also : phantomjs 헤드리스브라우져, 화면캡쳐 : http://ph.. 2019. 1. 30.
Javascript Async, Await 심화 Javascript Async, Await 심화 ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== // wait ms milliseconds function wait(ms) { return new Promise(r => setTimeout(r, ms)); } async function hello() { await wait(1500); return 'world'; } hello() .then(function(r,j){ console.info(r,j); }) .catch(function(e){ console.info(e); }); ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== // wait ms millise.. 2019. 1. 30.
gen coding gen Codinghtml:5 div>div#page>p.title+p|cfl:l|fc p.name-$*10table+td[colspan$*2]*3colspan$*2 p.name-$*3 2019. 1. 30.
Javascript arrow function expression Javascript arrow function expression ■ 애로우_펑션 : https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Functions/%EC%95%A0%EB%A1%9C%EC%9A%B0_%ED%8E%91%EC%85%98 # 화살표 함수 표현(arrow function expression) function 표현에 비해 구문이 짧고 자신의 this, arguments, super 또는 new.target을 바인딩 하지 않습니다. 화살표 함수는 항상 익명입니다. 이 함수 표현은 메소드 함수가 아닌 곳에 가장 적당합니다. 그래서 생성자로서 사용할 수 없습니다. ■ 기본문법 (param1, param2, …, paramN) => { .. 2019. 1. 30.