DEV
-
React redux (toolkit) 간단 사용법DEV/react 2025. 1. 22. 16:04
1. installnpm install redux react-redux @reduxjs/toolkit 2. src > redux 폴더 생성 > store.js 생성 (src/redux/store.js)import React from 'react';import { configureStore } from '@reduxjs/toolkit';export default configureStore({ reducer: {},}); 3. index.js (파일명은 다를 수 있으나 리엑트의 시작점 파일을 찾아가자)을 로 감싸주자.import { StrictMode } from 'react'import { createRoot } from 'react-dom/client'import './index.css'import..
-
SOAP(Simple Object Access Protocol)DEV/other things 2025. 1. 11. 15:23
SOAP (단순 객체 접근 프로토콜, Simple Object Access Protocol) - 웹 서비스에서 데이터를 교환하기 위해 사용되는 프로토콜 1. XML 형식의 데이터(메시지) 전달 - XML(Extensible Markup Language) : 데이터를 저장, 검색, 공유할 수 있는 마크업 언어 2. WSDL 표준 인터페이스 사용 - WSDL(Web Services Description Language) : 웹 서비스 기술 언어 또는 기술된 정의 파일의 총칭 3. ACID 트렌젝션과 같은 복작한 작업 지원 - ACID(Atomicity, Consistency, Isolation, Durability) : 원자성, 일관성, 격리성(고립성), 지속성 - 트렌젝션 : 여러 개의 작업을 하나로 묶는..
-
Linux (Ubuntu) Code-server 설치: 웹 / iPad 에서 VsCode 사용하기.DEV/other things 2024. 12. 29. 19:49
아이패드를 구입하고 나서 집에 남는 라즈베리파이를 이용하여 VS Code를 돌리려고 했다.(근데 결국 남는 PC를 사용함, 라즈베리파이에서 동작 가능함은 확인) 아이패드에서는 VS Code를 사용하지 못하기 때문에 서버에 Code-server를 띄워두고 웹에서 접속하는 방법으로 접근하려고 했다. 본인은 집 공유기가 포트포워딩과 DNS 서비스를 제공하여 도메인을 따로 등록하지 않아도 되었다.(TPLink 사용중) 그리하여 TP LINK 공유기를 기준으로 설명한다. 준비물1. 우분투(리눅스)를 돌릴 수 있는 무언가 (라즈베리파이, PC, EC2 등...) 1. code-server 설치// 1. 설치curl -fsSL https://code-server.dev/install.sh | sh// 2. 실행sud..
-
라즈베리파이 우분투 설치하기DEV/other things 2024. 12. 16. 16:07
https://www.raspberrypi.com/software/ Raspberry Pi OS – Raspberry PiFrom industries large and small, to the kitchen table tinkerer, to the classroom coder, we make computing accessible and affordable for everybody.www.raspberrypi.com Raspberry Pi Imager 다운로드. sd카드 연결 후 Install > 운영체제 > Other general-purpose OS > Ubuntu 선택 후 설치
-
Ollama python 모델 실행하기.DEV/nlp 2024. 10. 28. 14:16
ollama 모델 설치 참고https://seokbong.tistory.com/303 Mac OS / Windows Ollama로 eeve 모델 설치하여 사용하기M1, M2, M3 실리콘 맥 시리즈에서 Ollama로 eeve를 등록하여 사용해 보았습니다.(Windows도 동작 확인 완료) ollama install : https://github.com/ollama/ollama GitHub - ollama/ollama: Get up and running with Llama 3.1, Mistral, Gemmseokbong.tistory.com응답 값을 Stream으로 받는 방법import ollama # pip install ollama stream = ollama.chat( model='eeve:q..