본문 바로가기
반응형

분류 전체보기126

[슬랙 Slack] 브라우저 슬랙에서 데스크톱 슬랙으로 열기 1. 좌측 워크스페이스명 클릭 2. Open the Slack App 클릭 -> 데스크톱 슬랙 열림 2020. 3. 7.
[슬랙 Slack] Windows10 슬랙 설치 및 workspace 추가 방법 1. 슬랙 다운로드 https://slack.com/intl/en-kr/downloads/windows Windows | Downloads Download Slack for free for mobile devices and desktop. Keep up with the conversation with our apps for iOS, Android, Mac, Windows and Linux. slack.com 2. 슬랙 설치 및 실행 3. Sign in 버튼 클릭 4. workspace 입력 5. email 주소 및 비밀번호 입력하여 로그인 6. 알람창이 뜨면 Slack 열기 클릭 2020. 3. 7.
[JAVA] Windows10 / Open JDK 설치 + 본문에 사용된 openJDK를 설치할 경우 cacert가 비어있으므로 오라클JDK나 다른JDK의 정상적인 cacert 파일로 바꿔줘야함을 안내드립니다. + 관련 오류 해결 방법 https://allonsyit.tistory.com/13 [Maven 에러] maven warning failed to retrieve plugin descriptor -> 해결 openJDK cacert 인증서 문제 [+덤 SSLException] 굉장굉장 험난한 모험을 완주하고 나 같은 괴로움을 겪을 누군가를 위하여 기록을 남긴다 오늘 메이븐 프로젝트 clean과 install이 되지 않는 고통을 겪음.. 아래와 같은 WARNING이 미친듯이 뜨면서 ERROR가 남 [W.. allonsyit.tistory.com 1. o.. 2020. 3. 7.
[픽픽 picpick] 화면 캡처, 이미지 편집 프로그램 (7년 사용 후기) / 설치방법, 단축키 설정 방법, 꿀팁 https://picpick.app/ko/ 픽픽(PicPick) - 올인원 그래픽 디자인 도구 (화면 캡처, 이미지 편집, 색상 추출, 눈금자, 각도기, 십자선 등) 픽픽(PicPick) - 올인원 그래픽 디자인 도구 (화면 캡처, 이미지 편집, 색상 추출, 눈금자, 각도기, 십자선 등) picpick.app 1. 픽픽 7년 사용 후기 - 단축키를 직접 설정하여 내 손에 익게 캡처를 할 수 있어서 매우 편리 - 영역을 지정하여 캡처, 자동 스크롤 캡처를 많이 사용 / 자동 스크롤 캡처를 사용하면 긴화면도 캡처 가능해서 좋음 - 하이라이트, 도형, 텍스트, 번호 도형 등의 기능으로 캡처한 이미지 편집도 용이 - 3개월만 사용해도 그 이후로는 무조건 픽픽만 찾게됨 (너무 편하다) 2. 픽픽 설치 방법 위 이.. 2020. 3. 7.
아스키 코드 ASCII Code 2진수/8진수/16진수/char 출력 public class App { public static void main( String[] args ) { for(int i = 0; i < 128; i++) { int ascii = i; System.out.println(ascii); //10진수 System.out.println(Integer.toBinaryString(ascii)); //2진수 System.out.println(Integer.toOctalString(ascii)); //8진수 System.out.println(Integer.toHexString(ascii)); //16진수 System.out.println((char)ascii); // character } } } 2019. 8. 23.
VSCode 설치 https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com 1. VSCode 다운로드 2. 설치 진행 :) 2019. 8. 22.