[react/vscode] Reactjs code snippets 사용법 및 추천 사용하면 작업 효율을 가득 늘릴수 있다, #추천 rfce Snippets Below is a list of all available snippets and the triggers of each one. The ⇥ means the TAB key. TriggerContent rcc→class component skeleton rrc→class component skeleton with react-redux connect rrdc→class component skeleton with react-redux connect and dispatch rccp→class component skeleton with prop types af..
[eyefinity/surround/스트레치] 모니터모드(일반/스트레치) 스크립트로 변경 https://github.com/falahati/HeliosDisplayManagement GitHub - falahati/HeliosDisplayManagement: An open source display profile management program for Windows with support for NVIDIA An open source display profile management program for Windows with support for NVIDIA Surround - GitHub - falahati/HeliosDisplayManagement: An open source display prof..
[ffmepg/script] 2개영상 해상도 합치기 2개의 영상을 합쳐셔 인코딩함 간단하다 ffmpeg -hide_banner -i input1.mp4 -i input2.mp4 -filter_complex "[0:v][1:v]hstack" -c:v libx264 -crf 22 -an OUTPUT.mp4 특정 영역 크롭 -filter_complex "[0:v]crop=w=iw-20:h=ih-44[a];[a][1:v]hstack" 참고 및 출저 https://shana.pe.kr/shanaencoder_board/100309 샤나인코더로 영상두개 좌우에 동시재생하게 인코딩 하는방법이 있을까요? - 샤나 영상 두개를 비교하기위해 좌우에 하나씩 나오게 합쳐서 비교영상으로 만들고 싶은데 샤나인코더로도 가능한지 알..
[c#/unity] timeline을 이용한 이미지 시퀀스 구현(with c# 컨트롤) #스트리임 시퀀서를 이용하여 구현 -참고- https://docs.unity3d.com/Packages/com.unity.streaming-image-sequence@0.16/manual/index.html Streaming Image Sequence | Streaming Image Sequence | 0.16.0-preview Streaming Image Sequence Streaming Image Sequence is a package for playing sequential image sequences in Unity Timeline easily without making Unity 2D Sprites. It i..
[unity/UniTask] UniTask를 활용하여, 백그라운드에서 리소스 로드하는 방법 일반적으로 async/await를 통하여 비동기 처리를 처리를 하는데, gameobject/texture등 항상 메인쓰레드에서 돌아야하기때문에 비동기처리가 쉽지않다 UniTask를 활용하여 쉽게 해보도록하자 #UniTask UniTask는 유니티용 async-await 통합패키지이다 https://github.com/Cysharp/UniTask #UniTask에 관해 참고하면 좋은 블로그 GitHub - Cysharp/UniTask: Provides an efficient allocation free async/await integration for Unity. Provides an efficient allocat..
[random/js] javascript random 난수 생성하기 function getRandomInt(min, max) { min = Math.ceil(min); max = Math.floor(max); return Math.floor(Math.random() * (max - min) + min); // The maximum is exclusive and the minimum is inclusive } #random #랜덤 #rand #난수 #javascript
[wpf/winform/c#/unity] serial / udp 받아서 키보드 이벤트 발생(hooking) 풀코드 제공 #serial - 이벤트 방식 receive #udp - 이벤트 방식 receive #키보드 훅 싱글톤 함수 (출저: https://rito15.github.io/posts/cs-global-key-hook/) public class SerialHelper { private static SerialHelper _instance { get; set; } public static SerialHelper Instance { get { return _instance ?? (_instance = new SerialHelper()); } } SerialPort serial; public deleg..