Skip to content

Instantly share code, notes, and snippets.

View dsdanielpark's full-sized avatar
🏄‍♂️
Believe in your potential. May the Force be with us.

MinWoo(Daniel) Park dsdanielpark

🏄‍♂️
Believe in your potential. May the Force be with us.
View GitHub Profile
@dsdanielpark
dsdanielpark / LLM.md
Created October 4, 2023 08:24 — forked from rain-1/LLM.md
LLM Introduction: Learn Language Models

Purpose

Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.

Avoid being a link dump. Try to provide only valuable well tuned information.

Prelude

Neural network links before starting with transformers.

@dsdanielpark
dsdanielpark / Ubuntu+Nginx+SSL(acme.sh)+CloudflareDNS+Flask.md
Last active April 23, 2025 01:47
Ubuntu 22.04 + Nginx + SSL (acme.sh) + Cloudflare DNS Setup + Flask + tumx

Step-by-Step Guide to Setting Up SSL with Nginx on Ubuntu 22.04

This guide provides a detailed walkthrough on setting up SSL (Secure Sockets Layer) with Nginx using OpenSSL and acme.sh on Ubuntu 22.04. Each step is explained with key concepts and commands for a clear understanding.

Most errors occur due to incorrect paths. Know your path and create files and directories correctly before passing them as arguments.

@dsdanielpark
dsdanielpark / ubuntu2204_ruby_gem_jekyll_for_gitblog.md
Last active June 18, 2024 02:53
Installing Ruby GEM Jekyll on Ubuntu 22.04 with RVM (GitBlog)

Installing command Ruby + GEM + Jekyll on Ubuntu 22.04 with RVM

Q: Why did you build it manually when GitHub builds automatically?
GitHub builds take a long time depending on the number of posts, and debugging is very difficult as changes are not reflected in real-time.

Check Jekyll installation, RubyGems.org

Command summary

@dsdanielpark
dsdanielpark / HuggingfaceBigModelSequentialDownloader.md
Created April 21, 2025 13:07
Rate‑Limit‑Safe Sequential Download of Large HuggingFace Models
"""
Sequentially download all files from a Hugging Face model repository
while preserving default cache behavior and robust retry logic.
"""
import os
import time
import argparse
import logging