로그인
회원가입
FrostK
노트
노트
정렬하기
날짜순
조회수
댓글수
제목+내용
제목
내용
회원명
회원아이디
PHP 이모지 제거
`php / 이모지 삭제 함수 */ function remove_emoji( string $string ) : string { // Match Enclosed Alphanumeric Supplement $regex_alphanumeric = '/[\x{1F100}-\x{1F1FF}]/u'; $clear_string = preg_rep…
Date
2022-12-20
By
관리자
Views
3,837
PHP 이모지 제거
PHP 해시태그 추출 정규식
`php $str = "가나다라 #마바사 아자차 #abc12 345"; preg_match_all("/#[A-Za-z0-9_가-힣]+/", trim($str), $matches); print_r($matches); `
Date
2022-12-20
By
관리자
Views
4,017
PHP 해시태그 추출 정규식
spring boot jar 파일로 배포하기
package 입력. `shell > chcp 65001 > java -Xms1024m -Xmx1024m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=C:\Users\<계정>\AppData\Local\Temp\oomlog.log -jar <프로젝트 경로>\target\<프로젝트 이름>-single-1.…
Date
2022-12-13
By
관리자
Views
3,939
spring boot jar 파일로 배포하기
docker + cuda
3D-R2N2 사용하기 위해 작성됨. docker에서 share 볼륨 추가. `shell 도커 이미지 다운로드 및 컨테이너 실행 > docker pull nvidia/cuda:10.2-cudnn7-devel-ubuntu18.04 > docker run -it --gpus all -v share:/sharing nvidia/cuda:10.2-cudn…
Date
2022-12-06
By
관리자
Views
4,012
docker + cuda
c# smtp 파일첨부 메일 발송
`cs static void Main(string[] args) { SmtpClient smtpClient = new SmtpClient("smtp.gmail.com", 587); smtpClient.UseDefaultCredentials = false; smtpClient.EnableSsl = true; smtpClient.Deliver…
Date
2022-12-05
By
관리자
Views
4,037
c# smtp 파일첨부 메일 발송
PHP javascript 캐시사용
그누보드 소스에서 사용. `php // 자바스크립트에서 go(-1) 함수를 쓰면 폼값이 사라질때 해당 폼의 상단에 사용하면 캐쉬의 내용을 가져옴. 완전한지는 검증되지 않음 header('Content-Type: text/html; charset=utf-8'); header('Expires: 0'); // rfc2616 - Section 14.21 …
Date
2022-11-28
By
관리자
Views
4,110
PHP javascript 캐시사용
Apache + PHP 파일업로드 용량
PHP 설정 php.ini 파일을 찾는다. 설정파일을 편집기로 열어서 post_max_size 항목과 upload_max_filesize 항목을 찾아서 적당한 값으로 조절한다. ` post_max_size = 32M upload_max_filesize = 32M ` Apache 설정 httpd.conf 파일을 찾는다. 설정파일을 편집기로…
Date
2022-11-28
By
관리자
Views
4,127
Apache + PHP 파일업로드 용량
[EC2] Tomcat 서비스 등록
톰캣 서비스 등록 `shell vim /usr/lib/systemd/system/tomcat.service ` ` [Unit] Description=tomcat 8.5 After=network.target syslog.target [Service] Type=forking 환경변수 설정 시 할 필요 없음 Environment="톰…
Date
2022-11-16
By
관리자
Views
4,106
[EC2] Tomcat 서비스 등록
리눅스 프로세스 통계
htop top의 대안으로 나온 프로그램으로 c언어로 된 오픈소스이다. Ncurses를 이용하여 키보드 커서도 이용할 수 있다. 설치 방법은 간단하다. `shell 설치 $ sudo install -y htop 실행 $ htop ` iotop 프로세스 별 io 통계를 볼 수 있는 프로그램이다. 이것 또한 설치 방법은…
Date
2022-11-03
By
관리자
Views
4,262
리눅스 프로세스 통계
ffmpeg png to gif with alhpa
`shell $ ffmpeg -i Tree_%04d.png -vf palettegen=reserve_transparent=1 palette.png $ ffmpeg -framerate 30 -i Tree_%04d.png -i palette.png -lavfi paletteuse=alpha_threshold=128 -gifflags -offsetting t…
Date
2022-09-08
By
관리자
Views
4,448
ffmpeg png to gif with alhpa
JS data change event
`js class da { constructor(el, data) { this.el = el; this.filter = data.filter; this.detail = data.detail; this.opts = { attributes: true, } return this; } change(fn…
Date
2022-09-02
By
관리자
Views
4,602
JS data change event
지상파 3사(MBC/KBS/SBS) TV 다시 보기(VOD) 동영상 다운로드
.m3u8 검색 후 TS 파일 번호 적용 `shell $ curl "https://vod.gscdn.kbs.co.kr/~주소~/media_[00000-00449].ts" -o "#1.ts" $ ls 00*.ts | sort | xargs cat > merge.ts $ ffmpeg -i merge.ts -acodec copy -vcodec copy m…
Date
2022-07-26
By
관리자
Views
4,721
지상파 3사(MBC/KBS/SBS) TV 다시 보기(VOD) 동영상 다운로드
hwp.js 빌드
hwp.js `shell wget https://github.com/hahnlee/hwp.js/archive/refs/tags/v0.0.3.zip unzip v0.0.3.zip cd hwp.js-0.0.3 yarn yarn build `
Date
2022-07-19
By
관리자
Views
6,143
hwp.js 빌드
python opencv error
>error: (-215:Assertion failed) _img.size().height <= _templ.size().height && _img.size().width <= _templ.size().width in function 'cv::matchTemplate' matchTemplate(image, templ, result, method) …
Date
2022-07-16
By
관리자
Views
4,719
python opencv error
우분투 부팅시 자동실행
`shell nano /etc/rc.local ` `sh ! /bin/sh -실행 명령어- su - root -c 'abc' exit 0 ` `shell chmod +x /etc/rc.local nano /lib/systemd/system/rc-local.service ` 마지막 라인에 삽입 ` [Install]…
Date
2022-07-04
By
관리자
Views
4,637
우분투 부팅시 자동실행
PHP Regex to get youtube video
Method 1 Use parse_url() and parse_str(). (You can use regexes for just about anything, but they are very easy to make an error in, so if there are PHP functions specifically for what you are tr…
Date
2022-06-23
By
관리자
Views
4,921
PHP Regex to get youtube video
Replacing filename with a Regex in JavaScript
`js result = subject.replace(/(?=\.[^.]+$)/g, "-next"); result = subject.replace(/-next(?=\.[^.]+$)/g, ""); `
Date
2022-06-22
By
관리자
Views
4,750
Replacing filename with a Regex in JavaScript
python tensorflow warning 제거.
`py os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' tf.compat.v1.logging.set_verbosity(tf.compat.v1.logging.ERROR) `
Date
2022-06-09
By
관리자
Views
4,807
python tensorflow warning 제거.
PHP 배열 함수 정리
array_change_key_case -- 모두 대문자나 소문자화된 문자열 키를 갖는 배열로 반환한다 array_chunk -- 배열을 여러 덩어리로 분산시킨다 array_combine -- 키를 위한 배열과 값을 위한 배열을 각각 사용하여 배열을 생성한다 array_count_values -- 배열 값의 수를 센다 array_diff_assoc…
Date
2022-05-27
By
관리자
Views
4,705
PHP 배열 함수 정리
php 문자치환
`php $string = str_replace('{{abc}}', $val, $string); $string = preg_replace('/\{\{(.*?)\}\}/is','',$string); `
Date
2022-05-17
By
관리자
Views
4,810
php 문자치환
목록
1
2
3
4
5
6
7
8
9
맨끝
최근 게시물
docker 컨테이너 ufw 정책이 안될때
xdebug 오래된버전 설치
붉은보석 기억용
fullPage extensions drop-effec…
three.js 경계선 부드럽게 보이도록 설정
최근 댓글
가입어떻게하나요?
나이스 좋은 자료입니다 감사합니다 베타 유튜버가 사용하…
엘리온 낚시 메크로 판매합니다 https://open.…
회원가입이 안돼서
[email protected]
…
강의가능할까요
[email protected]
통계
방문자 :
18 / 877986
회원 :
1
게시글 :
435
댓글 :
18
수행시간 :
0.1728초
Access IP :
3.145.67.59
CPU Usage :
0.03%
DISK Usage :
44.15%