일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- web.xml
- Mac
- IntelliJ
- JavaScript
- find
- Windows
- ssh
- import
- bash
- 단축키
- Windows 10
- netsh
- vscode
- Source
- maVen
- context
- VirtualBox
- port
- 줄바꿈 문자
- lsof
- xargs
- Quartz
- tomcat
- profile
- resource
- Eclipse
- 네트워크
- grep
- plugin
- GIT
- Today
- Total
목록2024/10 (36)
develog
Explorer Exclude 플러그인을 설치한다Explorer 에서 파일을 우클릭하고 Add to Hidden Items 을 클릭해서 파일을 추가한다Hidden Items 에 표시된다
# 2024-10-01 일 포함git log --since='2024-10-01' --name-only --pretty=format: | sort | uniq
설치된 JDK 찾기/usr/libexec/java_home -Vbrew list | grep 'jdk'macOS 에서 JDK 설치 경로# 시스템 경로/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/bin/java -version# 사용자 경로/Users//Library/Java/JavaVirtualMachines/temurin-17.0.9/Contents/Home/bin/java -version# homebrew 경로/opt/homebrew/Cellar/openjdk@17/17.0.12/libexec/openjdk.jdk/Contents/Home/bin/java -versionJDK 삭제하기# 해당 경로에 들어가서 삭제할 버전의 파일과 ..
jshell 실행하기$ jshell| Welcome to JShell -- Version 21.0.1| For an introduction type: /help intro jshell 로 java 코드 실행하기jshell> 10 + 20$4 ==> 30jshell> System.out.println("hello jshell");hello jshelljshell> String str = "hello, "str ==> "hello, "jshell> str + "java"$9 ==> "hello, java" jshell 로 Test.java 파일 실행하기# Test.java 파일을 불러온다jshell> /open ~/jshell-test/Test.java# main 함수를 실행한다jshell> Test.m..
Settings (command + ,) 를 열고 java.configuration.runtimes 를 검색한다Edit in settings.json 을 클릭한다 "java.configuration.runtimes" 에 jdk 를 추가한다 macOS 에서 JDK 설치 경로* /Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/bin/java -version* /opt/homebrew/Cellar/openjdk@17/17.0.12/libexec/openjdk.jdk/Contents/Home/bin/java -version F5 를 누르고 Java+ 로 실행한다
https://developer.mozilla.org/en-US/docs/Web/API/Element/getBoundingClientRect Element: getBoundingClientRect() method - Web APIs | MDNThe Element.getBoundingClientRect() method returns a DOMRect object providing information about the size of an element and its position relative to the viewport.developer.mozilla.org