Microsoft/vscode2019. 8. 8. 10:16

visual studio 하듯 하면 되네?

f9로 break point 설정하고

f5로 디버깅 모드 시작

 

launch.json 에서 아래와 같이 args를 추가하고 array 해주면 인자가 입력된다.

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "Launch Program",
            "program": "${workspaceFolder}\\test.js",
            "args": ["input.txt","output.txt"]
        }
    ]
}

 

[링크 : https://nodejs.org/ko/docs/guides/debugging-getting-started/]

[링크 : https://nerv2000.tistory.com/105]

[링크 : https://code.visualstudio.com/docs/nodejs/nodejs-debugging]

[링크 : https://stackoverflow.com/questions/29968919/how-to-start-nodejs-with-custom-params-from-vscode]

Posted by 구차니
Microsoft/mssql2019. 7. 25. 18:12

-0-??? 없는게 더 이상한거였나?

 

[링크 : https://docs.microsoft.com/ko-kr/sql/relational-databases/import-export/import-flat-file-wizard?view=sql-server-2017]

[링크 : https://tshooter.tistory.com/135]

 

단 새 테이블로만 가능

 

새거에 넣고 복사해냐하나?

[링크 : http:// https://121202.tistory.com/m/107]

'Microsoft > mssql' 카테고리의 다른 글

linux mssql odbc 예제  (0) 2021.10.22
mssql on docker  (0) 2021.10.22
mssql UDL 파일  (0) 2021.10.22
mssql sqlcmd  (4) 2019.05.22
Posted by 구차니
Microsoft/mssql2019. 5. 22. 15:32

show databases;

select name from sys.databases
go

[링크 : https://stackoverflow.com/questions/2087902/sqlserver-08-query-to-list-all-databases-in-an-instance]

 

 

use table_name

use table_name;

 

show tables;

SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES

[링크 : https://chartio.com/resources/tutorials/sql-server-list-tables-how-to-show-all-tables/]

'Microsoft > mssql' 카테고리의 다른 글

linux mssql odbc 예제  (0) 2021.10.22
mssql on docker  (0) 2021.10.22
mssql UDL 파일  (0) 2021.10.22
mssql import from csv  (0) 2019.07.25
Posted by 구차니
Microsoft/vscode2019. 5. 4. 00:53

기본으로 설치하니 curl이 없어서 일단 깔고 해줘야 하는 듯

wget 으로 하면 파일로 저장해서 그런가 정상적으로 되지 않는다.

sudo apt-get install curl
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
sudo apt-get install apt-transport-https
sudo apt-get update
sudo apt-get install code

[링크 : https://code.visualstudio.com/docs/setup/linux]

[링크 : https://webnautes.tistory.com/1197]

'Microsoft > vscode' 카테고리의 다른 글

vscode에서 *로 검색하기 (대신 정규표현식)  (0) 2019.11.09
vscode node.js 디버깅  (0) 2019.08.08
vscode live share?  (0) 2019.01.03
vscode plugin - ssh fs  (0) 2018.11.27
vscode 이전/다음 단축키  (0) 2018.11.13
Posted by 구차니
Microsoft/Windows2019. 3. 26. 19:18

키보드에 보면

인터넷, 이메일 이런거 할당된 녀석들이 있는데 이걸 다른 기능으로 연결하는 방법


[링크 : https://h30434.www3.hp.com/t5/.../How-do-I-customize-the-Action-Keys/td-p/379207]

Posted by 구차니
Microsoft/Windows2019. 3. 26. 15:02

SSD가 120기가 밖에 안되는데 냠냠 하고 있길래 낼름 삭제

(1.56기가 짜리 파일이라 용량이 아깝.. 메모리가 4기가 인데 왜 이거 밖에 안되지?)


관리자 권한의 cmd에서

powercfg hibernate off 

[링크 : https://extrememanual.net/12836]

Posted by 구차니
Microsoft/Windows2019. 3. 26. 13:41

윈10 작업관리자에서 edge 옆에 녹색 잎이 있고 가져다 대면 UWP 어쩌구 나오길래 검색


간단하게 요약하자면... 윈도우 스토어용 앱이고

모바일이나 PC등에서 같이 쓸 수 있다 라는 걸려나?


[링크 : http://openperl.blog.me/221442502449]

[링크 : https://docs.microsoft.com/ko-kr/windows/uwp/get-started/universal-application-platform-guide]


리버싱

[링크 : https://nanite.tistory.com/92]

Posted by 구차니
Microsoft/Windows2019. 3. 26. 09:08

win 7~ 8.1 까지는 있는데 10은 잘 모르겠네?

그리고 과거에는 화면 끝으로 가면 이동하면서 쓰던 그런류의 가상 해상도가

윈도우에서 자체적으로 지원했던거 같은데.. 이제 없나?  ㅠㅠ


[링크 : https://appuals.com/how-to-create-custom-resolutions-on-windows-7-8-or-10/ ]

[링크 : https://superuser.com/questions/50501/change-screen-resolution-to-exceed-the-maximum-on-windows-7 ]

[링크 : https://www.youtube.com/watch?v=U3ATW_CkfcY]

[링크 : https://windowsreport.com/low-resolution-windows-10/]

[링크 : https://www.lifewire.com/how-to-change-your-netbooks-screen-resolution-2377863]

Posted by 구차니
Microsoft/Windows2019. 1. 15. 10:24

지인이 준 키워드

먼가 했더니 윈10에 우분투 이런거 native하게 돌리는거 명칭


[링크 : http://webdir.tistory.com/541]

[링크 : https://docs.microsoft.com/ko-kr/windows/wsl/install-manual]

[링크 : https://docs.microsoft.com/ko-kr/windows/wsl/install-win10]

[링크 : https://en.wikipedia.org/wiki/Windows_Subsystem_for_Linux]

Posted by 구차니
Microsoft/Windows2019. 1. 12. 18:47

explorer.exe는 구동하는데 바탕화면이 안뜨던데

걍 업데이트 진행하니 문제없이 켜진다.


도대체 머가 문제였을까..


일단 작업관리자는 뜨니까 msconfig 실행해서 안전모드 들어가니 정상 작동한게 클려나

아니면 리부팅을 해주면서 업데이트 설치하게 해줘서 된거였을까 조금 헷갈리네..

Posted by 구차니