아래 사이트에서 프로그래밍 언어별 흥미로운 통계 결과를 볼 수 있다. https://blog.gaerae.com/2014/05/programming-languages-benchmarks.html
Java 문법 정리잘된 사이트 소개
·
수강노트
일목요연하게 책처럼 정리가 잘되어 있는 링크가 있어서 소개합니다. https://rebeccacho.gitbooks.io/java-study-group/content/chapter8.html Chapter 8 예외처리(Exception Handling) | Java Study Group rebeccacho.gitbooks.io
Java code fomatter 적용
·
수강노트
java 코드 작성시 컨벤션에 맞춰서 작성하다보면 가독성 좋은 코드가 나올것 같아 적용해보려고 한다. Google Java Style Guide 적용하기 https://google.github.io/styleguide/javaguide.html Google Java Style Guide 1 Introduction This document serves as the complete definition of Google's coding standards for source code in the Java™ Programming Language. A Java source file is described as being in Google Style if and only if it adheres to the rule..
CSS flexible 레이아웃: flex item의 정렬과 간격.
·
CSS, HTML
진행 축과 교차 축: 진행 축은 flex item이 배치되는 축을 의미하며, 교차 축은 진행 축에 90도로 교차하는 축을 말합니다. 이 축들은 flex-direction의 값( row, column)에 따라 달라집니다. 한 줄 vs 여러 줄: flex-basis 값과 flex-wrap 속성에 의해 단일 행 또는 여러 행이 될 수 있습니다. 여러 줄은 빈 공간이 부족할 때 발생합니다. justify-content: 진행 축의 정렬과 아이템 간 간격을 조절합니다. flex-direction에 따라 x축 또는 y축 정렬을 담당합니다. align-items: 교차 축의 정렬을 조절합니다. flex-direction에 따라 x축 또는 y축 정렬을 담당합니다. align-self: 개별 flex item의 독립적인..