전체 글
Nuxt.js 관련글
Nuxt.js 관련글
2019.07.17Nuxt.js Guidebook - Create Blog Service https://vue-nuxt.gitbook.io/nuxt/tutorials/making-blog Nuxt 블로그 블로그 서비스 제작 튜토리얼 vue-nuxt.gitbook.io 무료 Nuxt.js 강의 https://medium.com/vue-mastery/free-nuxt-js-tutorial-creating-an-app-1a531bc6045 Free Nuxt.js Tutorial — Vue Mastery Course In this Nuxt tutorial we’ll build an application together and learn about the folder structure that Nuxt.js gives you ou..
Deamn - Save me
Deamn - Save me
2019.07.16https://youtu.be/kvDlqwfp-8Y https://youtu.be/mW3Yw3D1AlQ
우효 (OOHYO) - 청춘
우효 (OOHYO) - 청춘
2019.06.05우효(OOHYO)의 청춘 Day버전과 Night 버전 2가지가 있다. 잔잔하고 느낌 좋은 곡 https://www.youtube.com/watch?v=qv4tslDFnK8&list=OLAK5uy_lxReu5xQqSx_ZAZ78bzHwK99qLayqadPU&index=25&t=0s https://www.youtube.com/watch?v=_Fenqp_0Y3E&list=OLAK5uy_lxReu5xQqSx_ZAZ78bzHwK99qLayqadPU&index=32&t=0s
Azure DevOps ignore node_modules - .tfignore Template
Azure DevOps ignore node_modules - .tfignore Template
2019.02.08.tfignore template Visual studio team explorer 명령 tf를 통해 소스 관리 시 제외, 또는 꼭 포함해야 할 파일을 설정할 때 아래와 같은 템플릿 파일을 사용한다. 적용 대상: VSTS, Azure DevOps, Visual Studio Online, On-premise TFS Server적용 방법: .tfignore 파일은 Repository 경로에 포함되어야 하며 상단에 있는 .tfignore 파일은 하위 폴더에도 적용된다. * 자세한 문법, 사용법은 .tfignore 설명서를 참고 : https://docs.microsoft.com/en-us/azure/devops/repos/tfvc/add-files-server?view=azdevops* 아래 .tfignore..
Electronjs Desktop App. Quick Start
Electronjs Desktop App. Quick Start
2019.01.31Electronjs Desktop App Quick Start ref. doc: https://electronjs.org/ Electron 을 통해 Desktop Application을 만들 수 있다. Requirements : Node.js, NPM, Git # 빠른 시작 저장소 Clone$ git clone https://github.com/electron/electron-quick-start # 저장소로 이동$ cd electron-quick-start # 종속성을 설치하고 실행하세요$ npm install && npm start 실행 결과로 프로그램이 실행되는 것을 확인할 수 있으며,아래와 같이 electron-packager로 exe 등을 만들 수 있다. # for use in npm scrip..
Node.js test on Heroku free hosting
Node.js test on Heroku free hosting
2019.01.30Heroku를 이용한 Node.js 사이트 생성 방법의 설명 ref. doc:: https://devcenter.heroku.com/articles/getting-started-with-nodejs#deploy-the-app heroku 사이트 생성 명령어 샘플소스 다운로드$ git clone https://github.com/heroku/node-js-getting-started.git 헤로쿠 생성$ heroku create > https://nameless-savannah-60379.herokuapp.com/ | https://git.heroku.com/nameless-savannah-60379.git 헤로쿠에 업로드$ git push heroku master 헤로쿠 사이트 1개 생성$ heroku ..
Vue.js Reference Sites
Vue.js Reference Sites
2019.01.29VUE.JS 입문서https://joshua1988.github.io/web-development/vuejs/vuejs-tutorial-for-beginner/ VUE.JS 공식 가이드 문서https://kr.vuejs.org/v2/guide/index.html VUE 한국 사용자 모임http://vuejs.kr/snippets/ VUE.JS 빠른시작 TODO 만들기https://blog.storyg.co/vue-js-posts/todos-tutorial VUE 무료교육https://laracasts.com/search?q=vue VUE Course 교육 (유료)https://vueschool.io
Node.js 기본 코드 2 TCP Server Client
Node.js 기본 코드 2 TCP Server Client
2018.12.06참고 URL : http://ourcstory.tistory.com/67?category=664896 TCP_SERVER.JS /** * http://usejsdoc.org/ */ // http://ourcstory.tistory.com/67?category=664896 var net = require('net'); var server = net.createServer(function(socket){ console.log(socket.address().address + " connected."); // client request socket.on('data', function(data) { console.log('rcv:'+data) }); // client disconnect socket.on('clo..
Node.js 기본 코드
Node.js 기본 코드
2018.12.04참고 블로그: - http://ourcstory.tistory.com/66?category=664896 var http = require('http');http.createServer(function handler(req, res) { res.writeHead(200, {'Content-Type': 'text/html'}); res.end('Hello World\n');}).listen(1337, '127.0.0.1');console.log('Server running at http://127.0.0.1:1337/'); /* OS 관련 테스트 */var os = require('os');console.log(os.hostname());console.log(os.type());console.log(os.p..
ODROID HC2 DOTNET Core 2.1.302 Install
ODROID HC2 DOTNET Core 2.1.302 Install
2018.07.11기존에 ODROID, RPI Linux 환경에서 DOTNET 개발이 어려웠지만,공식적으로 ARM CPU를 지원하기 시작했다. reference url : https://hub.docker.com/r/microsoft/dotnet/ 먼저 위 URL에서 본인이 구성하고자 하는 DOTNET 환경을 선택하고CPU 타입이 ARM이기 때문에 해당 카테고리 아래에서 골라주면 된다. Dockerfile에 명시된 내용을 참고해서ODROID HC2 ubuntu 18.4 환경에서 아래 명령어 실행 sudo apt-get update \ && sudo apt-get install -y --no-install-recommends \ libc6 \ libgcc1 \ libgssapi-krb5-2 \ libicu57 \ liblt..
블로그에 내가 살아온 인생의 타임라인 넣기 - Timeline JS3
블로그에 내가 살아온 인생의 타임라인 넣기 - Timeline JS3
2016.03.17Timeline을 만들어주는 사이트 이번에 소개드릴 사이트는 타임라인(Timeline)을 만들어주는 사이트입니다. 내 인생의 히스토리, 프로젝트 경험의 타임라인, 특정한 주제의 시간에 따른 경과 등을 표시하고 싶은데, 직접 제작하자니 너무 어렵고 쉽게 Timeline을 제공해주는 사이트를 찾아보니 바로 나오는군요! 아래 링크를 접속해서 안내해 드리는 내용을 따라서 하시면 쉽게 타임라인을 만들어서 내 블로그 등에 게시할 수 있습니다. 참고 주소: http://timeline.knightlab.com/ 회원 가입은 필요 없고, 'Make a Timeline' 버튼을 누르면 순서대로 따라서 진행하면 됩니다 단, Google 계정이 필요하고, Google Spreadsheet (인터넷 엑셀 프로그램)을 사용해야..
Visual Studio C# Interactive Coding window (REPL)
Visual Studio C# Interactive Coding window (REPL)
2016.02.25Visual Studio C# 반응형 코딩 명령 창 C# 언어는 컴파일 언어라서 무언가 계산되는 결과를 얻기 위해서 프로젝트를 만들고 코딩하고 그걸 컴파일하고 실행해서 봐야 결과를 얻을 수 있지요. 이러한 과정이 길고 복잡하기 때문에 간단한 코딩 테스트를 위해서는 조금 불편했습니다. C#언어를 인터프리터 언어처럼 한 줄씩 실행해서 빠르게 확인해보면 어떨까? 외국에서는 공식적인 명칭으로 REPL 이라는 단어를 쓰고 Read-eval-print loop 라고 표현하는군요. 아마도 읽는 대로 실행하고 표시한다고 해석하면 될 것 같습니다. 결국 반응형 인터프리터라는 소리네요. Visual Studio 2015에서 '보기>다른 창>C# Interactive' 를 누르시면 이러한 의문을 해결할 수 있습니다. 'C#..