반응형

분류 전체보기 487

[코딩] 변수 이름 추천 그리고 묘한 차이 stop, end, finish...

Antonyms 반대인 단어들 show hide visible invisible head tail, toe, foot header footer under over before after open close input output import export get set create delete ex) underSeven() beforeLoop() stop : 잠시 중단, start, restart end, finish : 아예 끝 begin suspend, hold : 잠시 연기 continue, detach Synonyms 비슷한 단어들 get ~= retrieve ~= acquire ~= fetch 가져오다 ~= 검색해서 가져온다 ~= 독점해서 가져오다 ~= 포인터가 다음 값을 이동한 것을 가져온다 c..

ubuntu 깔고 나서 도커 설치하기/루트권한 usermod

https://m.blog.naver.com/todoskr/221278546103 [Docker] 조낸쉬운 도커 첫걸음 02_설치 및 실행 [Docker] 조낸쉬운 도커 첫걸음 01_Prologue https://blog.naver.com/todoskr/221261803381안녕하세요! ... blog.naver.com 위에 그대로 따라하면 됨!! ubuntu.iso 파일을 연결하고 이름, 컴퓨터 이름, 암호 선택하고 오면 이 화면이 뜸 아까 썼던 이름 - 이니까 그에 맞는 암호 써주면 됨 안에서 프로그램 깔때도 항상 쓰는 암호니까 까먹지 않기 2021-1월 기준 가장 최신꺼 깔아서 실행하니까 재규어가 배경에 있다. 처음에는 dock에 (옆에 아이콘들 명단)에 터미널이 안 보이니까 show applica..

[Inception 42] virtualbox linux-ubuntu 운영체제 만들기 / iso 파일 연결까지

virtualbox에 linux - ubuntu 설치하기 저번까지 수행한 일 2022.01.13 - [명령어 등등/컴퓨터 세팅] - 42 inception 시작. virtualbox 설치 에러 해결 저번에 virtualbox 가상머신을 설치했다. 이제 linux를 설치할 차례 1. Ubuntu iso 파일 다운로드 https://ubuntu.com/download/desktop/thank-you?version=20.04.3&architecture=amd64 이 위치에서 64비트 우분투를 다운 받음 .iso 형식이다. 2.9기가 바이트임로 많이 무거워서 설치가 오래 걸린다. 2. Virtual box 설정 1. virtual box에서 새로 만들기를 클릭하고 2. '이름 및 운영체제'에서 머신 폴더는 기본..

42seoul/42seoul_ 2022.01.13

42 inception 시작. virtualbox 설치 에러 해결

inception 을 시작하기 위해서 virtual machine부터 깔았다. VirtualBox가 가장 우수한/오픈소스 가상머신이라고 해서 바로 깔러 감 https://www.virtualbox.org/wiki/Downloads Downloads – Oracle VM VirtualBox Download VirtualBox Here you will find links to VirtualBox binaries and its source code. VirtualBox binaries By downloading, you agree to the terms and conditions of the respective license. If you're looking for the latest VirtualBox 6...

42seoul 2022.01.13

보스찾기 union find 알고리즘

오랜만에 문제풀다 하나씩 오늘은 union find disjoint set 알고리즘을 공부할 차례 보스가 -1이고 보스랑 연결되어 있는 조직원 찾고, 그 조직원과 보스가 묶인 부분집합이 몇 개있는지 찾는 문제다 https://brownbears.tistory.com/460 [Python] union find (disjoint-set) 알고리즘 union find (disjoint-set) 이란? 서로 중복되지 않는 부분 집합들로 나눠진 원소들에 대한 정보를 저장하고 조작하는 자료 구조입니다. 간단하게 다수의 노드들 중에 연결된 노드를 찾거나 노드들을 brownbears.tistory.com union find(disjoint-set)의 핵심은 아래 3가지. 1. 초기화 : N 개의 원소가 각각의 집합에 ..

starting conda & jupyter notebook on mac

https://docs.conda.io/projects/conda/en/latest/user-guide/getting-started.html Getting started with conda — conda 4.11.0.post8+f60f0f16 documentation Tip When the environment is deactivated, its name is no longer shown in your prompt, and the asterisk (*) returns to base. To verify, you can repeat the conda info --envs command. docs.conda.io 공식 문서 그대로 따라갔다 1. conda 설치 https://docs.anaconda.com/a..

querySelector() 계속 null일 때

https://stackoverflow.com/questions/20495960/document-queryselector-is-null-error document.querySelector(...) is null error For image upload in a cakephp project I used java-script.I added this js file in app\View\Layouts default.ctp js code document.querySelector('input[type=file]').addEventListener('change', funct... stackoverflow.com js가 html보다 먼저 실행되어서 생기는 에러 를 가장 마지막으로 옮겼더니 해결되었다

이 선언에는 스토리지 클래스 또는 형식 지정자가 없습니다.C/C++(77)

convert.hpp를 잘 include 했음에도 이 선언에는 스토리지 클래스 또는 형식 지정자가 없습니다.C/C++(77) 에러가 나타났다. 이유에는 여러가지가 있는데 내 경우에는 이미 있는 클래스 이름을 써서 그렇다 Convert 클래스는 https://docs.microsoft.com/ko-kr/dotnet/api/system.convert?view=net-6.0 Convert 클래스 (System) 기본 데이터 형식을 다른 데이터 형식으로 변환합니다.Converts a base data type to another base data type. docs.microsoft.com 위처럼 이미 존재하기 때문에 다른 이름을 사용해야 했다. 다른 이유로는 2. 헤더를 제대로 include 안한 경우가 있다..

C언어 2021.11.30

아카몰리 github token 사용 시작

https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token Creating a personal access token - GitHub Docs You should create a personal access token to use in place of a password with the command line or with the API. docs.github.com 아카몰리에서 계속 github 가져올 때 username 이랑 패스워드 요구하더니 알고보니 토큰 이었다 예전에는 ssh를 등록해주면 되었는데 이제는 토큰을 사용?하도록 권장하는지 등록해도 안되더라 20..

명령어 등등 2021.10.23
반응형