Main Page

Category카테고리 :

NoticeBorad게시판 / linux리눅스 / php / nodejs /website웹사이트

/ ReactNative / Kotlin / Swift / Cubase / QT / ServerApps

react-native-freelifemakers-ui

  • [Kubernetes]Docker Desktop+Mutinodes (3 nodes)[MacOS]

    👉🏻 도커 데스크탑에서 쿠버네티스를 이용해서 멀티 노드를 구현하는 방법에 대한 설명입니다.This is an explanation of how to implement multi-nodes using Kubernetes on Docker Desktop. 👉🏻 전체 노드는 컨트롤 플레인+워커노드2개로 구성합니다.The entire node consists of a control plane + 2 worker nodes. 👉🏻 테스트 환경 / test environment ✔️ 램이 8기가 이상인 환경에서 클러스터를 구성하기를 추천합니다.We…


  • [Basic]람다함수/Lambda Function

    👉🏻 다음코드처럼 람다함수란 이름없는 익명함수를 의미합니다.As shown in the following code, a lambda function refers to an unnamed anonymous function. 👉🏻 위와 같은 람다함수를 파라메터로 다른 함수에 전달 할 수 있습니다. 이것을 콜백함수라고 합니다.You can pass a lambda function like the one above as a parameter to another function. This is called a callback function.…


  • [Basic]스레드,참조/Thread,Reference

    👉🏻 스레드는 하나의 프로그램 내에서 여러 작업을 동시에 처리하는 것처럼 보이게 하는 기법입니다. 이를 통해 프로그램이 한 작업이 끝날 때까지 기다리는 동안 다른 작업을 처리할 수 있습니다. Threads are a technique that makes it appear as though multiple tasks are being processed simultaneously within a single program. This allows the program to handle other tasks…