etc/devTools 6

notion api / start & create page

Introductionnotion api를 사용하는걸 araboza    # notion 개발자 사이트 Notion API developers.notion.com   # 먼저 integration을 만들라고 한다. Build your first integrationMake your first request to the Notion API.developers.notion.com여기에 자세히 적혀있음 https://www.notion.com/my-integrations Your connected workspace for wiki, docs & projects | NotionA new tool that blends your everyday work apps into one. It's the all-in-one..

etc/devTools 2024.09.08

postman / api test tool

Introduction난 지금까지 postman을 사용해본적이 없다 ㅠ사실 존재도 몰랐다. 이게 독학의 한계인가 싶은데 훈련소에서 사람들한테 들어서 알게됐다.지금까지 로컬이든 뭐든 죄다 코드로 짜서 api요청을 보냈었음..api테스트 하는데 편리한 도구인 postman사용법을 간단하게 소개해보려고 한다. # 간단한 api test 서버 만들기nodejs로 간단한 api서버를 만들어볼거다.vs코드를 키고 폴더 하나 만들고npm initnpm i express 그리고 server.js파일을 하나 만들어주고 아래 코드를 복붙하샘const express = require("express");const app = express();const port = 3000;// Middleware to parse JSON ..

etc/devTools 2024.09.08

vs코드 에디터와 터미널 focus 변경 단축키 만들기

#개요로컬서버 돌릴때랑 vs코드작성할때 단축키 만드는 방법이다.매번 코드 쓰고 터미널 명령어 칠려고 할때 마우스로 클릭할 필요없이단축키로 이동하는 방법이다.  # 방법cntl + shift + p vs코드에서 저거 치면저 창뜨는데 거기에 keyboard shortcuts검색여러개 뜨는데 저 preferences: Open Keyboard Shortcuts들어가샘 JSON파일이 뜨는데, { "key": "ctrl+;", "command": "terminal.focus", "when": "editorFocus" }, { "key": "ctrl+;", "command": "workbench.action.focusActiveEditorGroup", "when": "termi..

etc/devTools 2024.09.08

moba x term 아래로 생겨버리는 창 없애기

이렇게 화면 1/3을 잡아먹는 창이 뜨고는 한다. 뭐 필요해서 쓴다면야 유용하겠지만 저렇게 화면에 고정되버리면 여간 짜증나는게 아니다. 가끔 쓰다가 보면 계속 생겨서 없앨때 moba x term을 껐다 켰는데 그럼 또 다시 키고 ssh 연결하고.. 복잡하다. 구글링을 해봤지만 이외로 해결방법은 등잔밑에 있었다. cntl + alt + m을 누르란다.. ㅋㅋㅋㅋㅋㅋㅋㅋㅋ

etc/devTools 2023.11.26

telegram 메세지 api이용하기.

# telegram botfather 텔레그램을 깔고 botfather을 검색한다. 그 후, /newbot 명령어를 채팅치면 봇이름과 사용자이름을 지을수 있다. 마지막으로 토큰값을 받는데, 이 토큰값이 있어야 봇에대해 코딩이 가능하다. # node환경에서 사용. 먼저 npm i node-telegram-bot-api명령으로 모듈을 깔아준다. 그다음 아래 코드를 복붙하샘. const TelegramBot = require("node-telegram-bot-api"); const token = "토큰값"; const bot = new TelegramBot(token, { polling: true }); bot.on("message", (msg) => { const chatId = msg.chat.id; co..

etc/devTools 2023.03.31