일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- livereload
- RGB WEB
- Spring
- 새로고침
- RGB 생성
- test image
- 웹 테스트 이미지
- springboot
- color site
- Devtools
- 테스트 이미지
- 팬톤 색상 웹
- Today
- Total
기억은 휘발성 메모리
WSL MySQL 한글 인코딩 문제문제스프링으로 TODO List 프로젝트 중 한글 인코딩 문제가 발생했다.Error : Incorrect string value 원인리눅스에서 Mysql 최초 설치시 character set이 latin1 로 설정 되어있기 때문에 한글이 깨지는 현상이 발생한다.mysql 에서 현재 인코딩 확인하는 방법xxxxxxxxxxstatus혹은xxxxxxxxxxshow variables like 'c%'; 해결Linux의 경우 mysqld.cnf 와 mysql.cnf 파일 수정$ sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf [mysqld] 부분에 추가init_connect = SET collation_connection = utf_general_ci..
cmd 명령어cd 경로 : 해당 경로로 이동cd .. : 하위 경로로 이동mkdir 폴더 : (폴더)라는 디렉토리 생성 참고 : 들어가기 전에 (-)짧은 명령어 (--)긴 명령어시작하기 download git https://git-scm.com/downloadscreate github IDgit bash 실행미리 저장되어 있을지 모르는 계정 정보 삭제 (선택 사항)$ git config --global --unset credential.helper$ git config --system --unset credential.helper원하는 경로로 이동 ex) 바탕화면/git-traning$ cd ~desktop/git-traning해당 디렉토리(git-traning)를 git 저장소로 만들기$ git ini..
plunker MVC 패턴modle -> view -> controllerMODEL : DATAVIEW : WEB PAGECONTROLLER : ORIGINAL DATE를 가공 (입금내용만 보고싶다.) angularjs(model view)양방향angularjs는 HTML을 새로운 attribute들로 확장한다.최근 동향 index.html하나로 모든 웹을 구현( facebook, gmail) ng-app 은 angularjs임을 선언한다. var app = angular.module("todoApp", []); app.controller("todoCtrl", function($scope) { $scope.todos = [ { completed: false, title: "모바일 웹 project", s..