어떻게?

    자바스크립트로 Google Sheet API와 연결하기

    자바스크립트로 Google Sheet API와 연결하기

    필요한 도구 - Visaul Studio Code - NodeJS - Google Cloud Platform - Google Drive 1. NodeJS 라이브러리 소개 https://www.npmjs.com/package/google-spreadsheet google-spreadsheet Google Sheets API (v4) -- simple interface to read/write data and manage sheets. Latest version: 3.3.0, last published: 2 months ago. Start using google-spreadsheet in your project by running `npm i google-spreadsheet`. There are 307 o..

    프론트엔드 스킬 연습 사이트 모음

    프론트엔드 스킬 연습 사이트 모음

    Google 검색을 통해 학습을 할 수 있는 사이트는 많지만 학습할 환경을 제공해주거나 문제를 제공하는 사이트들은 검색에 노출이 적습니다. 그래서 모아봤습니다. 온라인 웹 IDE 설정하지않고 바로 사용할 수 있는 IDE사이트들 입니다. https://codesandbox.io/ CodeSandbox: Online Code Editor and IDE for Rapid Web Development Optimized for frameworks Custom environments built specifically for React, Vue, Angular, and many more. codesandbox.io https://stackblitz.com/ StackBlitz | Instant Dev Environm..

    RPI Mosqquito 설치 (2021.10.19) (외부접속 안될시 필참!)

    RPI Mosqquito 설치 (2021.10.19) (외부접속 안될시 필참!)

    Mosquitto 홈페이지 접속 (최신버젼 설치) https://mosquitto.org/ Eclipse Mosquitto Version 2.0 has been released! The full details are available on the blog post. Eclipse Mosquitto is an open source (EPL/EDL licensed) message broker that implements the MQTT protocol ve mosquitto.org 상단 네비게이션에 다운로드 이다... 스크롤을 내리다보면 접속해서 순번대로 설치해준다 분명 검색하고 찾아보는 초심자 일텐데 그럼 이제 MQTT 브로커를 작동시켜 테스트를 할 것이다. DIY메카솔루션 오픈랩 에서 https://bl..

    클래스

    자바(JAVA)의 클래스 생성 class 클래스명{ 클래스명(변수){ } } class Person{ String name; int age; Person(String name, int age){ this.name = name; this.age = age; } Person(String name){ this.name = name } } 코틀린(Kotlin)의 클래스 생성 class 클래스명 constructor(변수){} 또는 class 클래스명(변수){} class Person constructor(val name:String, val age:Int){// 첫번째 constructor은 생략가능 constructor(name: String) : This(name, 0)// 두번째 constructor은 생..