[TIL] 230515

이세령·2023년 5월 15일
0

TIL

목록 보기
2/118

오늘 배운 것

팀 소개 페이지 프로젝트

처음으로 팀 편성한 날
자기소개

SA 작성
https://deeply-silence-9a4.notion.site/A-6-S-A-29de33c5802c468582229016e481e0f9

  1. modal 창 생성 방법
  • 전체 구조
<!-- 전체 modal 영역 -->
<div class="modal" tabindex="-1">
      <div class="modal-dialog">
        <div class="modal-content">
  
        </div>
      </div>
    </div>
  • JS 동작
	<script>
        function open_box() {
            $(".modal").show();
        }
        function close_box() {
            $(".modal").hide();
        }
    </script>

GIT 협업 특강

  • Git SSH
    SSH : Secure Shell, 두 컴퓨터 간 통신을 할 수 있게 해주는 protocol

어려웠던 내용

궁금한 내용 / 부족한 내용

느낀 점

첫 날이라, 복습 느낌으로 작업했어서 코딩 부분에서는 어렵지는 않았지만 아무래도 팀 편성 첫날이라 새로운 사람들에 대해 궁금한 것이 많았지만 어색한 분위기는 아직도 적응이 어렵다.

profile
https://github.com/Hediar?tab=repositories

0개의 댓글