728x90 반응형 IT412 vite 설치법 npm create vite@latest vite 는 vue 뿐만 아니라 react 등 다양한 프로젝트 생성이 가능하다.사용하는 언어는 javascript로 하자. https://vuejs.org/ Vue.jsVue.js - The Progressive JavaScript Frameworkvuejs.org Composition API 작성 문법과 Options API 문법--> 원쌤의 Vue.js 퀵스타트 275 P 설명을 읽어볼것. ref : 상태 변수를 선언하는 함수 script setup> import HelloWorld from './components/HelloWorld.vue'import { ref } from 'vue'const msg = ref('Hello Vue 3 + Vite')scri.. 2025. 1. 28. flutter 개발환경설정(2025-01-09 버전) 아래 과정을 다하고, android studio 에서 flutter 프로젝트를 만들때 다음 에러가 뜨면 Unable to find git in your PATH 윈도우 파워쉘을 관리자 모드로 실행후, 아래명령어를 실행해라. git config --global --add safe.directory '*' =========================================================1. 안드로이드 스튜디오 다운로드 -> https://d.android.com/studio2. 설치 3. 실행 -> Downloading Components 단계에서 시간이 상당히 소요됨. 프로그램이 멎어있는지 착각함. 4. Flutter plugin 설치 -> 첫 실행화면의 Welcome 페이.. 2025. 1. 9. 대규모 트래픽의 C++ 시스템 Java로 전환하기 https://techblog.woowahan.com/20763/ 이젠 보내줄 때가 되었다. 대규모 트래픽의 C++ 시스템 Java로 전환하기 | 우아한형제들 기술블로사용자의 배달 주소를 기반으로 어느 행정동/법정동에 속해 있는지를 판단하기 위해 기존에는 C++로 작성된 웹 서버를 사용하였습니다. 서버 한 대당 피크 시간 기준 2000TPS를 상회하는 많은 요청techblog.woowahan.com 2025. 1. 8. 공유 메모리와 세마포어를 사용하여 데이터를 동기화하고, epoll을 사용하여 이벤트를 효율적으로 처리하는 프로그램 예제 송신 프로그램//// Created by mecen on 2025-01-03.//#include #include #include #include #include #include #include #include #include #include #define SHM_KEY_BASE 0x1234#define SEM_KEY_BASE 0x5678#define SHM_SIZE 1024#define MAX_EVENTS 10union semun { int val; struct semid_ds *buf; unsigned short *array;};int main() { int sender_id; std::cout > sender_id; key_t shm_key = SHM_KEY_BASE .. 2025. 1. 2. 이전 1 2 3 4 ··· 103 다음 728x90 반응형