Skip to content

Latest commit

 

History

History
110 lines (93 loc) · 3.18 KB

README.md

File metadata and controls

110 lines (93 loc) · 3.18 KB

CodeCook.live

Daily Build Log

2025-01-03 - Day 14

🪝 Created hooks for session management

2025-01-02 - Day 13

🦋 Added Bluesky sharing functionality #️⃣ Enhanced posts with hashtag support 🧵 Published first thread via Bluesky API 📂 23 ➕ 1201 ➖ 388

2025-01-01 - Day 12

🔄 Refactored session and authentication logic 🦋 Added Bluesky connection functionality 📄 Implemented project import and editing features 🔧 Added search, sort, and live session management components 📂 67 ➕ 1641 ➖ 592

2025-12-31 - Day 11

✨ Renamed platform to CodeCook.live 🔄 Massive refactor: threads → sessions, sections → blocks 🛠 Added project edit page with form components 📂 111 ➕ 1553 ➖ 1354

2025-12-30 - Day 10

🛠 Improved Typescript interfaces 📄 Refactored thread fetching and parsing for clarity 🔗 Added waitlist dialog and join functionality ✨ Enhanced project details with homepage field 📂 40 ➕ 694 ➖ 291

2025-12-29 - Day 9

🔗 Added CommitLink and CommitLinkSelector components 📝 Enhanced ThreadEditor with auto-save 🔄 Updated thread editing and creation API 📂 24 ➕ 700 ➖ 206

2025-12-28 - Day 8

📄 Enhanced ThreadEditor with filtering, error handling, and dynamic sections 🖼 Added avatar upload and profile editing ✨ Improved thread and project management 📂 94 ➕ 2372 ➖ 611

2025-12-27 - Day 7

🔄 Refactored GitHub commits API and user profile logic 🛠 Enhanced ThreadEditor with code changes + syntax highlighting 🤖 Added AI assist for writing threads 📄 Improved ProjectPage and UserPage 📂 63 ➕ 1571 ➖ 484

2025-12-26 - Day 6

🤖 Added AI-generated thread ideas 📄 Enhanced ThreadEditor with image upload and title selection 🔄 Refactored UI for thread creation and file selection 🛠 Improved GitHub auth and CommitDiff 📂 49 ➕ 2555 ➖ 588

2025-12-25 - Day 5

🎅 Merry Christmas! 🤖 Added AI connection to ThreadEditor 📦 Installed AI libraries 📂 7 ➕ 373 ➖ 101

2025-12-24 - Day 4

📝 Added ThreadEditor with drag-and-drop and Markdown support 🔄 Refactored commit and profile handling 🤖 Integrated OpenAI for AI-assisted thread creation 📂 38 ➕ 2204 ➖ 340

2025-12-23 - Day 3

👤 Added user authentication and sign-in flow 🔄 Refactored GitHub integration and project logic 🛠 Built CommitManager for managing commits 📄 Enhanced UI for projects and profiles 🗃 Implemented database migrations 📂 75 ➕ 2763 ➖ 368

2025-12-22 - Day 2

🗂 Organized directory structure 📄 Added ProjectCard component and improved UI 🖼 Enhanced app visuals with icons and tooltips 🛠 Integrated Supabase 📂 64 ➕ 1132 ➖ 411

2025-12-21 - Day 1

🚀 Initial prototype 👤 Built user profiles and signup flow 💡 Prototyped features and workflows 📂 71 ➕ 6867 ➖ 762

Build Log Generate Stat Script

git log --shortstat --date=iso | awk '
/^Date:/ { 
    date=$2 
}
/files changed/ { 
    files[date]+=($1); 
    insertions[date]+=($4); 
    deletions[date]+=($6); 
} 
END { 
    for (d in files) {
        print d, "📂", files[d], " ➕", insertions[d], " ➖", deletions[d]
    }
}' | sort