Skip to content

Instantly share code, notes, and snippets.

View hyunolike's full-sized avatar
✈️
Traveling in 🇲🇾🇯🇵

장현호 Hyunho Jang hyunolike

✈️
Traveling in 🇲🇾🇯🇵
View GitHub Profile
@hyunolike
hyunolike / dev-en.md
Created February 22, 2024 11:49
개발자라면 알아두면 좋은 영어 줄임말 모음: (24.02.22)
LGTM
Looks good to me (굿굿)
SGTM
Sounds good to me (굿굿)
ACK
Acknowledged (오키)
NACK
Not acknowledged (노노)
IDK
@hyunolike
hyunolike / ChannelSftp.mkdir.md
Created April 25, 2023 12:20
ChannelSftp.mkdir method 분석

mkdir

public void mkdir(String path) throws SftpException{
    try{
      path=remoteAbsolutePath(path);  // 기존 경로에 붙여서 제공

      sendMKDIR(Util.str2byte(path, fEncoding), null); // 기존 경로의 utf-8 

      Header header=new Header(); // SSH_FXP_STATUS = 101
@hyunolike
hyunolike / how_to_set_https_by_using_nginx.md
Created January 19, 2023 05:14 — forked from woorim960/how_to_set_https_by_using_nginx.md
Nginx를 이용하여 https 적용하는 법

Nginx 설치

# Nginx 설치
$ sudo apt install nginx

# Nginx 실행
$ sudo service nginx start

이로써, Nginx 설치가 끝났다.

@hyunolike
hyunolike / docker-compose.yml
Created January 12, 2023 06:38
🍃mongodb with docker-compose
version: '3.8'
services:
mongodb:
image: mongo
container_name: mongodb
ports:
- 27017:27017
volumes:
- ./mongodb:/data/db
environment:
🇰🇷S. Korea 5 minutes ago
🤒Active: 2,139,158
😌Recovered: 20,134,110
💀Deaths: 26,109
💉Tests: 15,804,065
🌞 Morning 31 commits █▊░░░░░░░░░░░░░░░░░░░ 8.9%
🌆 Daytime 166 commits █████████▉░░░░░░░░░░░ 47.4%
🌃 Evening 104 commits ██████▏░░░░░░░░░░░░░░ 29.7%
🌙 Night 49 commits ██▉░░░░░░░░░░░░░░░░░░ 14.0%