윈도우에서 픽픽을 사용하다가 이직을 하게되어 맥북에 적응중인데 캡쳐 프로그램인 픽픽은 맥북에서 사용못하는거 같아서 대체할게 뭐가 있을까 찾아보다가 Monosnap 이라는 무료 어플이 존재 하는걸 알게되어서 설치를 해보았습니다! 일단 앱스토어로 가서 monosnap을 검색해서 받아줍니다! 설치하면 자동을 보안 허용할수 있는데로 들어가져서 좌측하단에 자물쇠를 풀어주시고 허용을 해줍니다. 그러면 위와 같이 상단에서 바로 사용가능 합니다. 여기서 Preferences... 으로 들어가서 HotKeys로 들어가시면 단축키를 설정할 수 있습니다.
Java에서 파일 생성을 하는 방법 1. FileWriter를 이용한 파일 생성 import java.io.*; public class test { public static void main(String[] args) { String txt = "테스트입니다!!" ; String fileName = "/Users/hyunchang/Downloads/logTestFile.log" ; try{ // 파일 객체 생성 File file = new File(fileName) ; // true 지정시 파일의 기존 내용에 이어서 작성 FileWriter fw = new FileWriter(file, true) ; // 파일안에 문자열 쓰기 fw.write(txt); fw.flush(); // 객체 닫기 fw.clos..
vscode를 설치해서 일단 환경설정들은 한 후에 hellow world 를 찍어봣는데 the public type hello must be defined in its own file 이런 에러가 발생했습니다. 검색을 좀 해보니 파일명과 작성한 클래스명이 달라서 이런 오류가 뜬다고 하여 작성한 코드에서 hello를 test로 수정해서 다시 실행! 터미널에 Hello world가 잘 찍히는 것을 확인 할 수 있습니다.
이직해서 맥북에서 서버개발을 해야해서 개발툴을 찾아보다가 계속쓰던 이클립스는 뭔가 안땡기고 vscode 로 해보기로 정해서 다운로드! https://code.visualstudio.com/download Download Visual Studio Code - Mac, Linux, Windows Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications...
https://www.libreoffice.org/donate/dl/mac-x86_64/7.2.1/ko/LibreOffice_7.2.1_MacOS_x86-64.dmg Donate to LibreOffice | LibreOffice - Free Office Suite - Based on OpenOffice - Compatible with Microsoft Follow Us Mastodon www.libreoffice.org
드라이버가 SSL(Secure Sockets Layer) 암호화를 사용하여 SQL Sever로 보안 연결을 설정할 수 없습니다. 오류: "The server selected protocol version TLS10 is not accepted by client preferences [TLS13, TLS12]". ClientConnectionId:e05a3a2a-242c-4ea5-9de4-1a17374ba1bc The server selected protocol version TLS10 is not accepted by client preferences [TLS13, TLS12] find / -name "java.security" 로 검색하여 java.security에 들어가서 java.security 에..