전체 글
-
라즈베리파이 우분투 설치하기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..
-
Node js "나만쓸거야" (스타터팩 간단 흐름도 추가)DEV/node js 2024. 10. 10. 11:08
app.jsconst express = require('express');const path = require('path');const morgan = require('morgan');const dotenv = require('dotenv');const cors = require('cors');dotenv.config();const app = express();app.set('port', process.env.PORT || 4401);app.use(cors({ origin: ['*'], methods: ['GET', 'POST', 'HEAD', 'PUT', 'DELETE'],}));/////////////////////// 이곳에 서비스를 작성 ///////////////////////app.use(..
-
React Three Fiber (react-three) 메모장 1DEV/react 2024. 10. 7. 16:09
app.js/** * @fiber : Three.js를 React 스타일로 쉽게 사용할 수 있도록 해주는 라이브러리 * ㄴ @Canvas : Three.js의 캔버스 (3D 객체 렌더링 담당) * @Experience : (사용자 지정 컴포넌트) * @Physics : 충돌, 중력 등 물리 효과를 구현하기 위해 사용 * @Suspense : 비동기적인 데이터 로딩을 처리할 때 사용, * 3D 모델이나 리소스를 로딩하는 동안 랜더링을 지연시켜 로딩이 끝나기 전까지 앱이 중단되지 않도록 도와줌 */import { Canvas } from "@react-three/fiber";import { Physics } from "@react-three/rapier";import { Experience } from ..