[Linux] Initial Server Setup Guide
Abstract 이 문서는 새로운 리눅스 원격 서버의 초기 설정을 위한 종합 가이드이다. SSH 연결, 호스트 이름 설정, 사용자 관리, 보안 설정 및 시스템 업데이트까지의 과정을 다룬다. 이 가이드는 새로운 리눅스 서버 인스턴스를 생성한 후, 안전하고 개인화된 환경을 보장하기 위한 필수적인 초기 단계들을 안내한다. Outline 서버에 ...
Abstract 이 문서는 새로운 리눅스 원격 서버의 초기 설정을 위한 종합 가이드이다. SSH 연결, 호스트 이름 설정, 사용자 관리, 보안 설정 및 시스템 업데이트까지의 과정을 다룬다. 이 가이드는 새로운 리눅스 서버 인스턴스를 생성한 후, 안전하고 개인화된 환경을 보장하기 위한 필수적인 초기 단계들을 안내한다. Outline 서버에 ...
This post is based on lecture notes: Digital System Design: Verilog and FPGA by Hyokeun Lee Ph.D. 1. Module A module is the fundamental unit of design in Verilog. It is common (but not strictly re...
Abstract As a core User-Defined Type (UDT) in C++, the class is fundamental for object-oriented programming. It encapsulates data and behavior, separating the public interface from the private impl...
Abstract 포스트를 작성하다보면 긴 코드라든가, 문장 길이로 인해 포스트의 너비가 더 넓었으면 좋겠다는 생각이 든다. Chirpy 기본 theme에서는 사이드바가 고정되어 있지만, 이를 toggle 버튼으로 열고 닫을 수 있게 커스텀하였다. Implementation Html GitHub _includes/sidebar-toggle.html 참...
Abstract value.cpp Run ▶ Click Run ▶ In the above code, the compiler fails to compile and returns an error: cannot bind non-const lvalue reference of type ‘int&...
Abstract Chirpy 테마에서 가장 맘에 들지 않았던 부분은 바로 코드 블럭(```)이다. 코드 highlighting도 맘에 안들고, 디자인도 맘에 들지 않아 css 조정을 통해 cpp style의 custom을 시도한 바 있으나, VSCode 만큼의 code highlighting을 기대하긴 힘들었다 (VScode는 syntax 뿐만 아니라...
Abstract verilog 복습을 위해 구성한 WSL+VSCode 환경에서 Verilog 개발 환경 설정 및 자동화 과정을 정리한다. Extensions VScode 확장 프로그램으로 Verilog Format과 Verilog-HDL/SystemVerilog/Bluespec SystemVerilog를 설치한다. WSL 환경이므로 Verilo...
Definition static_cast<target-type>(expression) Converts between types using a combination of implicit and user-defined conversions. The conversion is determined at compile time and doe...
This post is a summary of paper, DecDEC: A Systems Approach to Advancing Low-Bit LLM Quantization. Abstract Quantization of Large Language Models (LLMs) has recently gained popularity, particularl...
Define aligned_alloc is defined in header <cstdlib> since C++17. void* aligned_alloc(std::size_t alignment, std::size_t size); Allocate size bytes of uninitialized storage whose alignmen...