전체 글 92

Stlye-Bert-Vits2를 실행하려고 했던 일들.

litagin02/Style-Bert-VITS2: Style-Bert-VITS2: Bert-VITS2 with more controllable voice styles. GitHub - litagin02/Style-Bert-VITS2: Style-Bert-VITS2: Bert-VITS2 with more controllable voice styles.Style-Bert-VITS2: Bert-VITS2 with more controllable voice styles. - litagin02/Style-Bert-VITS2github.com 귀여운 목소리를 내는 tts를 써 보고 싶어서 tts-with-rvc를 써 봤다가 tts가 생각보다 훨씬 뻣뻣하다는 걸 느끼고,tts에 감정을 담을 수 있는 도구를 검색해서 ..

카테고리 없음 2026.01.15

확장 프로그램을 만들었다

이미 글이 여럿 있고 급하게 만들어서 정리되지 않은 것도 있어서, 확장 프로그램을 만들고 싶어서 이 글을 눌러버린 사람들은 다른 사람들 글을 보는 게 좋을 것 같다. 스니펫 만드신 분이 계신다:작고 소중한 Visual Studio Code 확장프로그램 만들기 작고 소중한 Visual Studio Code 확장프로그램 만들기개발 과정에서 느낀 불편함을 해소하기 위해 확장 프로그램을 만든 경험과 그 과정에서 얻은 교훈을 간략하게 공유해 보고자 합니다.velog.io 단축키 만드신 분도 계신다:Visual Studio Code, Extension 만들어서 등록까지 해보기 (with mocha) - 박종훈 기술블로그 Visual Studio Code, Extension 만들어서 등록까지 해보기 (with ..

카테고리 없음 2026.01.02

eruda - 문서 안에서 devtools, console, f12, 개발자도구 보기

https://github.com/liriliri/eruda GitHub - liriliri/eruda: Console for mobile browsersConsole for mobile browsers. Contribute to liriliri/eruda development by creating an account on GitHub.github.com npm이나 cdn을 사용해서 코드 한 줄 - eruda.init(); 만 입력하면 화면 어딘가에 콘솔 버튼이 등장.컴퓨터에서의 f12와 최대한 비슷한 동작을 제공하기 위한 거니까 컴퓨터에서는 쓸모 없지만, 모바일에서는 의미있다.당장 소개 문구 자체가 Console for Mobile Browsers다. 사실 대부분의 상황에서 모바일로 개발 중인 페이지..

카테고리 없음 2025.09.26

html enterkeyhint - input에서, 모바일 환경에서 엔터 키가 인식이 안되면

https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Global_attributes/enterkeyhint elements) or elements using contenteditable can specify an inputmode attribute to control what kind of virtual keyboard will be used. To further improve the user's experience, the enter key can be custo" data-og-host="developer.mozilla.org" data-og-source-url="https://developer.mozilla.org/en-US/docs/Web/H..

카테고리 없음 2025.09.26

DoTuna 업데이트

Fody Coastra가 문제여서, 그거 없앴더니 알약이 통과시켜줬다. 휴.이제 업데이트를 다시 할 수 있게 되었다. https://github.com/hyuckkim/dotuna/releases/tag/1.1 Release 링크 변환기 추가 · hyuckkim/dotuna자세한 내용은 티스토리에서.github.com 이번 버전에서는 이런 어장 링크를... 빌드된 사이트의 링크로 바꿀 수 있게 된다. (한글이 있으면 링크가 꽤 지저분해지긴 하지만, 올릴 수 있다는 것에 만족) 일단 링크가 너무 길어지는 걸 막기 위해서 이런 기능을 만들긴 했다. 그리고 이거 만드는 김에 만든 경고 기능까지.

카테고리 없음 2025.06.14 1

DoTuna 가이드

이 가이드는 https://github.com/hyuckkim/DoTuna 프로그램을 위한 가이드입니다. GitHub - hyuckkim/dotunaContribute to hyuckkim/dotuna development by creating an account on GitHub.github.com 프로그램은 다음 링크에서 받을 수 있습니다.https://github.com/hyuckkim/dotuna/releases/download/1.0/DoTuna.exe경고: 이 프로그램은 사용자의 이것저것을 보증하지 않습니다. (일단 안에 바이러스는 없지만, 출력된 html 파일이 가족사진이나 중요한 서류랑 파일 이름이 같아서 덮어씌워 버리는 것 같은 일들에 대한 책임은 질 수가 없습니다) 이 프로그램은, 구 ..

카테고리 없음 2025.06.11 2

이미지가 완전히 로드되기 전에 크기 가져오기

https://stackoverflow.com/questions/6575159 Get image dimensions with Javascript before image has fully loadedI've read about various kinds of ways getting image dimensions once an image has fully loaded, but would it be possible to get the dimensions of any image once it just started to load? I haven't f...stackoverflow.com// placeholder로 첫 이미지의 크기를 미리 적용img.style.width = firstImageSize.width +..

카테고리 없음 2025.02.15

라이브러리가 쓸데없이 비대하게 커지는 과정

(개구린 자작 라이브러리 설명임)버튼텍스트 이 코드를 짜고서 일주일 정도 어떻게 해야 더 유용하고 재사용성 있어질지 생각해봤다.class OrderedPromise { tasks = []; defer(fun) { return new Promise((resolve, reject) => { this.tasks.push(async (...args) => { try { const result = await fun(...args); resolve(result); return result; } catch (e) { reject(e); throw e; } }); }); } run(...arg..

카테고리 없음 2025.01.16