전체 글

programming, design
1) 초기화 (init) //원하는 폴더에서 git 초기화 하기 git init //숨겨진 저장소 보기 ls -al -> .git이라는 숨겨진 폴더[= 로컬저장소]가 만들어진다. -> 한 폴더에 하나의 로컬저장소만 있어야 함! 2) 커밋하기 (add, commit) - 커밋이란, 코드의 하나의 버전이다. 커밋을 할 때엔 의미 있는 변동사항 위주로, 메세지에 시간을 들여서 완성해야한다. - 빈 .git 파일에 visual code로 빈 파일을 만들어주고 난 뒤에 진행했다. 1) 사용자 정보 입력하기 git config --global user.name "어쩌구" git config --global user.email "저쩌구" 2) 원하는 파일 선택하기 git add "파일 이름" 3) 메세지 (-m)와 ..
· algorithm
포인터 한 학기 동안 안썼더니 또 까먹어버렸다... 자료구조에 관한 과목 수강하다가, 기초 지식인 포인터를 확실히 알아야겠다 싶어서 정리한다! - 포인터/ 포인터를 가리키는 포인터 #define _CRT_SECURE_NO_WARNINGS #include int main(void) { double num = 3.14; double* ptr = # double** dptr = &ptr; printf("%p %p %p\n", ptr, *dptr, dptr); //ptr ptr &ptr (ptr=&num) printf("%f %f %f %f\n", num, *ptr, **dptr, *(*dptr)); //3.14 3.14 3.14 3.14 return 0; } double* ptr = &num doubl..
당연히 열리던 주피터노트북... 가상환경으로 cmd에 이것저것 손대다가 대 참사를 겪었다. 1번째 오류 Bad config encountered during initialization: The 'kernel_spec_manager_class' trait of instance must be a type, but 'nb_conda_kernels.CondaKernelSpecManager' could not be imported 가상환경 설정시에 경로 설정에 있어 오류가 나서 (사실 아마도 가상환경 안에서 python update를 막 해서 난 것 같음) 오류 코드로 구글링을 했다. 그 결과 다른 블로그 + 스택오버플로우 뒤지면서 cmd창에 이상한 거 썼더니 2번째 오류까지 발생 (일단 가상환경 jupyter ..
· Web
Codecademy front-end engineer course DAY19 Layout with Flexbox - What is Flexbox? 플렉스박스란? While flexbox is not meant to lay out entire pages, it is useful for positioning elements, whether individually or in groups. There are two important components to a flexbox layout: flex containers and flex items. - display: flex 플렉스 디스플레이 ;한줄에 배열해주는 속성 Flex containers are helpful tools for creating website..
· Web
Codecademy front-end engineer course DAY20 Learn Responsive Design 2) Media Queries **When a website responds to the size of the screen it’s viewed on, it’s called a responsive website. -Media Queries [미디어 쿼리란?] CSS uses media queries to adapt a website’s content to different screen sizes. -An example of media queries- @media only screen and (max-width: 480px) { body { font-size: 12px; } } @medi..
· Web
Codecademy front-end engineer course DAY17 Secondary navigation - About the Secondary Navigation 1) What is Secondary Navigation? Primary navigation contains the most important links and buttons that need to be displayed on every single page of the site. Secondary navigation consists of a clickable list of pages or attributes that led to the current page. It can help users understand the extent ..
· Web
Codecademy front-end engineer course DAY16 Links & Button Showing interactivity and clickability through signifiers is a fundamental aspect of user interface design. - Browser Link Styles [링크 스타일] However, it’s important to note that maintaining a consistent user experience pattern, like the default behavior applied by browsers, is important for creating a consistent experience. a{ color:blue; t..
· Web
Codecademy front-end engineer course DAY15 Learn Text Design - Differentiating Text : HTML Headers [헤더를 적절히 이용하자.] — Used for titles. You should only have one header this style per page. — Used for headings. This should be to identify major sections you want the user to immediately be drawn towards. — Used for subheadings. This should be used for smaller focal points, such as articles, that you ..
이티권
ET WORLD