본문 바로가기
반응형

전체 글193

Mongo DB 5(Finished) - Modeling Mongo DB(몽고 DB) 키워드로 공부하기 5 (완결)Modeling2024.05.12 - [Book & Lecture/Database] - Mongo DB 4 - Instructions (Aggregation, Join) Mongo DB(몽고 DB) 키워드로 공부하기 4 - 명령어들 Aggregation, JoinMongo DB(몽고 DB) 키워드로 공부하기 4 - 명령어들 Aggregation, JoinAggregation 명령어group unwind.. 100% (durable) $addToSetarray of unique expression values$avgaverage of numerical values$first/$last value from the first or last docust.. 2024. 5. 12.
Mongo DB 4 - Instructions (Aggregation, Join) Mongo DB(몽고 DB) 키워드로 공부하기 4 - 명령어 정리 Aggregation, Join2023.04.19 - [Book & Lecture/Database] - Mongo DB 3 - Replication 및 Write&Read concerns Mongo DB(몽고 DB) 키워드로 공부하기 3 - Replication 개요/Write&Read concernsMongo DB (몽고 DB) 키워드로 공부하기3 - Replication 개요/Write&Read concerns Replication : Data durability (속도와 안정성 사이의 trade-off)Replica Set componentsPrimary Member : 1순위 서버 - 보통 가장 최신으로 업데studiodoc.ti.. 2024. 5. 12.
How to optimize duplicate invocations of QML functions (QML 함수의 중복호출을 최적화하는 방법) How to optimize duplicate invocations of QML functionsQML 함수의 중복호출을 최적화하는 방법(추천) [초급] 6가지 프로젝트로 다지는 Qt 사용법 (+REST API)https://inf.run/vLaL3 [초급] 6가지 프로젝트로 다지는 Qt 사용법 (REST API) | 코드브릿지 - 인프런코드브릿지 | 6가지 프로젝트로 다지는 Qt QML과 C++ 실전 강의입니다. 다양한 형태의 UI 개발과 REST API 통신까지 아우르는 연습을 통해 실무 기본기를 닦아보세요!, 코딩테스트에만 쓰는 C++😂 다양www.inflearn.com  Qt.callLater 함수는 QML에서 비동기적으로 함수를 호출하여 UI 업데이트를 최적화하는 데 사용됩니다.이 함수를 사용.. 2024. 5. 8.
[Useful] point in polygon algorithm (javascript) point in polygon algorithm (insidePolygon) javascript function pointInPolygon(mouseX, mouseY) { var inside = false var i,j = 0 for(i = 0,j = vertexCount - 1; i mouseY) != (vertexList[j].y > mouseY)) && (mouseX < (vertexList[j].x - vertexList[i].x) * (mouseY - vertexList[i].y) / (vertexList[j].y - vertexList[i].y) + vertexList[i].x)) { inside = !i.. 2024. 4. 14.
반응형