Visual Studio Code 또는 Cursor IDE에서 현재 디렉토리를 터미널에서 열기 settings.json 파일에서 아래 코드를 추가한다."terminal.integrated.cwd": "${fileDirname}", Shift+cmd + p > 새 터미널 열기 를 하면 현재 보고 있는 파일의 디렉토리가 터미널에서 열린다. Tips 2024.08.28
mac에서 7zip으로 압축하기 https://www.7-zip.org/download.html Download Download .7z Any / x86 / x64 LZMA SDK: (C, C++, C#, Java) www.7-zip.org 아래와 같이 하면 압축할 디렉토리를 압축한파일명.7zip으로 압축할 수 있습니다. 7z a 압축한파일명.7zip ./압축할디렉토리 Tips 2022.10.31
맥북에서 특정 프로그램이 화면 밖으로 숨었을 때 해결 방법 가끔 특정 프로그램을 활성화 해도 화면 밖에서 나타나지 않을 때가 있다. 이럴 때는 해당 프로그램을 실행하고 상단에 창 또는 Window를 선택 후 Zoom을 클릭하면 된다. Tips 2021.02.23
udemy에서 한글 자막 보기 1. 대본 버튼 클릭 2. 대본에서 한글로 번역 3. F12를 클릭하거나, 우클릭 후 검사를 눌러서 개발자도구를 연다. 4. console 창에 아래 코드를 입력한다. if(typeof window.i!=='undefined'){clearInterval(window.i)}else{let lastText='';function check(){let toEl=$('.well--container--2edq4 span');let fromEl=$('p[data-purpose="transcript-cue-active"] span');let currentText=fromEl.html();if(lastText!==currentText){toEl.html(currentText)}lastText=fromEl.html()}w.. Tips 2021.02.14