본문 바로가기

분류 전체보기

(122)
[삼전역] 사생활 ( 5번 방문 후 남기는 후기) 식당정보 영업시간 서울 송파구 백제고분로25길 33 2층 (삼전동) 주 소 월~금 : 11 : 00 ~ 22 : 00 / 15:00 ~ 16:00 (브레이크타임) 수 : 정기 휴무 토, 일 : 11 : 00 ~ 22 : 00 연 락 처 02-6954-7601 기 타 예약가능 메뉴 식사 첫번째 방문 스카치에그 카레 세트 12,000원 (아메리카노 포함) 시골오일파스타 14,000원 수비드 등심 크림 보리 리조또 15,900원 스카치에그 카레세트 시골오일파스타 아메리카노가 함께 나오는 세트로 구성이 좋음. 평범한 카레 맛. 사장님 추천 파스타.오일파스타는 먹고 싶은데 봉골레(조개)를 안좋아한다면 추천. 버섯과 마늘이 듬뿍 들어가서 한국인이 안좋아할 수 없는 맛 수비드 등심 크림 보리 리조또 (오픈 서비스로 ..
[W] 서울웨딩타워 본식스냅 피플앤스튜디오(people.an.studio) 짝궁할인 웨딩홀 계약 후 가장먼저 알아볼 것이 본식스냅/DVD라고 한다... 준비 초기엔 모르기도 했고 스냅업체 정하는 기준 등 알아보다 결국 가장 마지막에 결정하게 되었다..다들 빨리 하세용(눈물) 샘플은 이쁜데 실제 촬영 사진은 어두운홀은 별로인 곳이 많았음. 유명업체는 이미 예약 마감이거나 비용이 사악함 서웨타 및 어두운홀 촬영 경험이 적은곳을 도전하느니 공장형으로 찍어내는 곳이 낫지 않을까 하는 생각.. 웨딩홀 계약 당시 제휴업체 ' Room335 '를 추천받았는데 여기서 할까 고민을 정말정말정말x10 많이함. (알아본 업체들과 비용차이가 크지 않고 조건이 나쁘지 않았음. 하지만 작가님들 실력편차가 꽤 컸고 누가 배정될지 알 수 없었기 때문에 이 또한 도전이라고 생각이 들었..
[Postgresql] 세로 테이블을 가로 테이블로 pivot하기 (crosstab) 1. extension 설치 CREATE EXTENSION tablefunc; 2. crosstab 사용 - ID (=여기선 title) 기준 연도별 총액 산출 - 세로 테이블을 가로 테이블로 Pivot - 동적 컬럼을 위해 권장되지 않지만 values 및 as 값들을 셋팅해서 쿼리 생성 - 합계를 하단 마지막으로 보내기 위해 order by 설정. - crosstab select 문은 3개의 컬럼을 반환함.(컬럼1: ID, 컬럼2: 테이블 범주(카테고리), 컬럼3: 각 셀에 할당 될 값 ) - as 를 통해 컬럼명 재지정을 할 때 데이터 타입 유의 SELECT * FROM crosstab( 'select title, plan_year, total_cost from ( select unnest(array..
[Jenkins] React Build 1. Jenkins Nodejs 플러그인 설치 - Dashboard > Jenkins 관리 > 플러그인 관리 > 설치 가능 클릭 > nodejs 검색 > 설치 2. Nodejs 버전 추가 - Jenkins 관리 > Global Tool Configuration > NodeJS 검색 > NodeJS installations... 클릭 - Name 입력 (install 버전과 동일하게 쓰는 것 추천) > Install from nodejs.org Verson 에서 선택 > Save 클릭 3. 빌드 환경 설정 - Project 클릭 > 구성 > 빌드환경 > Provide Node & npm bin / folder to Path 체크 > NodeJs 버전 선택 - Build > Execute shell 선택 >..
[Jenkins] Jenkins Docker 설치 및 GitHub 연동 1. Docker Jenkins 설치 - jenkins 검색 docker search jenkins - Docker Pull docker pull jenkins/jenkins:lts - Docker Run docker run -d -p 8090:8080 -v /jenkins:/var/jenkins_home --name jenkins -u root jenkins/jenkins:lts - jenkins 패스워드 복사 및 설정 port로 접속해서 패스워드 붙여넣기 vi jenkins/secrets/initialAdminPassword - jenkins 설치. - jenkins admin 계정 설정 후 save 2. GitHub 연동 - GitHub access_token 발급. 나중에 확인 불가능하므로 생성된..
React userEvent test 코드 작성시 Error: Expected key descriptor but found "" in "" react 의 테스트 코드 작성 시 userEvent(@testing-library/user-event) 사용해서 빈 문자열을 테스트 해보고 싶었다. userEvent.type(input, ''); 위와 같이 작성하면 에러가 발생하였다. ● Console console.error Error: Expected key descriptor but found "" in "" See https://github.com/testing-library/user-event/blob/main/README.md#keyboardtext-options for more information about how userEvent parses your input. ... ... falsy 를 허용하지 않는 것으로 보여진다.. 해당 부분..
Module not found: styled-components tried to access react-is (a peer dependency) but it isn't provided by its ancestors; this makes the require call ambiguous and unsound. Yarn Berry + Nextjs + Styled-Component 로 개발을 하던 중 제목과 같은 에러가 발생하였다. 에러로그를 자세히 보면 Module not found: styled-components tried to access react-is (a peer dependency) but it isn't provided by its ancestors; this makes the require call ambiguous and unsound. Required package: react-is Required by: styled-components@virtual:0487b1b8263ee74b6a800d7d32396247265bb66793913170b66fbaba014393ed5e7147a33f4bbb0..
[VSCode] nodejs 디버깅 방법 1. 디버깅 설정파일 생성 Run and Debug (Ctrl+Shift+D) 클릭 > create a launch.json file 클릭 > Node.js 선택 2. launch.json 설정 추가 Add Configuration... 클릭 > Node.js: Attach to Process 클릭 name이 Attach by Process ID인 코드가 추가되며 디버그 구성 선택메뉴에도 보이는 것을 확인 할 수 있음. 3. nodemon을 이용해 서버 실행. 4. 디버깅 시작(F5) 셋팅했던 디버깅 설정을 시작하면 process 선택 화면이 나온다. 실행하고자하는 파일을 선택. 서버가 실행되고 있는 화면을 보면 디버거가 연결됬다는것을 확인 할 수 있다. 브레이크 포인트를 걸어 디버깅 .
Sequelize migration Manual | Sequelize Migrations Just like you use version control systems such as Git to manage changes in your source code, you can use migrations to keep track of changes to the database. With migrations you can transfer your existing database into another state and vice ver sequelize.org 0. npx 명령어 실행 시 Unable to resolve sequelize package ~.라고 뜬다면 package.json이 있는 경로에서 실행 할 것. 1. 모델 정의 또는 수정 np..
Ubuntu Apache VirtualHost 설정 1.아파치 설정파일 위치 확인 apache2 -V | egrep "(HTTPD\_ROOT|SERVER\_CONFIG\_FILE)" sudo vim /etc/apache2/sites-available/000-default.conf 아파치 설정파일 httpd.conf, apache2.conf 위치 확인 - 제타위키 다음 문자열 포함... zetawiki.com 2. Ubuntu VirtualHost 설정 파일 수정 ServerName aaa.song.co.kr//서버 접속 도메인 DocumentRoot /home/frontend//root디렉토리, 폴더경로 ErrorLog /home/frontend/web_log/error.log//에러로그 경로 CustomLog /home/frontend/web_log/a..