| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- Source
- 설정
- AJAX
- PostgreSQL
- Spring Boot
- ubuntu
- JavaScript
- 오픈소스
- Core Java
- SpringBoot
- myBatis
- error
- MSSQL
- jpa
- git
- 문서
- oracle
- Python
- spring
- Tomcat
- JDBC
- STS
- IntelliJ
- Eclipse
- Exception
- MySQL
- Thymeleaf
- Open Source
- Docker
- maven
- Today
- Total
목록Utility (3)
헤르메스 LIFE
맥북을 사용하면서 Windows 사용할 때 사용했던 기능들이 아쉽네요.대체할 수 있는 프로그램들을 찾아봤습니다.EditorVSCode ( https://code.visualstudio.com/download )- 유명한 Editor- 한글지원Zed ( https://zed.dev/ )ImagePhotoScape X ( http://x.photoscape.org/ )- 상용으로 사용이 가능하지만, 기본기능만으로 사용할만합니다.- 한글지원ExplorerCommander One ( https://apps.apple.com/kr/app/commander-one-file-manager/id1035236694?mt=12 )- 상용으로 사용이 가능하지만, 기본기능만으로 사용할만합니다.- 한글 지원
Ubuntu가 좋기는 한데, 유틸리티가 너무 많아서 찾아서 사용해보고 좋은 걸 사용하는 것을 추천드립니다. 이미지 유틸리티 1. Pinta ( 이미지 수정 Tool ) $ sudo apt install pinta 패키지 목록을 읽는 중입니다... 완료 의존성 트리를 만드는 중입니다... 완료 상태 정보를 읽는 중입니다... 완료 다음의 추가 패키지가 설치될 것입니다 : binfmt-support ca-certificates-mono cli-common gnome-icon-theme libgdiplus libglib2.0-cil libgtk2.0-cil libmono-addins-gui0.2-cil libmono-addins0.2-cil libmono-btls-interface4.0-cil libmono-..
DateSearch = function() { DateSearch.form = document.getElementById( 'shop_list'); DateSearch.date = new Date(); //올해 DateSearch.date.curYear = DateSearch.date.getYear(); //이번달 DateSearch.date.curMonth = DateSearch.date.getMonth() ; //오늘 DateSearch.date.curDate = DateSearch.date.getDate(); //요일 DateSearch.date.curDay = DateSearch.date.getDay(); //오늘 YYYY-mm-dd DateSearch.getToday = function() { ..