목록분류 전체보기 (257)
일상 코딩
#include #include #include using namespace std; class Doctor; // forward declaration class Patient { private: string m_name; vector m_doctors; public: Patient(string name_in) : m_name(name_in) { } void addDoctor(Doctor *new_doctor) { m_doctors.push_back(new_doctor); } void meetDoctors(); friend class Doctor; }; class Doctor { private: string m_name; vector m_patients; public: Doctor(string name_..
https://docs.mongodb.com/mongodb-shell/run-commands/ mongosh Usage — MongoDB Shell Docs Home → MongoDB ShellTo run commands in mongosh, you must first connect to a MongoDB deployment.To display the database you are using, type db:The operation should return test, which is the default database.To switch databases, issue the use helper, docs.mongodb.com
http://www.xn---2021-2m8tn8ygl4ajha230gqeb.com/main/main.php 2021 의료데이터 인공지능 학습용 데이터 톤 뇌영상 AI학습용 데이터를 활용한 AI모델링 및 알고리즘 개발 www.xn---2021-2m8tn8ygl4ajha230gqeb.com
https://dejavuqa.tistory.com/ don't stop believing nGle (엔글: www.ngle.co.kr)에서는 모든 QA들이 이정도는 합니다. dejavuqa.tistory.com
1. main #include #include #include "Lecture.h" int main() { using namespace std; std::string lec_title1("Introduction to Computer Programming"); std::string lec_title2("Computational Thinking"); Student *std1 = new Student("Jack Jack", 0); Student *std2 = new Student("Dash", 1); Student *std3 = new Student("Violet", 2); Teacher *teacher1 = new Teacher("Prof. Hong"); Teacher *teacher2 = new Teach..
https://bigdata.seoul.go.kr/noti/selectPageListTabNoti.do?r_id=P260 서울특별시 빅데이터 캠퍼스 빅데이터 캠퍼스를 이용하여 생성된 빅데이터 분석결과를 서울시 빅데이터 캠퍼스 웹사이트에 게시하여 다른 시민들과 지식과 정보를 공유할 수 있습니다. bigdata.seoul.go.kr
https://www.tableau.com/ko-kr/learn/articles/free-public-data-sets 지금 바로 무료로 분석할 수 있는 공개 데이터 집합 7개 지금 바로 무료로 분석할 수 있는 공개 데이터 집합 7개 www.tableau.com
https://pythondocs.net/selenium/%EC%85%80%EB%A0%88%EB%8B%88%EC%9B%80-%ED%81%AC%EB%A1%A4%EB%9F%AC-%EA%B8%B0%EB%B3%B8-%EC%82%AC%EC%9A%A9%EB%B2%95/#%ED%85%8D%EC%8A%A4%ED%8A%B8_%EC%9E%85%EB%A0%A5 셀레니움 크롤러 기본 사용법 - 뻥뚫리는 파이썬 코드 모음 셀레니움 전반에 관하여 간략하게 정리한다. 사용 방법이나 예시는 따로 링크를 남기고 꾸준히 업데이트 하도록 하겠다. 아래 기능들만 익히면 웹상의 원하는 거의 대부분의 업무의 자동화가 pythondocs.net

1. 파이썬 버전 확인 및 설치, 업그레이드 python -V pip --version sudo apt install python3.8 python3.8 -m pip install -upgrade pip python3.8 -m pip install virtualenv 2. 가상환경 만들기 혹은 추가 mkdir cd virtualenv --python=python3.8 ●가상환경 실행 source .//bin/activate ▲가상환경 종료 deactivate ●가상환경 alias 설정 //home으로 이동 $ cd // nano로 .bashrc 문서 연다. $ nano .bashrc // 문서 맨밑에 아래 코드 추가 alias sql='source /home/ubuntu/sql/VENV/bin/activ..