재활용용(6)
-
scrollLockPusher - mouseJiggler 대용 화면보호방지기(POWERSHELL)
scrollLockPusher - mouseJiggler 대용 화면보호방지기(POWERSHELL) 검색 동기 이전 근무지에는 mouseJiggler같은 화면보호기를 방지하는 프로그램이 있었다. 원리는 마우스를 살짝살짝 움직여줘서 화면보호기 뜨기까지의 시간을 계속 초기화해주는 것이다. mouseJiggler는 인터넷에서 쉽게 구할 수 있었으나, 안타깝게도 지금의 업무환경은 인터넷 접속이 제한되고, 파일이동이 어렵기 때문에 프로그램을 대신할수 있는 스크립트를 찾게 되었다. 검색 과정 나와같은 생각을 하는 사람이 많았고, 스크립트는 널려있었기에 제작과정이 아닌 검색 과정이다. powershell은 window10 이면 기본적으로 구비되어있기에 powershell script를 찾게 되었다. 처음에는 비슷하게 ..
2022.10.18 -
[javascript] code snippet 2
Tr event에서 선택한 td의 인덱스를 가져오고자 할 때 // double click $('#tableElement tbody').on('dblclick', 'tr', function (e) { var cellindex = e.target.cellIndex; // exclude delete/ move cell if(cellindex != 5){ var data = new Array(); var td = $(this).children(); td.each(function(i){ data.push(td.eq(i).text()); }); displaySomething(this.rowIndex,data,'##'); } }); 버튼을 누르면 refresh가 될 때 버튼을 누르면 의도와는 다르게 새로고침이 될 때..
2021.10.04 -
[Javascript] 즐겨 쓰는 code snippet
[Javascript] table data -> JSON 함수 function tableToJson(table) { // 변환 함수 var data = []; var headers = []; for(var i=0; i
2021.09.28 -
mysql + dbeaver 연결
mysql 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 mysql> create database hr default CHARACTER SET UTF8; Query OK, 1 row affected (0.00 sec) mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | hr | | mysql | | performance_schema | | sys | +-------------------..
2020.07.22 -
Dockerfile 이용한 centos+mongodb 설치, centos+mariadb 설치
1. centos + mongodb 설치 gist centos mongodb docker 로 검색 gist.github.com/jayarampradhan/6cdb266b4d75db4413c2 MongoDB Docker Container (Centos 7, Mongo DB 3.x) MongoDB Docker Container (Centos 7, Mongo DB 3.x). GitHub Gist: instantly share code, notes, and snippets. gist.github.com 폴더를 따로 만든다 폴더에 Dockerfile 을 만들고 링크의 내용을 복사한다. link의 instruction 을 따라한다. Step 1: Create a directory mongodb mkdir -p ~/..
2020.07.17 -
vs code python build 설정(tasks.json)
vs code 에서 *.py 작성 build : ctrl + shift + b tasks.json 설정이 안된경우. configure~ -> create tasks.json -> others 를 차례로 선택 task.json에 복붙(python 용) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "Python Run", "type": "shell", "command": "p..
2020.07.12