Skip to content

Instantly share code, notes, and snippets.

View hkdobrev's full-sized avatar

Harry Dobrev hkdobrev

View GitHub Profile
@rain-1
rain-1 / LLM.md
Last active December 4, 2025 11:51
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.

@AddisonG
AddisonG / mailmap_maker.py
Created October 25, 2023 05:17
Automatically build a .mailmap file
#!/usr/bin/env python3
"""
Run this like:
cd /my/git/dir/
git shortlog -s -n -e | python3 ~/mailmap.py > .mailmap
"""
import sys
@rameerez
rameerez / docker-host-production-setup-ubuntu-server.sh
Last active December 5, 2025 01:09
This script sets up a secure, production-ready Docker host on Ubuntu Server 22.04 LTS
#!/bin/bash
# Production Docker Host Setup Script
# This script sets up a secure, production-ready Docker host on Ubuntu Server 22.04 LTS
# It includes security hardening, performance optimizations, and best practices
# CAUTION: This script makes significant system changes. Use at your own risk.
set -euo pipefail
# --- AESTHETICS ---