* KLDP - 리눅스, C https://kldp.org/tracker * Modern PHP User Group https://modernpug.org/posts https://wiki.modernpug.org/questions http://modernpug.github.io/php-the-right-way/ * PHP School https://...
Code
코드루덴스 on 20-03-11
파이썬 3 사용법 정리 //--------------------- * 주석 - 한줄 주석 : # - 범위 주석 : ''' , """ ''' This is a multiline comment. ''' """ This is a multiline comment. """ //--------------------- * 코드 블...
코드루덴스 on 20-02-27
System.Management.ManagementException: Access denied 에러 해결 방법 - WMI 정보를 읽으려고 하는데 '액세스가 거부되었습니다.'에러가 나는 경우 해결법 * 해결 방법 관리자 권한으로 실행한다. * 관리자 권한으...
코드루덴스 on 20-02-10
WPF 프로그램을 WinForm으로 변경시 비동기 쓰레드 함수에서 문제 발생하는 경우 * 문제의 소스 private void BrowserView_OnFrameLoadEnd(object sender, FrameLoadEndEventArgs e) { Dispatcher.BeginInvoke((Acti...
코드루덴스 on 20-02-01
아나콘다 : 파이썬 배포판( 패키지 모음) - 미니콘다 설치시 에러, anaconda miniconda * 증상 anaconda install failed to create menus _conda.exe appcrash * 해결 방법 JDK 경로 제거,
코드루덴스 on 20-01-24
Faceswap https://github.com/deepfakes/faceswap - 28.7k https://www.faceswap.dev https://forum.faceswap.dev/viewtopic.php?f=4&t=20 //---------------- * 실행 에러 The ordinal 241 could not be located in...
- 클린 제거를 했는데도 설치가 안될때 - 원인 : 설치본이 iso 파일인 경우 최신 버전 설치본을 다운 받아 설치한다 - CD로 이동 해서 다음 명령 실행 vs_enterprise.exe --layout c:\VSLayout --add Microsoft.Visu...
코드루덴스 on 19-12-08
- 윈도우 git config --global core.autocrlf true - CRLF -> LF 로 변경 - 맥, 리눅스 git config --global core.autocrlf input - LF를 개행문자로 인식 - 경고 메시지 감추기 git config --global core.safecrlf...
코드루덴스 on 19-11-01