Jeykll 블로그 글쓰는 법

jekyll에 post를 쓰는 방법은 _posts경로 아래에 글을 쓰는 방법이 있다.

이때 markdown파일명은 다음과 같은 규칙을 가진다.

  1. yyyy-mm-dd-name.md

  2. 파일명에는 ‘_‘가 들어 갈수 없다. ex)

    2033-03-01-new_post.md // not allow 2033-03-01-new-post.md // allow

post파일의 경우 상단에 다음과 같은 속성이 위치 한다.

---
layout: posts
title: 재목
date: yyyy-mm-dd hh:mm:ss
cartegories: tag1 tag2
---
  1. layout , _layouts에 정의 되어 있는 posts
  2. title, post의 제목
  3. date post가 작성된 날짜 뒤에 있는 시분초 utc는 생략 가능 하다. 위 경우에는 utc+9이다
  4. cartegories, 공백으로 구분된 카테고리 assets/img/

2023

spice simulator list

less than 1 minute read

SPICE(Simulation Program with Integrated Circuit Emphasis)란 전자 회로를 시뮬레이션 하기 위한 프로그램이다. 국내에 잘 알려진 SPICE로는 Cedance사의 PSpice가 있다. 하지만 PSpice외에 다른 SPICE프로그램도 다수 ...

데비안 계열 리눅스 deb 파일 설치

less than 1 minute read

데비안 계열 os에서는 *.deb(debian software package)라는 패키지를 사용한다. 이를 설치하기 위해서는 dpkg 명령어를 이용한다.

Passive Filter

less than 1 minute read

전자회로에서 필터란 특정 대역의 신호(Signal)을 통과시키는 것을 말합니다.

Uart Protocol

less than 1 minute read

UART Protocol Spec Serial Protocol Asynchronous Full Duplex Send LSB Bit First IDLE : High Signal Start Bit : Low Signal 1 Tick Stop Bit ...

GCC -I Option

less than 1 minute read

GCC option -I는 Include의 약자로 Include 즉 *.h 파일이 모여 있는 위치 또는 *.h파일의 경로를 입력 합니다.

Edge Detect Circuit

less than 1 minute read

디지털 시스템에서는 한개의 엣지를 입력 받아야 하는 경우가 생긴다. 예를 들어서 UART에서 Start Bit를 감지하는 경우 같은 것이다.

Function and Task

less than 1 minute read

Verilog에서 function구조는 다음과 같다.

XOR

less than 1 minute read

Circuit

SWITCH

less than 1 minute read

Circuit with TEST

2NAND

less than 1 minute read

Circuit

PWM

less than 1 minute read

PWM (Pluse width modulation)

리눅스에서 sudo가 안될때 해결 법

less than 1 minute read

간혹 리눅스에서 sudo를 치고 password를 입력 해도 sudoer를 확인해 보라는 안내메시지만 뜨고 sudo 명령어를 통해서 root에서 사용을 못할 떄가 있다. 이런 경우는 현제 세션의 user가 추가된 그룹이 /etc/sudoers에서 sudo명령어를 사용할 권한이 없...

Back to Top ↑

2022

nvim csharp

less than 1 minute read

#nvim에 c# 세팅 nvim에 c# lsp를 세팅하는 과정을 알아본다.

Windowsnvim

less than 1 minute read

- layout: posts title: Jekyll date: 2022-10-13 categories: nvim

Nvim

less than 1 minute read

nvim information

Jekyll

less than 1 minute read

목차

Back to Top ↑