분류 전체보기
-
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..
-
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(morgan('dev'));app.use(express.static(path.join(__dirname, ..