DEV
-
Mac OS / Windows Ollama로 eeve 모델 설치하여 사용하기DEV/nlp 2024. 9. 25. 18:04
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, Gemma 2, and other large language models.Get up and running with Llama 3.1, Mistral, Gemma 2, and other large language models. - ollama/ollamagithub.com 그 다음 사용할 모델인 eeve를 준비합니다. (https://huggingface.co/heegy..
-
trumbowyg color picker bugDEV/other things 2024. 9. 4. 15:17
Problem with color selection. trumbowyg.color.js// Original codefunction colorTagHandler(element, trumbowyg) { var tags = []; if (!element.style) { return tags; } // background color if (element.style.backgroundColor !== '') { var backColor = colorToHex(element.style.backgroundColor); if (trumbowyg.o.plugins.colors.colorList.indexOf(backColor) >= 0) { ..
-
trumbowyg table bugDEV/other things 2024. 9. 4. 15:15
How to fix a bug where the table width changes randomly. trumbowyg.table.js// Original codevar setColWidths = function ($table, tableState, isUnitPercent = false) { var $colgroup = $('colgroup', $table); var $cols = $('col', $colgroup); var tableWidth = $table[0].offsetWidth; $table.css({ maxWidth: $table[0].offsetWidth, }); var columnCount = tableState[0].length; var..
-
Node js/Redis Node(Javascript) 환경에서 Redis를 연결하고 사용하기.DEV/node js 2024. 8. 29. 17:41
결론부터 말씀 드리면... (코드만 보실 분은 해당 코드 참조, 본문은 아래로 이동)////////////// 1. 연결 //////////////const redis = require('redis');const client = redis.createClient();client.on('error', (error) => { console.log('Redis error : ', error); });client.on('connect', () => { console.log("Redis connected") });client.connect();////////////// 2. SET //////////////// >> SET(key, value)await client.set('data', data);////////..