전체 글 (156) 썸네일형 리스트형 쉘 커맨드 , 쉘 스크립트 리눅스 쉘 쉘은 사용자가 운영체제와 상호작용할 수 있도록 명령어를 입력받아 실행해주는 프로그램입니다.모든 것은 파일이라는 철학 아래에서 인터렉션이 파일을 읽고 쓰는 것처럼 이루어져있음 (마우스, 키보드 디바이스 관련 기술도 포함)리눅스의 철학은 여러 기본단위의 프로그램들이 유기적으로 각자의 역할을 하면서, 이를 조합하여 전체 시스템이 동작하도록함.(ls | grep의 경우에도, lsgrep이란 명령어가 아닌 ls와 grep을 유기적으로 조합하여 사용함)리눅스에는 여러가지 shell이 있지만 ubuntu에서도 그렇고 bash shell이 범용으로 쓰이기에 bash 명령어 위주로 학습할것.Bash: 기본적인 쉘로, 많은 시스템에서 기본으로 제공됩니다. 간단하고 강력하지만, Zsh에 비해 기능이 제한적입니다... 프론트엔드 환경설정 및 배포 1. NVM (Node Version Management)한 컴퓨터에서 여러 버전의 Node.js를 사용 가능하게 해주는 버전 관리 도구Node.js는 글로벌 설치가 기본이나 프로젝트마다 요구하는 버전이 다를 수 있음. 프로젝트마다 다른 Node 버전을 요구할 때 필수 도구입니다. 2.Node.js정의: JavaScript 런타임 환경 (브라우저가 아닌 환경에서 JS 실행 가능하게 해줌)역할:yarn, npm 같은 패키지 매니저 실행yarn dev, yarn build 같은 스크립트 실행프론트 빌드(예: yarn build)와 dev 서버 실행(예: yarn dev)을 가능하게 함.관리 방법: nvm 사용해서 버전 컨트롤 (.nvmrc로 특정 버전을 명시하여 사용 선언됨)3. 패키지 매니저정의: 외부 .. Persistence Context, EntityManager 트랜잭셔널이 자동으로 걸리는지 검증lazyloading이랑 영속성 컨텍스트랑 어떻게 연관되는지 Persistence Context Persistence Context의 핵심 기능기능설명1차 캐시 (First-Level Cache)같은 엔티티를 여러 번 조회해도 DB 쿼리를 다시 날리지 않음엔티티 동일성 보장같은 영속성 컨텍스트 안에서는 동일한 ID의 엔티티는 항상 같은 객체 (== 비교 true)변경 감지 (Dirty Checking)트랜잭션 커밋 시, 엔티티의 변경 사항을 감지해 자동으로 update 쿼리를 생성쓰기 지연 (Write-Behind)persist/save한 insert 쿼리를 모아뒀다가 트랜잭션 종료 시 한꺼번에 실행지연 로딩 (Lazy Loading)프록시 객체로 관계 엔티티를 .. Code Structuring Technique Early Return Patternused to exit a function as early as possible when a condition is not met, preventing unnecessary computations.Why Use It?Improves readability by handling edge cases first.Avoids unnecessary processing when conditions are not met.Reduces the depth of nested logic.Example Without Early Return (Deep Nesting)public void processUser(UserDto dto) { if (dto != null) { if (.. 원격제어 MobaXterm MobaXterm is an all-in-one remote access tool for Windows that supports:SSH (Secure Shell)X11 ForwardingVNC (Virtual Network Computing) with built-in VNC viewer! RDP (Remote Desktop Protocol)FTP/SFTP (File Transfer Protocols) VNC (Virtual Network Computing)VNC (Virtual Network Computing) is a remote desktop sharing system that allows users to control a computer remotely by transmitting.. 영상처리 인터페이스 및 프로토콜 개략 Video Source CategoryEach category represents a different way of accessing video streams, depending on how the camera or source delivers its data.Some (like Webcam & Video File) are direct video sources.Others (like ONVIF & IP Camera) use network streaming protocols.Some (like GStreamer) act as advanced video pipelines. Category What It IsHow It WorksWebcamA directly connected USB camera or bui.. Github Issue Intelij에서Github Issue와 연동된 Branch 생성하기 : https://shinsunyoung.tistory.com/41Github Issue를 Intelij와 연결하기 : https://shinsunyoung.tistory.com/81 Exception Handling & Logging 예외처리예외 처리(Exception Handling) 는 프로그램 실행 중에 발생할 수 있는 예외적인 상황을 적절하게 처리하기 위한 프로그래밍 기법입니다. Exception 종류Throwable├── Error (Not usually caught by applications)│ ├── LinkageError (Errors related to linking problems with classes)│ │ ├── NoClassDefFoundError│ │ └── ExceptionInInitializerError│ ├── VirtualMachineError (Errors produced by the JVM making continuation impossible)│ │ ├── Out.. 이전 1 2 3 4 5 ··· 20 다음 목록 더보기