[참고] 구글 앱스 스크립트[참고] 구글 앱스 스크립트

Posted at 2020. 9. 10. 14:33 | Posted in 카테고리 없음
반응형






구글 앱스 스크립트의 활용이 중요시 되고 있다.


잘 정리된 블로그가 있어서


나중 학습을 위해 정리한다.





https://smartagent.blog/2018/05/18/appsscript01/

https://smartagent.blog/2018/06/22/appsscript02/

https://smartagent.blog/2018/07/06/appsscript03/

https://smartagent.blog/2018/07/16/appsscript04/

https://smartagent.blog/2019/04/13/appsscript05/

https://smartagent.blog/2019/04/20/appsscript06/

https://smartagent.blog/2020/01/22/appsscript07/

https://smartagent.blog/2020/04/21/appsscript08/





반응형
//

[JavaScript][JavaScript]

Posted at 2020. 9. 9. 18:08 | Posted in JavaScript & jQuery/JavaScript
반응형



참고#01 : https://kutar37.tistory.com/232

참고#02 : https://kutar37.tistory.com/233

참고#03 : https://coderwall.com/p/pluhsg/google-spreadsheet-json-api-sql-filtering








 

        /*
        jQuery.ajax({
              url:"https://docs.google.com/spreadsheets/d/1aYCyxPrLVA5gUFpKntNyDYZ0Bj0WOFj3fr6z_m0hq44/gviz/tq?tq=SELECT+A%2cB"
            , type:"GET"
            , dataType: "html"
            , success:function( text ) {


                // alert( text.length );   // 문자열 길이
                // console.log( text.substring(47, (text.length - 2)) );

                // @see 불필요한 데이터를 잘라내고 JSON 형태로 다시 만든다.
                const sheetJson = JSON.parse(text.substring(47, (text.length - 2)));

                console.log( sheetJson.table.rows[0].c[0].v );    // 현재월
                console.log( sheetJson.table.rows[0].c[1].v );    // 현재월의 휴장일

                console.log( sheetJson.table.rows[1].c[0].v );    // 다음월
                console.log( sheetJson.table.rows[1].c[1].v );    // 다음월의 휴장일


                console.log("-----------------------------------");
            }
        });
        */


반응형
//

[Ubuntu] Ubuntu에 Chromium 브라우저 설치하기[Ubuntu] Ubuntu에 Chromium 브라우저 설치하기

Posted at 2020. 9. 9. 12:51 | Posted in Linux/Ubuntu
반응형





■ 우분투에 크로미움 브라우저 설치하기




 $ sudo apt-get install chromium-brower








반응형
//

[JavaScript] 자바스크립트로 HWP 파일 제어[JavaScript] 자바스크립트로 HWP 파일 제어

Posted at 2020. 9. 7. 16:31 | Posted in JavaScript & jQuery/JavaScript
반응형






GitHub : https://github.com/hahnlee/hwp.js

node.js : https://hanlee.io/hwp.js/



관련 내용이 있어서 북마크 해둔다.






반응형
//