일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ORA-28002
- 명령어
- 리눅스
- 원한
- 말라키
- DataTables
- JQuery
- 맥코트
- Linux
- build
- Python
- LOG
- error
- Eclipse
- SCADA
- Custom
- 가상환경
- Anaconda
- 파이썬
- geckodriver
- 분노
- pythoncom37.dll
- HMI
- checkbox
- STS
- Today
- Total
목록분류 전체보기 (768)
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
출처 : 오픈소스 HMI / SCADA (tistory.com) - OpenSCADA(http://oscada.org/) 리눅스 기반 SCADA C++ 웹 컨트롤과 QT 기반의 GUI 컨트롤을 모두 제공한다. SCADA 서버가 존재하여 데이터 수집, 저장등을 수행한다. MySql, PgSQL, SQLite등을 지원한다. 현재 버전 0.8.0.5(2013/2/2) GPL2 - openSCADA(http://openscada.org/) Java RCP 기반 SCADA Cross-platform 현재 버전 1.0.0(2013/3/15) LGPL - LiKindoy(http://www.likindoy.org/, http://www.centrologic.com/en/what-we-have-done/likindoy..
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
출처 : JSP - JSTL 태그 사용하기 (tistory.com) JSP - JSTL 태그 사용하기 태그는 지정한 경로와 매개변수를 포함하면서 URL을 생성합니다. 이때 만들어지는 URL은 ContextRoot(컨텍스트 루트)를 포함하는데 컨텐스트 루트란 톰캣과 같은 WAS(Web Application Server)에서 웹 어플리 simplecodingschool.tistory.com Result.jsp로 이동
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)