php-7x zend 설정
# Script/PHP2021. 7. 26. 10:37php-7x zend 설정

php7버전부터는 zend opcache모듈이 기본적으로 설치되어 있어 php.ini에 설정만 해주면됨. php.ini에 추가 [opcache] zend_extension=opcache.so opcache.enable_cli=1 opcache.memory_consumption=128 opcache.interned_strings_buffer=8 opcache.max_accelerated_files=4000 opcache.validate_timestamps=1 opcache.revalidate_freq=60 opcache.fast_shutdown=1 확인 $ ./php -v PHP 7.0.19 (cli) (built: Jul 23 2021 13:38:38) ( NTS ) Copyright (c) 1997-2..

php-7x phpize를 이용한 mysql 모듈 설치
# Script/PHP2021. 7. 26. 10:14php-7x phpize를 이용한 mysql 모듈 설치

설치환경 [darksharavim.tistory.com] cat /etc/redhat-release CentOS Linux release 7.7.1908 (Core) php버전 [darksharavim.tistory.com] /usr/local/php7x/bin/php -v PHP 7.0.19 (cli) (built: Jul 23 2021 14:25:39) ( NTS ) Copyright (c) 1997-2017 The PHP Group Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies mysql관련 모듈설치상태 [darksharavim.tistory.com] /usr/local/php7x/bin/php -m | grep mysql mysqli..

[파워쉘]확장자 일괄변경
# Script/Powershell2021. 7. 9. 18:03[파워쉘]확장자 일괄변경

Get-ChildItem *.txt | Rename-Item -NewName {“$($_.BaseName).docx”} Get-ChildItem *.txt | Rename-Item -NewName { $_.name -Replace ‘\.txt’,’.docx’ } Get-ChildItem *.txt | foreach {rename-item -path $_ -newname “$($_.basename).docx”} 특정 경로에 파일확장자가 .txt인 파일들을 .docx로 변경해야할 경우 위 3가지 방법 중에 1개로 하면 됨. 첫번째 추천!

[파이썬]bluetooth_adapter_winrt.cc:1074 Getting Default Adapter failed error
# Script/Python2021. 5. 19. 22:36[파이썬]bluetooth_adapter_winrt.cc:1074 Getting Default Adapter failed error

exe파일로 만든 후 실행시 콘솔에 아래와 같이 오류 발생 Bluetooth: bluetooth_adapter_winrt.cc:1074 Getting Default Adapter failed error 아래코드 추가 후 해결 options = webdriver.ChromeOptions() options.add_experimental_option('excludeSwitches', ['enable-logging']) driver = webdriver.Chrome(options=options)

[파이썬]셀레니움을 이용한 특정부분만 하이라이트 적용
# Script/Python2021. 5. 7. 10:59[파이썬]셀레니움을 이용한 특정부분만 하이라이트 적용

from selenium import webdriver driver = webdriver.Chrome('C:\\Users\\ryzen3\\Downloads\\chromedriver.exe') driver.get("https://darksharavim.tistory.com/") elements = driver.find_element_by_css_selector("#ttItem1547528381 > ul > li.tt-span-12.tt-last.tt-clear > div:nth-child(1)") driver.execute_script("arguments[0].style.backgroundColor = 'yellow'; return arguments[0];", elements) 참고 URL : www.py..

image