일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- 파이썬
- checkbox
- Custom
- Linux
- LOG
- Python
- Anaconda
- 분노
- DataTables
- 리눅스
- 가상환경
- ORA-28002
- build
- SCADA
- Eclipse
- 명령어
- pythoncom37.dll
- 맥코트
- 말라키
- geckodriver
- error
- HMI
- STS
- JQuery
- 원한
- Today
- Total
목록Computer (97)
2010년 5월 1일, 2막
=INDEX($A$2:$A$30,MATCH(MAX(B2:B30),B2:B30,0)) 1. MAX를 이용하여 B2~B30 사이의 최대값 찾기2. MATCH를 이용해서 1의 결과와 동일한 항목의 상대 위치를 반환.3. 2가 반환한 위치 정보를 이용하여 A열에 정의된 숫자를 반환한다.
1. assets 폴더 생성 : /app/src/main/assets/ 생성 2. assets/ 디렉토리 접근 : "file:///android_asset/" 식으로 접근 ex). web_view.loadUrl("file:///android_asset/sample.html") mWebView.loadUrl("file:///android_asset/www/index.html"); 출처 : [Android] WebView에서 local file 접근하기(feat. Android Assets) :: 준비된 개발자 (tistory.com) [Android] WebView에서 local file 접근하기(feat. Android Assets) 안드로이드에서 WebView를 사용하면 별도의 서버에서 호스팅 되고 있..
Android Emulator에서 다른 인터넷 사이트 연결이 안될 때... C:\Users\your user name\.android 폴더에 advancedFeatures.ini 파일의 존재 여부 확인 해당 파일에 다음 두 줄 확인 Vulkan = off GLDirectMem = on 출처 : Google Chrome browser in Android 12 emulator doesn't load any webpages (internet is working!) - Stack Overflow
에러 처리 관련 출처 : Ubuntu 22.04 LTS 가상머신 설치 및 설정 방법 (velog.io) Ubuntu 22.04 LTS 가상머신 설치 및 설정 방법 VirtualBox 7.0.6에 Ubuntu 22.04 LTS를 설치하는 방법 velog.io
윈도우키 + R cmd 입력 파일 리스트 추출할 폴더로 이동 명령어 입력 > dir /a-d /b /s > list.txt
sudo systemctl daemon-reload WSL2에서 systemctl 실행 시 아래 오류 발생 System has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus: Host is down systemctl enable 처리 wget --content-disposition \ > "https://gist.githubusercontent.com/djfdyuruiry/6720faa3f9fc59bfdf6284ee1f41f950/raw/952347f805045ba0e6ef7868b18f4a9a8dd2e47a/install-sg.sh" chmod +x /tmp/install-sg.sh ..
move-wsl 사용 GitHub - pxlrbt/move-wsl: Easily move your WSL distros VHDX file to a new location. GitHub - pxlrbt/move-wsl: Easily move your WSL distros VHDX file to a new location. Easily move your WSL distros VHDX file to a new location. - GitHub - pxlrbt/move-wsl: Easily move your WSL distros VHDX file to a new location. github.com
git clone 실행 시 오류 발생 no matching host key type found. Their offer: ssh-rsa,ssh-dss fatal: Could not read from remote repository. 해결책 : 다음과 같이 옵션을 주어 git 명령 실행 ssh -oHostKeyAlgorithms=+ssh-dss" git clone test@127.0.0.1:test.git git 명령시마다 옵션을 주는 것은 번거로운 일이니 git config에 등록 git config core.sshCommand "ssh -oHostKeyAlgorithms=+ssh-dss" 출처 : 해피쿠 블로그 - [Git] SSH로 git remote repository 접근 (happykoo.net)
git push origin HEAD:master 를 실행했을 때 SSL certificate problem: self signed certificate in certificate chain 오류가 발생했다. 해결 : git config --global http.sslVerify false 참조: https://stackoverflow.com/questions/11621768/how-can-i-make-git-accept-a-self-signed-certificate How can I make git accept a self signed certificate? Using Git, is there a way to tell it to accept a self signed certificate? I am us..
오류 현상 : Ubunto 20.04 LTS에서 apt install 도중 다음 에러 발생 Unable to fetch some archives, maybe run apt-get update or try with --fix-missing 해결책 : Try removing content of /var/lib/apt/lists directory: sudo rm -rf /var/lib/apt/lists/* then run this: sudo apt-get update OR Try this: sudo apt-get clean sudo apt-get update