Tools 9

Apple Silicon m1 맥북에서 Oracle Database 사용하기 mac pro

https://shanepark.tistory.com/400 [MacOS] M1 맥북 도커로 ORACLE DB 실행하기 Intro M1 맥북을 처음 구입 한 이후로 약 1년 반동안, 오라클 데이터베이스를 띄우기 위해 참 많은 노력을 했었습니다. 원래부터 Oracle이 MacOS를 정식 지원을 하지는 않았지만, 그나마 이전의 맥북에 shanepark.tistory.com https://www.saichoiblog.com/oraclesqldeveloper_hr/ Oracle SQL Developer 연습용DB hr 사용하기Saichoiblog Oracle의 Lock되어 있는 연습용DB인 hr을 활성화시키기 위해서 터미널(cmd)창을 열어준다. SQL Developer를 실행, 접속 + 버튼 클릭 새로만들기/..

Tools/MAC 2023.06.13

[MAC] 키보드 설정

커맨드키 -> control 키 왜 안되냐.. https://iboxcomein.com/switching-to-language-pinning-with-hammerspoons-on-mac/#ftoc-heading-1https://www.philgineer.com/2021/01/m1-hammerspoon.html 맥에서 특정 키를 무조건 한글 또는 무조건 영어로 한영 전환하기 - SoEasyGuide 윈도우에서는 오토핫키를 이용해 Ctrl + Spacebar 를 누르면 무조건 영어로, Alt + Spacebar 를 누르면 무조건 한글로 변환되도록 세팅해두고 사용을 하고 있습니다. Windows 와 macOS 를 동시에 사용하다 보 iboxcomein.com 한영키: caps lock -> 우측 cmd htt..

Tools/MAC 2023.04.23

[Github Page] Github 블로그로 갈까?

[GitHub] GitHub 블로그 만들기 (Ruby) https://4d-why.tistory.com/57 홈브루 : ios 패키지 매니저 https://brew.sh/index_ko Homebrew The Missing Package Manager for macOS (or Linux). brew.sh 깃허브 페이지 공식문서 https://docs.github.com/ko/pages 지킬 공식 사이트 https://jekyllrb-ko.github.io/ 지킬을 이용해서 로컬에 블로그 생성 -> 깃허브 페이지를 통해서 호스팅 사전 준비 1.루비 설치 2. 번들러 echo 'export PATH="$HOME/.gem/ruby/3.2.0/bin:$PATH"' >> ~/.bash_profile

Tools/Git 2023.04.20

[ Github] this path skips through empty directories

폴더 경로가 스킵되서 나옵니다 Git hub에 "Folder Jumping" 기능이라합니다. 어떤 기준으로 경로가 스킵되는 건가? 단일 하위 디렉토리를 가진 디렉토리를 건너뛰어 저장소의 내비게이션 효율을 크게 향상시킬 수 있습니다. 특히 Java 패키지/디렉토리 구조와 같이 여러 수준의 중첩된 디렉토리가 있는 경우에 유용합니다. 참고: https://github.com/gogs/gogs/issues/1149 Directory/Folder/Path jumping · Issue #1149 · gogs/gogs To quickly navigate a repository it would be nice to be able to skip directories with only a single subdirectory..

Tools/Git 2023.04.19

Git

git 3대 목적 버전관리 백업 협업 GIT2 - CLI 버전관리 working tree : 파일을 수정하는 곳 Staging Area : 버전을 만들려고 하는 파일들 Repository 저장소 : 버전이 저장되는 곳 git init : initialize repository .git: git repository git status: working tree status git add: add to staging area git commit: create version git commit -m “Message” git commit -am “Message” git log: show version git log —stat git diff: show shanges git log-p git checkout git..

Tools/Git 2023.03.13