본문 바로가기

카테고리 없음

2020-10-19 22시 개발자 글 모음 | "Hibernate Document 서" 외 4개 이야기

Error: Cannot find module ‘@vue/babel-preset-application’ by 안영선 about Vue

  • ERROR Error: Cannot find module '@vue/babel-preset-application'
  • exports = { presets : [ ' @vue/application ' ]
  • exports = { presets : [ ' @vue/cli-plugin-babel/preset ' ]


전자부품 기초 - 다이오드와 LED(빨강)의 순방향 전압- 전류 특성 by 서민상


    Bitbucket Pipelines로 Google App Engine에 자동 배포하기 by 이성일

    • Bitbucket에서 해당 프로젝트 > Repository settings > PIPELINES > Repository variables 페이지 로 이동
    • / 위에서 base64 로 인코딩 한 문자열 PROJECT / App Engine이 설정 된 GCP 프로젝트 ID (프로젝트 이름과 ID는 다를 수 있음)
    • # develop 브랜치에 PUSH하면 Unit Test를 실행하고 App Engine에 배포 되는 설정 image: node:alpine run-test: &run-test step: name: Run jest unit test caches: - node script: - yarn - yarn test deploy-dev: &deploy-dev step: name: Deploy Develop Branch to App Engine deployment: gcp-dev script: - pipe: atlassian/google-app-engine-deploy:0


    8. LU 분해 (LU Decomposition) by 백지오

    • $$ L=\begin{bmatrix}1&0&0\\2&1&0\\-1&-1&1\end{bmatrix} U=\begin{bmatrix}2&1&1\\
    • $$ \begin{bmatrix}1&0&0\\ 2&1&0 \\ -1&-1&1 \end{bmatrix}\begin{bmatrix}y_1\\y_2\\y_3\end{bmatrix}=\begin{bmatrix}7\\-8\\18\end{bmatrix}$$
    • $$ \begin{bmatrix}2&1&1\\ 0&-8&-2\\ 0&0&1 \end{bmatrix} \begin{bmatrix}x_1\\x_2\\x_3\end{bmatrix}= \begin{bmatrix} 7\\-22\\3\end{bmatrix} $$


    Hibernate Document 서문, 시스템 요구사항, 아키텍처 by 정철 about Hibernate

    • Hibernate의 디자인 목표는 SQL과 JDBC로 데이터를 처리하는 필요성을 제거함으로써 개발다의 데이터 관련 프로그램 작업의 95% 감소 시켜 주는 것이다
    • Hibernate는 오직 stored-procedure를 사용하는 데이터 중심의 어플리케이션에서는 적합하지 않고 객체 지향의 도메인에 집중되어 있는 비즈니스에 가장 적합하다
    • 하지만 Hibernate는 벤더에 집중되어 있는 SQL 코드를 제거해 주고 table 중심의 데이터를 객체의 유형으로 변형하는데 편한 도움을 준다