목록전체 글 (245)
일상 코딩
#include #include #include #include #include #include #include using namespace std; mutex mtx; int main() { // atomic shared memory // atomic shm(0); // mutex condition int shm(0); // lambda function auto count_func = [&](){ for (int i = 0; i < 1000; ++i) { // 어떤 계산이 복잡한 코드가 들어있는 것을 가정한 코드 this_thread::sleep_for(chrono::milliseconds(1)); // mtx.lock(); // std::lock_guard lock(mtx); // lock(), un..
#include #include #include #include #include #include using namespace std; // mutual exclusion (상호 배제) 서로 못 건드림. mutex mtx; int main() { // 코어 개수 확인 cout
https://developer.mozilla.org/ko/docs/Learn Web 개발 학습하기 | MDN MDN 학습지에 오신 것을 환영합니다! 여기는 웹 개발을 처음 접하는 초보자가 웹 사이트 개발을 시작하기 위해 필요한 모든 것을 제공하는 글을 모아놓은 곳입니다. developer.mozilla.org 위 사이트를 추천한 유튜브 영상 https://youtu.be/tJieVCgGzhs
https://curryyou.tistory.com/262 [VS Code] HTML 템플릿 자동완성 기능 사용 방법 기초/기본(Emmet: 에밋) Visual Studio Code에는 Emmet(에밋)이라는 플러그인이 기본으로 내장되어 있는데, 코딩을 아주아주 빠르게 할 수 있게 해주는 자동완성 기능이라고 보면 된다. 예를 들어, html 파일을 만들고, 느낌표( curryyou.tistory.com
#include #include #include using namespace std; tuple my_func() { return tuple(123,456); } auto my_func2() { return tuple(123,456,789,10); } int main(int argc, char const *argv[]) { // tuple result = my_func(); // cout
#include #include #include #include #include void goodbye(const std::string& s) { std::cout
VSCode를 통한 연결 Ctrl + Shift + P 명령 팔레트 단축키 remote ssh: Connect to Host 선택 pi@ 입력 및 암호 입력 터미널 통한 접속 $ ssh pi@192.168.0.
https://emanual.robotis.com/docs/en/platform/turtlebot3/sbc_setup/#sbc-setup ROBOTIS e-Manual emanual.robotis.com imgage 는 turtlebot에서 제공한 이미지 사용한다. ※단, Write(굽기)전 Ctrl + Shift + X 로 안에 설정되어 있는 값들을 다 지워준다. WiFi setting (ssh 접속을 위한) # SD card의 writable 폴더 안에서 터미널 열어준다. $ cd ~/writable/etc/netplan $ sudo nano 50-cloud-init.yaml WIFI_SSID -> 공유기이름 WIFI_PASSWORD -> 비밀번호 입력한다. 공유기 설정창에서 터틀봇 이름을 알아 볼 ..
https://linuxhint.com/raspberry_pi_static_ip_setup/ Raspberry Pi Static IP Setup In this article, I am going to show you how to setup a static IP address to Raspberry Pi Ethernet and Wi-Fi network interface. I am going to use Raspberry Pi 3 Model B for the demonstration. But it should work on any version of Raspberry Pi running Raspbia linuxhint.com
VSCODE 다운로드 통한 설치 https://code.visualstudio.com/#alt-downloads Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com VSCODE 터미널 통한 설치 $ sudo apt update $ sudo apt inst..