-
[Atom] 맞춤법 검사 끄기└ Devel Tool 2019. 4. 9. 10:44
맥용 편집기 중 최애1위 아톰 맞춤검 검사 기능이 있어 불편하길래 옵션 찾아서 껐다. (집 맥북에 적용하기위해 기록용 블로깅) https://atom.io/ A hackable text editor for the 21st Century At GitHub, we’re building the text editor we’ve always wanted: hackable to the core, but approachable on the first day without ever touching a config file. We can’t wait to see what you build with it. atom.io 어쩜 사이트도 이뻐~ 맞춤법 검사 끄기 BEFORE : 빨간 지렁이 가득한 화면 AFTER : 지렁이 ..
-
[ubuntu] apt-get 사용법Programming 2019. 3. 23. 22:02
apt-get 쓰면 아재라는데;; apt 에 없는게 종종 있는터라 apt-get 쓰고 아재할란다.패키지 검색 command # apt-cache search vim-tiny vim-tiny - Vi IMproved - enhanced vi editor - compact version패키지 설치도커 이미지 파일중 OS 설치하면 기본만 있어서 에디터를 설치해야 한다. Vi 기본을 설치했더니 생각보다 용량(49.5 MB)이 커서 작은 사이즈 vim-tiny 를 선택했다. (방향키가 안되서 불편하긴하지만 기본기능은 다있다) command # apt-get install vim-tiny After this operation, 1838 kB of additional disk space will be used.패키지..
-
this is incompatible with sql_mode=only_full_group_by└ Mysql 2018. 12. 6. 18:58
운영서버 Mysql 디비 버전(5.6.x)과 로컬 PC Mysql 디비 버전(5.7.18)이 다름. 에러 발생 (A4 한장정도의 Join 쿼리문;) error massage SELECT list contains nonaggregated column 'willow.status_cd'; this is incompatible with sql_mode=only_full_group_by 원인The query is invalid if name is not a primary key of t or a unique NOT NULL column. In this case, no functional dependency can be inferred and an error occurs:mysql> SELECT name, addr..
-
xcode 삭제후 git, homebrew 에러Programming 2018. 9. 4. 15:29
homebrew 에러 이슈 homebrew 명령 실행 안됨 원인Xcode.app 설치 후 디스크 공간확보를 위해 삭제함 증상 [we]:/Users/we> brew install gradle xcrun: error: invalid active developer path (/Applications/Xcode.app/Contents/Developer), missing xcrun at: /Applications/Xcode.app/Contents/Developer/usr/bin/xcrun Error: An exception occurred within a child process: CompilerSelectionError: gradle cannot be built with any available compiler..
-
IntelliJ - Import Project└JAVA 2018. 6. 18. 18:24
메이븐 기반 프로젝트를 Import 해보자. Import Project Application Servers Select an artifact to deployVM optionsdeploymentsjboss 하위 deployments 디렉토리 하위에 파일이 있는경우 삭제해준다. intellJ Appliction server 구동시 target 파일에 소스 빌드함 Maven Projectsview > Tool Windows > Maven Projects
-
IntelliJ - Create New Project└JAVA 2018. 4. 25. 17:28
Hi~ JAVA (with IntelliJ, jboss-as-7.1.1.Final) 따라한 블로그 : https://nesoy.github.io/articles/2017-02/SpringMVC 작성한 글이 날아감; 티스토리 사용하면서 처음 겪는일 ㅠ 다시..쓰기 귀찮다..ㅠ ..하아.. orz;;; IntelliJ 버전 정보 JAVA 버전정보 (실무용 버전) > java -version java version "1.7.0_80" Java(TM) SE Runtime Environment (build 1.7.0_80-b15)Java HotSpot(TM) 64-Bit Server VM (build 24.80-b11, mixed mode) Create New Project (프로젝트 오픈한경우 상단 바에서 생성..
-
auto_increment 에 대한 고찰 (Insert, Update)└ Mysql 2018. 3. 8. 14:56
auto_increment 컬럼에 '0' 값 데이터가 발생하였다. 원인을 파악하다보니 Insert 에서는 0값이 입력되면 자동증가값 + 1 으로 순차증가하는데 update 하는 경우 0이 그대로 반영됨을 발견! 출처 : https://dev.mysql.com/doc/refman/5.7/en/create-table.htmlAUTO_INCREMENTAn integer or floating-point column can have the additional attribute AUTO_INCREMENT. When you insert a value of NULL (recommended) or 0 into an indexedAUTO_INCREMENT column, the column is set to the next..
-
Mac 환경 셋팅Programming 2017. 6. 15. 10:49
1. .bash_profile 관련블로그 : http://hmjkor.tistory.com/437 alias vi='vim' alias so='cd /Users/we/Documents/source' export TERM=xterm-color export CLICOLOR=1 export LSCOLORS=gxFxCxDxbxegedabagaced export GREP_OPTIONS='--color=auto' alias ls='ls -GFh' alias ll='ls -lv' export MYSQL_BIN=/usr/local/mysql/bin export JAVA_HOME=~/java export MAVEN_HOME=/usr/local/apache-maven-3.5.0 export HOMEBREW=/usr/loc..