목록분류 전체보기 (245)
일상 코딩
python version 파일 받는 사이트 https://www.python.org/ftp/python/ https://www.python.org/ftp/python/3.6.9/Python-3.6.9.tgz 위 주소를 바탕으로 !wget 명령어를 이용해서 파이썬 버전 변경한다. !wget https://www.python.org/ftp/python/3.6.9/Python-3.6.9.tgz !tar xvfz Python-3.6.9.tgz !Python-3.6.9/configure !make !sudo make install 일반화 !wget https://www.python.org/ftp/python//Python-.tgz !tar xvfz Python-.tgz !Python-/configure !mak..
http://aifactory.space/ AIFactory aifactory.space
출처 https://memostack.tistory.com/217 Ubuntu 20.04 apt 저장소를 kakao mirror로 변경하기 기본으로 kr.archive.ubuntu.com 로 설정되어 있지만, 속도가 빠른편은 아니다. mirror.kakao.com 로 변경하게 되면 apt로 패키지를 다운로드 받을때 꽤나 빨라진다 (체감상으로도 느껴짐) apt 저장소 변경하 memostack.tistory.com apt 저장소 변경 $ sudo vi /etc/apt/sources.list kr.archive.ubuntu.com 를 mirror.kakao.com로 변경 SHIFT + : :%s/kr.archive.ubuntu.com/mirror.kakao.com/ SHIFT + : :w #저장 :x #vi ..
C++ 온라인 컴파일러 사이트 https://replit.com/~ https://www.onlinegdb.com/online_c++_compiler https://cpp.sh/ https://www.tutorialspoint.com/compile_cpp_online.php #include using namespace std; template T getMax(T x, T y) { return (x > y) ? x : y; } int main() { { cout
C++ 온라인 컴파일러 사이트 https://replit.com/~ https://www.onlinegdb.com/online_c++_compiler https://cpp.sh/ https://www.tutorialspoint.com/compile_cpp_online.php #include #include #include #include #include #include using namespace std; int main() { { vector container; for (int i = 0; i < 10; ++i) container.push_back(i); auto itr = std::min_element(container.begin(), container.end()); cout
C++ 온라인 컴파일러 사이트 https://replit.com/~ https://www.onlinegdb.com/online_c++_compiler https://cpp.sh/ https://www.tutorialspoint.com/compile_cpp_online.php #include #include #include #include #include using namespace std; int main() { vector container; for (int i = 0; i < 10; ++i) container.push_back(i); { // vector::iterator vector::const_iterator itr; itr = container.begin(); while (itr != conta..
https://greedywyatt.tistory.com/105 [Ubuntu 18.04] 한글 입력 추가 및 한영키 사용 설정 기본적으로 ubuntu 18.04를 설치할때 혹시나 발생할 오류를 막기 위하여 영어 버전으로 설정하고, 위치는 서울로 설정한 뒤 설치를 진행한다. 그래서 그런지 몰라도, 처음에는 한글 입력이 되지 않 greedywyatt.tistory.com
#include #include #include #include #include #include #include #include using namespace std; void sequence_containers() { // vector { vector vec; for (int i=0; i < 10; ++i) // 뒤로만 추가 vec.push_back(i); for(auto & e : vec) cout
#include #include #include // std::min // Reference : http://thbecker.net/articles/auto_and_decltype/section_01.html using namespace std; class Examples { public: void ex1() { std::vector vect; for (std::vector::iterator itr = vect.begin(); itr != vect.end(); ++itr) cout m_x) m_x_type; // add references to L-values // with const typedef decltype((x)) x_with_parens_type; typedef decltype((cx)) cx..
https://youtu.be/ECuqb5Tv9qI https://github.com/codeSTACKr/codeSTACKr GitHub - codeSTACKr/codeSTACKr Contribute to codeSTACKr/codeSTACKr development by creating an account on GitHub. github.com # Hi there, I'm Jesse - aka [codeSTACKr][youtube] 👋 [![YouTube Channel Subscribers](https://img.shields.io/youtube/channel/subscribers/UCDCHcqyeQgJ-jVSd6VJkbCw?logo=youtube&logoColor=red&style=for-the-bad..