Provenance: public X.com post by @hooeem (https://x.com/hooeem/status/2033198345045336559). Captured via operator paste because X paywalls automated scrapers. Author appears to be reverse-engineering the CCA-F Exam Guide for marketing/teaching purposes — content overlaps with the official NTK guide at the structure level (5 domains, 7 + 5 + 6 + 6 + 6 task statements, 6 scenarios) but adds exam-pattern detail (anti-patterns, distractor shapes, sample-question Q-numbers, numeric facts) that the NTK guide keeps confidential.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "project": "Agora - AI Philosopher Debate Platform", | |
| "version": "1.0", | |
| "description": "Development tasks for MVP demo organized by phase with dependencies", | |
| "phases": { | |
| "1": "Core Setup", | |
| "2": "Backend Development", | |
| "3": "Frontend Development", | |
| "4": "Integration & Polish" | |
| }, |
CONTEXT: You are building a production-ready todo application using Ruby on Rails. This is a learning project to understand Rails MVC architecture, ActiveRecord ORM, and RESTful conventions. Target: Individual users managing personal tasks locally.
ACTION: Create a complete Rails todo application with SQLite3 that allows users to:
- Add, edit, delete, and mark tasks as complete
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Basic Settings | |
| set nocompatible " Use Vim settings rather than Vi settings | |
| filetype plugin indent on " Enable file type detection and plugin/indent loading | |
| syntax enable " Enable syntax highlighting | |
| set encoding=UTF-8 " Set encoding to UTF-8 | |
| set termencoding=utf-8 " Set terminal encoding to UTF-8 | |
| set number " Show line numbers | |
| set cursorline " Highlight current line | |
| set showmatch " Show matching brackets | |
| set incsearch " Incremental search |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git config --global alias.review '!f() { git add -A && git diff --staged | sgpt \"Generate a detailed code review\"; }; f' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git config --global alias.aicommit '!f() { git add -A && git diff --staged | sgpt "Create a concise commit message with: summary (50 chars) + optional bullet points for details. Do not add headings." | git commit -F -; }; f' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Oxide theme for Zsh | |
| # | |
| # Author: Diki Ananta <diki1aap@gmail.com> | |
| # Repository: https://github.com/dikiaap/dotfiles | |
| # License: MIT | |
| # Prompt: | |
| # %F => Color codes | |
| # %f => Reset color | |
| # %~ => Current path |