(1) Kali Linux on Windows in 5min (WSL 2 GUI) - YouTube
[스프링부트] JSON RequestBody null 해결
·
카테고리 없음
JSON으로 Controller의 Requestbody로 매핑할 때 JSON 파라미터 명과 DTO의 변수명이랑 동일해야한다
[스프링부트] https 리다이렉션 구현
·
카테고리 없음
# 주의 localhost에서 접속 시 8443 포트로 접근해야한다. # demoApplication 시작진입점 package com.example.demo; import lombok.extern.slf4j.Slf4j; import org.apache.catalina.Context; import org.apache.catalina.connector.Connector; import org.apache.tomcat.util.descriptor.web.SecurityCollection; import org.apache.tomcat.util.descriptor.web.SecurityConstraint; import org.springframework.boot.SpringApplication; import org..
[스프링 부트] 어노테이션 정리
·
카테고리 없음
https://melonicedlatte.com/2021/07/18/182600.html 스프링(Spring)에서 자주 사용하는 Annotation 개념 및 예제 정리 - Easy is Perfect melonicedlatte.com
[기타] 프로그램 접미사 ng란(차세대; next generation)
·
카테고리 없음
https://www.sciencedirect.com/topics/computer-science/aircrack-ng Aircrack-Ng - an overview | ScienceDirect Topics The tools used to perform these attacks are freely available on the Internet and are included in live security distributions. Some of these tools include: ▪ Aircrack-ng suite (www.aircrack-ng.org) A suite of tools for auditing wireless networks. It inclu www.sciencedirect.com
[파이썬] pyinstaller로 윈도우 리눅스 실행파일 만들기
·
🐞프로그래밍
https://youtu.be/RMkPGjGhzxg
[기타] 개발자 유틸리티
·
카테고리 없음
https://plposer.tistory.com/63 개발자라면 꼭 알아야할 사이트/도구 11가지 -1- 1. 깃북 (GitBook) 개발자라면 라이브러리나 API문서를 공부하다 위와 같은 페이지를 접해보았을지도 모른다. GitBook은 마크다운 기반의 전자책 집필 시스템으로 깃허브와 연동하여 markdown 파일이 관 plposer.tistory.com
[도커] 윈도우OS에서 도커 메모리 늘리기
·
카테고리 없음
명령어 입력 wsl.exe -d docker-desktop sh -c "sysctl -w vm.max_map_count=262144"
[파이썬] 데이터 조회 속도 개선
·
🐞프로그래밍
https://victorydntmd.tistory.com/313 [Elasticsearch] 입문하기(3) - 다양한 검색 방법 ( Search API ) ES는 검색 엔진인 만큼 다양한 검색 API를 제공하며, 이를 잘 알아야 ES를 효과적으로 사용할 수 있을 것이라 생각합니다. 이번 글에서는 Search API에 대해 알아보겠습니다. 다음 글 Query DSL을 다루기 victorydntmd.tistory.com http://labs.brandi.co.kr/2021/07/08/leekh.html AWS Elasticsearch + Python을 활용한 '검색' 도전기 Overview labs.brandi.co.kr https://db-engines.com/en/ranking/search+engine..
[파이썬] 크롤링 속도 개선 방법
·
🐞프로그래밍
파이썬 크롤링을 더 빠르게 수행하는 몇 가지 방법을 제안해 드리겠습니다. 비동기 처리(Asynchronous Processing) 사용: 비동기 처리는 코드를 실행하는 동안 다른 코드 실행을 중단하지 않고도 병렬로 작업을 처리할 수 있도록 하는 기술입니다. 비동기 처리를 사용하면 더 빠르게 웹 사이트에서 데이터를 가져올 수 있습니다. 예를 들어, asyncio와 aiohttp 모듈을 사용하여 비동기 HTTP 요청을 처리할 수 있습니다. 멀티스레딩 또는 멀티프로세싱 사용: 멀티스레딩 또는 멀티프로세싱을 사용하여 CPU 및 I/O 바운드 작업을 병렬로 처리할 수 있습니다. CPU 바운드 작업은 계산 집약적 작업으로서, 멀티프로세싱을 사용하여 처리할 수 있습니다. I/O 바운드 작업은 네트워크 또는 디스크 I..