Go to bookmark
🚀 What to Build Today?
Ready to start your next adventure? Here are some exciting project ideas to explore:
✨ Current Focus: GitHub + LLM Integration
Building an intelligent content review system that leverages LLMs (like Gemini) to automatically review markdown files for grammar, spelling, completeness, and technical accuracy, then commits improvements for review.
🎯 Quick Project Ideas
- 📖 Documentation Enhancement: Improve existing quest documentation with AI assistance
- 🤖 AI-Powered Code Review: Create automated code quality checks using GitHub Actions
- 🎮 New Quest Creation: Design and develop a new quest following our gamified learning system
- 🔗 Integration Projects: Build connections between different tools and platforms
- 📊 Analytics Dashboard: Track learning progress and quest completion rates
- 🌐 Community Features: Enhance collaboration tools and discussion systems
TODO
Add a story line
Recent Additions
Gamified Quest System 🎮
The IT-Journey now features a comprehensive Quest-based learning system that transforms technical education into epic adventures! Our quest system includes:
- 📚 58+ Interactive Quests across all skill levels and specializations
- 🎯 Level-based Progression from n00b (000) to master (111)
- ⚔️ Fantasy Theme Integration making learning engaging and memorable
- 🏆 Achievement Tracking with skill validation and portfolio building
- 🗺️ Quest Networks connecting related learning paths
Enhanced Navigation & Structure 🧭
Updated navigation system with improved organization:
- 🔍 Quick-Start Tutorials for immediate hands-on learning
- 📖 Comprehensive Documentation Library with Jekyll, development guides
- 📔 Personal Notebooks including Jupyter integration
- 🎪 About Section with configuration, themes, and community features
AI-Powered Development Guidelines 🤖
Integrated comprehensive AI development practices:
- Path-driven Development following natural software evolution patterns
- Container-first Deployment ensuring reproducible environments
- MCP Integration for standardized AI context sharing
- Collaborative Learning emphasizing open-source principles
Introduction
This is where we begin our journey — the place where we return after getting lost or wandering off. Think of this as our home base with a collection of maps, tools, and information we need to traverse through this chaotic digital world.
There are journals to capture our experiences and findings, notes to quickly reference when our memories fail, and a library of documentation that gives us the depth of knowledge to build upon and share. Everything here is open source and free to use, and the goal is to make this repository a comprehensive learning tool for everyone to use and share.
Abstract
From zero to hero collection of docs, tools, scripts, walk-throughs, and information to help with your IT journey. The IT-Journey platform now features 58+ interactive quests, comprehensive documentation, AI-powered development practices, and a thriving community ecosystem.
🎮 Zer0 to Her0 Quest System
Experience learning through our gamified quest system that transforms technical education into epic adventures:
Quest Progression Levels
- n00b (000) - Complete beginners starting their IT journey
- Beginner (001) - Basic concepts and foundational skills
- Intermediate (010) - Building practical applications
- Advanced (011) - Complex systems and architectures
- Expert (100) - Specialized domain mastery
- Master (101) - Teaching and mentoring others
- Hero (110) - Industry leadership and innovation
- Legend (111) - Pioneering new technologies
Main Quest Lines
- 🌟 Initialization World - Character creation, tool setup, fundamental concepts
- ⚔️ Development Mastery - Programming languages, frameworks, and best practices
- 🛡️ System Administration - Infrastructure, networking, and operations
- 🏰 DevOps & Deployment - CI/CD, containerization, and cloud platforms
- 🔮 AI Integration - Machine learning, automation, and AI-assisted development
Current Quest Catalog
- Init World Quests: Foundation building for new adventurers
- Language Mastery: Python, JavaScript, Bash, and more
- Tool Proficiency: Git, VSCode, Docker, and development environments
- Platform Specialization: Linux, Windows, macOS, and cloud platforms
- Project Building: Real-world applications and portfolio development
Skill Level Route
For those who prefer the route based on difficulty:
- Beginner - 000
- Intermediate - 001
- Advanced - 010
- Expert - 011
- Master - 100
- Hero - 101
- Super Hero - 110
- God - 111
Stack Attack
For those who are intermediate/advanced and want to work on a specific stack:
- Front-end (HTML, CSS, JS)
- Back-end (Python, PHP, Ruby, Command Line)
- Databases (MySQL, NoSQL, PostgreSQL)
- Integrations (API, REST, GraphQL, SOAP)
- Infrastructure (AWS, Azure, GCP, Linux)
- Solutions (LAMP, Jamstack, MERN, WINS)
Specialization route
For those who are advanced/expert and what to specialize in a field:
- Infrastructure (System Administration, Networking, Operating Systems)
- DevOps (Source Code control, CD/CI, Automated Testing, Agile Development)
- Web Design (HTML, CSS, JavaScript, Jekyll, Bootstrap)
- Software Engineering (Python, Ruby, Java, C#, C++)
- Data Science (Python, SQL, BI, Hadoop, Spark, HBase, Hive, Kafka, Cassandra)
- Cyber Security (Firewalls, Metadata analysis, Network Penetration, Ransomware, Vulnerability, Exploits, Malware)
- Multimedia/Graphic Design (GIMP, Blender, Inkscape, Krita, Pencil 2D)
- Mobile Development (Android, iOS, React Native)
- Game Development (Unity, Unreal Engine)
- AI (Machine Learning, Deep Learning, Natural Language Processing)
Project Route
- Wikimedia Server - Downloads
- Personal Website
- Retro “Picade”
- Mobile App
- Web Scraper
- Documentation Site
- Video game
Quick Start
For those who are already familiar with core IT concepts, this is the quick start guide to get you going. There are some prerequisites listed before you can clone this repository. Each is linked to a detailed installation instruction.
Master Setup Local link Or Web link
Integrated Development Environment (Visual Studio Code) Local link Or Web link
Static Website Generator (Jekyll) Local link Or Web link
Site layout
Top Navigation Bar
<div class="bd-example-snippet bd-code-snippet">
{%- include header.html -%}
</div>
This is a fixed navigation bar that is always visible at the top of the page. It is a horizontal bar that contains links to the different sections of the site. The links are organized into five main sections:
- Quick-Start - Fast-track tutorials and essential setup guides
- Journey - Learning posts, quests, and pages documenting your adventure
- Library - Comprehensive documentation and technical guides
- Notebook - Personal notes and Jupyter notebook experiments
- About - Platform information, configuration, and community resources
Sidebar Navigation
The sidebar navigation is a vertical bar that is always visible on the left side of the page. It is automatically generated based on the navigation YAML files under _data/navigation/ directory, with individual files for each section:
main.yml- Primary navigation structurehome.yml- Home page specific navigationposts.yml- Journal and quest navigationdocs.yml- Documentation library organizationabout.yml- About section and configuration pagesquickstart.yml- Quick-start tutorial organization
Including a truncated navigation YAML file under the _data folder will automatically generate the sidebar and top navigation.
{% capture nav %}{% include_relative _data/navigation-old.yml %}{% endcapture %}{{ nav | truncate: 332 }}
Table Of Contents right sidebar
This is an automatically generated table of contents that is always visible on the right side of the page. It is generated from using a programs located under /_includes/toc.html
It is based on the heading tags in the markdown file. The table of contents is generated from the markdown file and is updated whenever the markdown file is updated.
Source Code Short Cuts
Above the right TOC, there is a short cut to the source code. This is a link to the GitHub repository. The link to the shortcut is based on the config file located under /_config.yml. This is the where you have forked this repository.
repository : "bamr87/it-journey" # GitHub username/repo-name
local_repo : "it-journey"
home_dir_pc : &home-win '$HOME'
home_dir_mac : &home-mac '$HOME'
local_git_pc : [ *home-win, 'github\' ]
local_git_mac : [ *home-mac, 'github/' ]
NOTE: Replace $HOME with your home directory. Normally, it is the user id of the machine. Just type echo $HOME in the terminal.
Sitemap
Site Navigation Index
Explore all 0 pages across 0 collections on this site.
Content Statistics
| Collection | Page Title | Description | Last Modified | Categories | Tags | Actions |
|---|---|---|---|---|---|---|
| About |
IT-Journey About Section
Organization of the IT-Journey about pages and content structure |
Organization of the IT-Journey about pages and content structure | Jan 13, 2025 | |||
| About |
About
Learn about IT-Journey's mission to democratize IT education through open-sou... |
Learn about IT-Journey's mission to democratize IT education through open-source technologies and collaborative learn... | Nov 02, 2025 | about | #about #principles #open-source +12 | |
| About | Configuration Automation System | Complete guide to the automated configuration management system for IT-Journey. | Jun 22, 2025 | #automation #configuration #ci-cd +2 | ||
| About |
Contributing to IT-Journey
How to contribute to IT-Journey - a gamified learning platform for IT education |
How to contribute to IT-Journey - a gamified learning platform for IT education | Nov 07, 2025 | about | #contributing #community #open-source +1 | |
| About | Bamr87 | IT Wizard, Software Architect, Tech Enthusiast. | May 25, 2024 | |||
| About |
Learning Platform Features
User-facing features and educational tools available on IT-Journey platform. |
User-facing features and educational tools available on IT-Journey platform. | Oct 13, 2025 | about | #features #learning #education +1 | |
| About | Bamr87 | IT Wizard, Software Architect, Tech Enthusiast. | Jan 21, 2025 | |||
| About | Purpose | Statement of Purpose | May 11, 2024 | |||
| About | Jekyll Configuration & Site Structure | Configuration file contents, site tree structure, and automated regeneration workflows. | Jul 03, 2025 | #configuration #jekyll #automation +2 | ||
| About | No description available | Nov 16, 2025 | ||||
| About | Site Navigation Map | Complete sitemap and navigation structure for the IT-Journey platform. | Jul 03, 2025 | #navigation #sitemap #structure +1 | ||
| About | Site Tree Structure | Complete directory structure and file organization of the IT-Journey platform. | Jul 03, 2025 | #structure #organization #navigation +1 | ||
| About | versioning | https://semver.org/ | May 21, 2022 | posts | #article | |
| Docs | Jekyll - Liquid | Useful tricks of Liquid, which are used in Jekyll. | May 16, 2024 | #Jekyll #Liquid | ||
| Docs | Jekyll - Math Symbols with MathJax | Display mathematical notation in web pages with MathJax. | Jun 04, 2022 | #MathJax #Mathematic | ||
| Docs |
Learning Resources Library
Reference documentation and learning resources for tools and technologies use... |
Reference documentation and learning resources for tools and technologies used in IT-Journey | Oct 19, 2025 | docs home | ||
| Docs |
Jekyll Documentation
Jekyll documentation specific to IT-Journey implementation |
Jekyll documentation specific to IT-Journey implementation | Oct 13, 2025 | |||
| Docs |
Configuration Options | Jekyll • Simple, blog-a...
The tables below list the available settings for Jekyll, and the various opti... |
The tables below list the available settings for Jekyll, and the various options (specified in the configuration file... | May 02, 2024 | |||
| Docs |
Jekyll Frontmatter CMS
Guide on using Jekyll and Frontmatter as a Content Management System for stat... |
Guide on using Jekyll and Frontmatter as a Content Management System for static site generation | May 16, 2024 | docs jekyll +1 | #jekyll #frontmatter #cms +1 | |
| Docs | Jekyll - Diagrams with Mermaid (Auto-Detection) | 🎯 Mermaid diagrams are automatically detected and rendered. No configuration needed! | Jan 27, 2025 | #Mermaid #Diagram #Auto-Detection +1 | ||
| Docs | Mermaid Auto-Detection Migration Guide | Mermaid Auto-Detection Migration Guide | Jan 27, 2025 | #Mermaid #Migration #Auto-Detection +1 | ||
| Hobbies | hobbies | Art | Jun 04, 2022 | hobbies | ||
| Notebooks |
HTML to markdown web scraping
A simple web scraping project to convert HTML to markdown using Python |
A simple web scraping project to convert HTML to markdown using Python | May 20, 2024 | #python #web scraping #html +1 | ||
| Notebooks |
Jupyter Notebook to Markdown Converter
Convert Jupyter Notebooks to Markdown |
Convert Jupyter Notebooks to Markdown | May 24, 2024 | #jupyter #markdown #converter +1 | ||
| Notebooks |
Chat GPT Text Generation
This notebook demonstrates how to use the Chat GPT model for text generation. |
This notebook demonstrates how to use the Chat GPT model for text generation. | Jul 03, 2025 | notebooks | #NLP #GPT #Text Generation | |
| Notebooks |
Jupyter
This is the Jupyter Notebook page |
This is the Jupyter Notebook page | Jul 03, 2025 | notebooks | ||
| Notebooks |
Markdown to Script Converter
Python utilities to convert markdown files to executable scripts |
Python utilities to convert markdown files to executable scripts | May 15, 2024 | notebooks utilities | #python #markdown #scripting +1 | |
| Notes |
Mastering iTerm Shortcuts for Efficiency
Enhance your productivity with iTerm shortcuts for deleting and navigating wo... |
Enhance your productivity with iTerm shortcuts for deleting and navigating words efficiently on macOS. | Jan 17, 2025 | guides it-journey +3 | #iTerm #macOS #productivity +2 | |
| Notes |
iTerm Tips and Tricks
Unlock your productivity with essential iTerm2 tips for customizing keybindin... |
Unlock your productivity with essential iTerm2 tips for customizing keybindings and navigating text efficiently in th... | Jan 17, 2025 | guides iTerm2 +3 | #customization #iTerm2 #macOS +2 | |
| Notes |
Sass mixins
Learn how to use SASS mixins for modular CSS in Bootstrap 5, enhancing your f... |
Learn how to use SASS mixins for modular CSS in Bootstrap 5, enhancing your front-end development with reusable styles. | Jan 23, 2025 | bootstrap Development +3 | #Bootstrap #CSS #front-end development +2 | |
| Notes |
Using Jekyll, Lambda, and SES for Efficient Web...
|
Below is a detailed walkthrough on how to create a serverless “Contact Us” form using AWS Lambda, API Gateway, and Am... | Jan 25, 2025 | |||
| Notes |
Set Up Azure for Jekyll Contact Us Form
Learn how to easily set up Azure for your Jekyll Contact Us form and enhance ... |
Learn how to easily set up Azure for your Jekyll Contact Us form and enhance user engagement on your website. | Jan 25, 2025 | Development Guides +3 | #Azure #Contact Form #GitHub Pages +2 | |
| Notes |
Host Django on Raspberry Pi: A Complete Guide
|
Below is a detailed, step-by-step guide to hosting your Django project on a Raspberry Pi behind Cloudflare Tunnel. Th... | Feb 05, 2025 | |||
| Notes | GPT App Build | Title: | Nov 16, 2025 | #quest #tutorial | ||
| Notes | Github's hidden gem | title: “github’s hidden gem” description: GPT Promt: | Nov 16, 2025 | |||
| Notes | What is my PiDentity? | What is my PiDentity? 3.14[id] userName: email: github: X: phone: | Nov 16, 2025 | |||
| Notes |
Windows PowerShell Cheatsheet
PowerShell scripting reference for Windows system administration and automation |
PowerShell scripting reference for Windows system administration and automation | Jan 10, 2022 | notes cheatsheets +1 | #powershell #windows #scripting +3 | |
| Notes |
Bash Cheatsheet
Essential bash commands and scripting techniques for system administration an... |
Essential bash commands and scripting techniques for system administration and automation | May 14, 2024 | notes cheatsheets +1 | #bash #linux #script +3 | |
| Notes | Shell and the CLI | Command Line | May 17, 2024 | |||
| Notes | Windows Powershell Cheatsheet | Windows PowerShell is the successor of the windows cmd language, which itself has its roots in the ms-dos Bat languag... | Nov 16, 2025 | #note #powershell | ||
| Notes |
Bash Cheatsheet
BASH cheatsheet - Quick reference guide for Linux bash shell scripting |
BASH cheatsheet - Quick reference guide for Linux bash shell scripting | Aug 07, 2022 | notes cheatsheets +1 | #shell #script #linux +3 | |
| Notes |
Shell and the CLI
Command Line Interface Notes |
Command Line Interface Notes | Jan 05, 2022 | |||
| Notes |
Mac Keyboard Shortcuts
Comprehensive reference guide for Mac keyboard shortcuts to improve productiv... |
Comprehensive reference guide for Mac keyboard shortcuts to improve productivity and efficiency | Apr 29, 2024 | notes cheatsheets +1 | #mac #keyboard #shortcuts +2 | |
| Notes |
Markdown Cheatsheet
Quick reference guide for Markdown syntax including basic formatting, Jekyll-... |
Quick reference guide for Markdown syntax including basic formatting, Jekyll-specific features, and Kramdown extensions | Dec 27, 2021 | notes cheatsheets | #markdown #syntax #reference +2 | |
| Notes |
Programming
Collection of programming languages notes |
Collection of programming languages notes | Jan 02, 2022 | |||
| Notes | test | Nov 16, 2025 | ||||
| Notes |
Sidebar Folder Structure
Jekyll Liquid template code for generating dynamic sidebar navigation with fo... |
Jekyll Liquid template code for generating dynamic sidebar navigation with folder structures from collections | May 16, 2024 | notes dev +2 | #jekyll #liquid #sidebar +3 | |
| Notes | Curiculum | You don’t know what you can’t teach. | Nov 16, 2025 | |||
| Notes | Take good notes | Notes are thoughts to be materialized | Nov 16, 2025 | |||
| Notes | Master's Project | Qualifications General Localized Classes Stack Score Feature Score Footprint Karma Credit Stack | Nov 16, 2025 | |||
| Notes | People | Mission | Nov 16, 2025 | |||
| Notes | Production | Mission Projects must be well documented and designged with self preservation in mind. | Nov 16, 2025 | |||
| Notes | Project List | VS Code Extension your first extension - JE https://yeoman.io/learning/ [ ] | Nov 16, 2025 | |||
| Notes |
HTML to Markdown Web Scraping
A simple web scraping project to convert HTML to markdown using Python with B... |
A simple web scraping project to convert HTML to markdown using Python with Beautiful Soup and markdownify | Jul 03, 2025 | notes python +1 | #python #web-scraping #html +3 | |
| Notes |
Jekyll LLM Integration Ideas
Exploring ideas and implementation strategies for integrating Large Language ... |
Exploring ideas and implementation strategies for integrating Large Language Models (LLMs) into Jekyll static sites f... | Jun 01, 2024 | notes jekyll +1 | #jekyll #llm #automation +2 | |
| Notes |
Notes (~) Index
Notes Index |
Notes Index | May 24, 2024 | notes | ||
| Notes | AWS Practice Question Set | AWS vs Azure vs GCP | Nov 16, 2025 | #notes | ||
| Notes | Favicons | https://mailchimp.com/resources/favicon-size/ | Nov 16, 2025 | #notes | ||
| Notes | AWS Practice Question Set | AWS vs Azure vs GCP | Jan 12, 2022 | notes | #notes | |
| Notes | Start | Initialize | Nov 16, 2025 | #test | ||
| Posts |
Journey (~) Index
Comprehensive index of IT-Journey posts including how-to guides, articles, an... |
Comprehensive index of IT-Journey posts including how-to guides, articles, and journal entries documenting the learni... | Aug 26, 2025 | posts index | #journey #guides #articles +5 | |
| Posts |
SEC's Edgar Database
The SEC's Edgar database provides insights into the financial health and oper... |
The SEC's Edgar database provides insights into the financial health and operational performance of publicly-traded c... | Apr 16, 2024 | |||
| Posts | Sonic Pi | Install Sonic PI | Jan 18, 2022 | posts | ||
| Posts | dual boot win linux | VS Code install | Mar 07, 2022 | posts | #article | |
| Posts |
Interactive JavaScript & Jekyll Layout Magic: A...
Dive deep into Jekyll's layout system combined with dynamic JavaScript functi... |
Dive deep into Jekyll's layout system combined with dynamic JavaScript functionality. Learn how to create interactive... | Sep 01, 2025 | Posts Web Development +2 | #javascript #jekyll #web-development +4 | |
| Posts | Desktop Widgets - Windows | Install rainmeter | Jun 10, 2022 | posts | #article | |
| Posts | Angular Tour of Heros | https://angular.io/tutorial | May 20, 2024 | posts | #article | |
| Posts |
Chat GPT vs The Impossible Triangle: AI Limitat...
Practical and impractical uses of Chat GPT in programming and graphic design ... |
Practical and impractical uses of Chat GPT in programming and graphic design through demonstration of its limitation ... | Nov 01, 2025 | Posts AI-Analysis +1 | #chatgpt #ai-limitations #ai-evolution +9 | |
| Posts |
100 Questions & Answers About Arab-Americans: A...
Comprehensive guide to understanding Arab-American culture, demographics, rel... |
Comprehensive guide to understanding Arab-American culture, demographics, religion, and addressing common stereotypes... | Aug 16, 2025 | Research Cultural-Education +1 | #arab-americans #cultural-understanding #journalism-guide +6 | |
| Posts | RetroPie Imaging | To write a RetroPie .img.gz image to a microSD card using the dd command in Linux, you need to follow a series of ste... | May 20, 2024 | posts | ||
| Posts | Raspberry Pi | Specs | May 13, 2024 | notes | #raspberrypi | |
| Posts |
GPT - CV Analysis
An analysis of a CV and recommendations for career paths and growth. |
An analysis of a CV and recommendations for career paths and growth. | May 28, 2024 | Finance | #IT Consulting #Enterprise Systems #ERP Systems +4 | |
| Posts | Bootable mac os | Create a bootable installer for macOS | Mar 28, 2024 | |||
| Posts |
Auto Increment Frontmatter Version
How to automatically increment the version number in the frontmatter of a mar... |
How to automatically increment the version number in the frontmatter of a markdown file after every commit. | May 28, 2024 | posts automation +1 | #git #automation #versioning +2 | |
| Posts | Latest Trends in Manufacturing Technology | Latest Trends in Manufacturing Technology: The Role of ERP Systems | Jun 02, 2024 | blog | ||
| Posts | Markdown Code to Scripts | bamr87: how would i convert a markdown file into a bash script? essentially, i just want all the text outside of the ... | Jun 02, 2024 | |||
| Posts | Unwavering Joy Of Fetch | categories: gpt date: ‘2024-06-16 20:12:52’ layout: journals section: Creative & Experimental title: Unwavering J... | Jun 16, 2024 | |||
| Posts | AquaAid's Devastating Desert Mission | In a classic case of good intentions gone awry, the company “AquaAid” embarked on a mission to help impoverished dese... | Jun 18, 2024 | gpt | ||
| Posts |
Fixing GitHub Actions Link Checker: KeyError 'd...
Debugging and resolving a Python KeyError in GitHub Actions workflow that ana... |
Debugging and resolving a Python KeyError in GitHub Actions workflow that analyzes link check results from Lychee lin... | Sep 30, 2025 | Development Debugging | #github-actions #debugging #python +3 | |
| Posts |
Consolidating GitHub Actions: From Embedded Scr...
How we transformed two separate link checking workflows into a unified, maint... |
How we transformed two separate link checking workflows into a unified, maintainable system with standalone executabl... | Sep 30, 2025 | Development DevOps | #github-actions #devops #workflow-automation +4 | |
| Posts |
AI's Infinite Loop: Unveiling Arbitrage in Comp...
Discover how Excel's quirks reveal hidden arbitrage opportunities in complex ... |
Discover how Excel's quirks reveal hidden arbitrage opportunities in complex financial models, reveling monopolies wi... | Mar 13, 2025 | Data Analytics Development +3 | #arbitrage #complexity #Excel +3 | |
| Posts |
VSCode Front Matter: Complete Fork & Developmen...
Comprehensive guide to forking, setting up, and extending the VSCode Front Ma... |
Comprehensive guide to forking, setting up, and extending the VSCode Front Matter CMS extension for content managemen... | Sep 27, 2025 | Development Guides +3 | #vscode-extension #front-matter-cms #development-setup +5 | |
| Posts |
404 Hunting: The Quest for Resources
Mystical Jekyll + GitHub Actions guide to banish 404s: stable permalinks, red... |
Mystical Jekyll + GitHub Actions guide to banish 404s: stable permalinks, redirects, CI link checks, and organic reso... | Aug 31, 2025 | Posts DevOps +1 | #jekyll #tutorial #intermediate +2 | |
| Posts |
Enchanted Overhaul: Wizard's Ethical Sorcery Di...
A comprehensive chronicle of Alaric Fairwind's revolutionary reforms that tra... |
A comprehensive chronicle of Alaric Fairwind's revolutionary reforms that transformed global capitalism through ethic... | Sep 01, 2025 | Creative & Experimental Economics +2 | #capitalism-reform #ethical-economics #wizard-magic +3 | |
| Posts |
Creating El Capitan Bootable Installer on Apple...
Step-by-step guide to creating a bootable OS X El Capitan installer on modern... |
Step-by-step guide to creating a bootable OS X El Capitan installer on modern Apple Silicon Macs for restoring legacy... | Oct 13, 2025 | Posts System-Administration +1 | #macos #tutorial #intermediate +3 | |
| Posts |
Comprehensive Guide to Modern ERP Stack Archite...
Deep dive into enterprise resource planning system architecture, exploring fr... |
Deep dive into enterprise resource planning system architecture, exploring frontend, backend, data layers, and infras... | Oct 17, 2025 | Development Architecture | #erp #architecture #enterprise-software +2 | |
| Posts |
github's hidden gem
|
No description available | Nov 15, 2025 | |||
| Quests | Personal Site | Services/tools used for building personal site. | Dec 03, 2023 | #Personal Site | ||
| Quests |
🏰 Overworld - Master Quest Map
Your central command hub for tracking progress through the IT mastery quest s... |
Your central command hub for tracking progress through the IT mastery quest system. Navigate your learning journey, m... | Aug 20, 2025 | home quest-map +1 | #overworld #navigation #progress +1 | |
| Quests | Begin your IT Journey | Ah, embarking on your IT adventure, are we? Fantastic! To become an IT wizard, you’ll need to gather your tools and l... | Nov 25, 2023 | |||
| Quests | IT Fundamentals | Absolutely! Hands-on exercises are like spells and incantations – they’re best learned by doing. Let’s start with som... | Dec 03, 2023 | |||
| Quests |
Character Building: Forge Your IT Identity and ...
Shape your digital persona and choose the tools, technologies, and specializa... |
Shape your digital persona and choose the tools, technologies, and specializations that will define your IT journey f... | Dec 03, 2023 | Quests Init-World +1 | #character-building #career-planning #development-environment +4 | |
| Quests | OS Selection | Choosing the right operating system (OS) is like selecting the right wand in the wizarding world – it’s a very person... | Nov 24, 2023 | |||
| Quests | Character Selection | In the grand adventure of IT and technology, you can choose from a variety of “characters” or roles, each with its un... | Nov 25, 2023 | |||
| Quests |
bashrun and Beyond: Building an Advanced Termin...
Starting with bashrun as a base and building upon it is a great way to create... |
Starting with bashrun as a base and building upon it is a great way to create an advanced terminal-based game. bashru... | May 29, 2024 | Quests Terminal +1 | #bash #terminal #game-development +2 | |
| Quests |
Bashcrawl Quest: Terminal Adventure RPG
An interactive terminal-based adventure game that teaches command line skills... |
An interactive terminal-based adventure game that teaches command line skills through exploration and puzzle-solving ... | May 28, 2024 | Quests Terminal +2 | #bashcrawl #terminal #command-line +4 | |
| Quests |
Frontend Forests: Building a Jekyll Site with B...
Embark on a quest to build a Jekyll site using Bootstrap for CSS and JavaScri... |
Embark on a quest to build a Jekyll site using Bootstrap for CSS and JavaScript in the Frontend Forests. This guide w... | May 28, 2024 | |||
| Quests |
Link to the Future: Automated Hyperlink Guardia...
Master the computational arts of automated link testing and AI-powered analys... |
Master the computational arts of automated link testing and AI-powered analysis to protect your digital realm from br... | Aug 16, 2025 | Quests DevOps-Automation +1 | #lvl-1010 #github-actions #automated-testing +3 | |
| Quests |
AI Feature Pipeline Architect: DevSecOps Master...
Master the art of building AI-orchestrated feature pipelines from user reques... |
Master the art of building AI-orchestrated feature pipelines from user request to deployment, combining DevSecOps pra... | Sep 29, 2025 | Quests DevOps-Engineering +1 | #lvl-1011 #ai-orchestration #devops-mastery +3 | |
| Quests |
The Diagrammatic Enchantment: Jekyll-Mermaid In...
Master the ancient art of diagrammatic magic by integrating Mermaid.js into a... |
Master the ancient art of diagrammatic magic by integrating Mermaid.js into any Jekyll static site, creating beautifu... | Jan 27, 2025 | Quests Jekyll +1 | #jekyll #mermaid #diagrams +5 | |
| Quests |
Mastering Branches and Pull Requests for Develo...
Learn how branches and pull requests streamline collaboration and enhance cod... |
Learn how branches and pull requests streamline collaboration and enhance code quality in software development. | Apr 18, 2025 | Development Git +3 | #Collaboration #Git #GitHub +2 | |
| Quests |
Change Logs
|
Aye aye, knowledge crusader! You’ve survived the trials of Pull Request Prose and the sacred rites of Atomic Commits.... | Apr 18, 2025 | |||
| Quests |
Understanding Action Triggers in Depth
Unlock the power of automation with GitHub Actions! Streamline your workflows... |
Unlock the power of automation with GitHub Actions! Streamline your workflows and enhance your CI/CD processes effort... | Jul 04, 2025 | Automation CI/CD +3 | #automation #CI/CD #GitHub Actions +2 | |
| Quests |
VS Code Mastery Quest: Forge Your Ultimate Deve...
Master Visual Studio Code setup and configuration to create the ultimate deve... |
Master Visual Studio Code setup and configuration to create the ultimate development environment for any programming ... | Jul 22, 2025 | Quests Tools +2 | #vscode #ide-setup #development-environment +4 | |
| Quests |
Mastering the Bash Incantations: Binary Level 0...
Master the ancient art of bash scripting and unlock the power of automation t... |
Master the ancient art of bash scripting and unlock the power of automation through command-line incantations and she... | Nov 08, 2025 | Quests Foundation +1 | #lvl-0010 #bash #shell-scripting +4 | |
| Quests |
404 Hunting: Binary Wards for Unbreakable Links
Banish 404s in Jekyll with permalink magic, redirect runes, CI link guardians... |
Banish 404s in Jekyll with permalink magic, redirect runes, CI link guardians, and living resource endpoints powered ... | Aug 31, 2025 | Quests Web-Development +1 | #lvl-1110 #jekyll #github-actions +2 | |
| Quests |
Terminal Navigation Mastery: Command-Line Funda...
Master terminal navigation and essential command-line operations to unlock de... |
Master terminal navigation and essential command-line operations to unlock developer productivity and system control ... | Oct 03, 2025 | Quests Foundation +1 | #lvl-0001 #terminal #command-line +3 | |
| Quests |
Oh-My-Zsh Terminal Enchantment: Shell Enhanceme...
Transform your terminal into a powerful, visually enhanced development enviro... |
Transform your terminal into a powerful, visually enhanced development environment with Oh-My-Zsh themes and plugins | Oct 03, 2025 | Quests Side-Quests +1 | #lvl-0010 #terminal-enhancement #oh-my-zsh +4 | |
| Quests |
The Digital Portfolio Fortress: Full-Stack Epic...
Build a complete portfolio website from design to deployment, integrating fro... |
Build a complete portfolio website from design to deployment, integrating frontend, backend, database, and DevOps pra... | Oct 03, 2025 | Quests Epic-Quests +2 | #lvl-1111 #full-stack-development #portfolio-project +4 | |
| Quests |
Quest Network Mapping: Comprehensive Learning P...
Demonstration of the enhanced quest hierarchy system with complete mapping ex... |
Demonstration of the enhanced quest hierarchy system with complete mapping examples and mermaid diagrams | Oct 03, 2025 | Documentation Quest-System +1 | #quest-mapping #learning-paths #hierarchy-system +1 | |
| Quests |
The Epic Quest for the Hidden Gem: Unleashing G...
Embark on an epic journey to master GitHub Pages, the hidden gem of web publi... |
Embark on an epic journey to master GitHub Pages, the hidden gem of web publishing, and learn to capture and immortal... | Nov 15, 2025 | Quests Development +1 | #github-pages #jekyll #ai-capture +5 | |
| Quests |
Quests (~) Index
Your comprehensive guide to IT mastery through gamified learning adventures. ... |
Your comprehensive guide to IT mastery through gamified learning adventures. Choose your path, level up your skills, ... | Nov 15, 2025 | quests | ||
| Quests | Glossary | Enterprise | Nov 25, 2023 | notes | #notes | |
| Quests |
🗺️ World Map: Navigation Guide to the IT-Journe...
Your comprehensive guide to navigating the IT-Journey platform - quests, docu... |
Your comprehensive guide to navigating the IT-Journey platform - quests, documentation, tutorials, and learning paths. | Jul 23, 2025 | Codex Navigation | #navigation #site-map #world-map +2 | |
| Quests |
Docker Containerization Mastery: Level 0101 (5)...
Master Docker containerization to build, deploy, and manage applications in i... |
Master Docker containerization to build, deploy, and manage applications in isolated, portable environments with prac... | Sep 28, 2025 | Quests Devops +1 | #lvl-0101 #docker #tool-mastery +3 | |
| Quests |
Setting up Django and Git
Learn how to efficiently set up Django with Git for seamless version control ... |
Learn how to efficiently set up Django with Git for seamless version control and project management in your web devel... | Mar 12, 2025 | Development Git +3 | #Django #Git #how-to +2 | |
| Quests |
Commitments to clean commits
Learn how to maintain clean commits in your projects for better collaboration... |
Learn how to maintain clean commits in your projects for better collaboration and version control efficiency. | Apr 18, 2025 | Development Git Best Practices +3 | #clean commits #Git #GitHub +2 | |
| Quests |
Quest to Conquer King EDGAR: The Epic Siege of ...
Breach the SEC’s EDGAR fortress using public APIs, wrangle XBRL facts, respec... |
Breach the SEC’s EDGAR fortress using public APIs, wrangle XBRL facts, respect rate limits, and turn raw filings into... | Aug 20, 2025 | Quests Development +1 | #lvl-1100 #python #api +5 | |
| Quests |
Epic Quest: Zer0-to-Her0 CMStyle
Discover how one nerd transformed from zero to hero by building an AI-powered... |
Discover how one nerd transformed from zero to hero by building an AI-powered open source CMS using VS Code and Jekyl... | Aug 25, 2025 | AI/ML CMS +3 | #ai-integration #cms #gamified-learning +2 | |
| Quests |
The Knowledge Vault: Building an Automated Docu...
Build a centralized documentation system that aggregates and organizes knowle... |
Build a centralized documentation system that aggregates and organizes knowledge from multiple GitHub repositories us... | Oct 03, 2025 | Automation DevOps +1 | #github-actions #bash-scripting #python-automation +4 | |
| Quests |
Dockering Jekyll with Bootstrap 5
Embark on a quest to build a Jekyll site using Bootstrap 5 for CSS and JavaSc... |
Embark on a quest to build a Jekyll site using Bootstrap 5 for CSS and JavaScript in the Frontend Forests. This guide... | May 28, 2024 | |||
| Quests |
Frontend Forests Levels
This guide will navigate you through the enchanted woods, ensuring you levera... |
This guide will navigate you through the enchanted woods, ensuring you leverage the magical powers of Jekyll and Boot... | May 28, 2024 | |||
| Quests |
Frontend Docker - level 000
Verify Docker installation on macOS for building Jekyll sites with Bootstrap ... |
Verify Docker installation on macOS for building Jekyll sites with Bootstrap 5 in the Frontend Forests. | May 28, 2024 | #level-000 #frontend #docker +3 | ||
| Quests | level-001-frontend-docker | You’ve successfully set up your Docker environment, and now you’re ready to delve deeper into the mystical realms of ... | May 28, 2024 | |||
| Quests | level-010-frontend-docker | Awesome! You’ve laid a strong foundation by setting up Docker and creating your Jekyll site. Now, let’s journey furth... | May 28, 2024 | |||
| Quests |
Linux Fundamentals
Basic Linux concepts including navigation, scripting, security, and networking |
Basic Linux concepts including navigation, scripting, security, and networking | May 15, 2024 | quests linux | #linux #fundamentals #navigation +3 | |
| Quests |
Hello n00b: Your First Steps into the IT Journey
The perfect starting quest for absolute beginners. Learn to create a GitHub a... |
The perfect starting quest for absolute beginners. Learn to create a GitHub account, fork repositories, and take your... | May 24, 2022 | Quests Init-World +1 | #lvl-0000 #github #git +3 | |
| Quests |
Hello Windows: Mastering the Windows Developmen...
Set up a complete Windows development environment with WSL, PowerShell master... |
Set up a complete Windows development environment with WSL, PowerShell mastery, and essential development tools for t... | Dec 03, 2023 | Quests Init-World +2 | #windows #powershell #wsl +4 | |
| Quests | Tools | Nov 16, 2025 | ||||
| Quests |
Kaizen Quest: The Path of Continuous Improvemen...
Master the ancient art of Kaizen - continuous improvement - and transform you... |
Master the ancient art of Kaizen - continuous improvement - and transform your software development practices through... | Nov 02, 2025 | Quests Process-Improvement +1 | #lvl-0001 #kaizen #continuous-improvement +3 | |
| Quests |
Level 001 - Journeyman Challenges
Web technologies and advanced scripting quests for intermediate learners |
Web technologies and advanced scripting quests for intermediate learners | Nov 15, 2025 | |||
| Quests |
Building & Testing the Git Init Script: Headles...
Hands-on quest to build, extend, and test `git_init.sh` — an interactive and ... |
Hands-on quest to build, extend, and test `git_init.sh` — an interactive and headless repo initializer with programma... | Nov 13, 2025 | Quests Development | #shell-scripting #testing #automation +1 | |
| Quests |
The GitHub Pages Portal: Forging Your Digital R...
Master the art of deploying static websites using GitHub Pages, transforming ... |
Master the art of deploying static websites using GitHub Pages, transforming your code into live web experiences with... | Nov 15, 2025 | Quests Web Deployment +1 | #lvl-001 #github-pages #main +3 | |
| Quests |
Technology Stack Analysis: Barodybroject
Comprehensive analysis of the Barodybroject Django-based parody news generato... |
Comprehensive analysis of the Barodybroject Django-based parody news generator with OpenAI integration and Azure Cont... | Nov 02, 2025 | Stack Analysis Django Applications | #stack-analysis #python #django +5 | |
| Quests |
Quest: Mastering the Ancient Arts of Source Con...
Master the mystical powers of Git and GitHub workflows to become a legendary ... |
Master the mystical powers of Git and GitHub workflows to become a legendary code guardian and collaboration wizard i... | Jul 29, 2025 | Quests Development-Fundamentals +1 | #lvl-0100 #git #github +3 | |
| Quests |
Revolutionizing Work with AI Automation
Discover how AI automation can transform your workflow, enhancing code review... |
Discover how AI automation can transform your workflow, enhancing code reviews, documentation, and PR summaries for a... | Apr 18, 2025 | AI Automation Development +3 | #AI Automation #Best Practices #Code Review +2 | |
| Quests |
Terminal Mastery: Conquering the Command-Line R...
Master terminal navigation and command-line tools to unlock developer product... |
Master terminal navigation and command-line tools to unlock developer productivity and system control powers in this ... | Sep 27, 2025 | Quests Development +1 | #lvl-0001 #terminal #command-line +6 | |
| Quests |
planting seeds
|
Aug 10, 2025 | ||||
| Quests |
Forging the La(zy)TeX CV: Binary Level 0101 (5)...
Build an epic, ATS-friendly Curriculum Vitae in VS Code using LaTeX, aligned ... |
Build an epic, ATS-friendly Curriculum Vitae in VS Code using LaTeX, aligned to the provided cv.tex template—install ... | Aug 17, 2025 | Quests Development +1 | #lvl-0101 #latex #vscode +3 | |
| Quests |
Siege of King EDGAR: Storming the SEC Data Castle
Embark on a satirical, mystical quest to liberate financial knowledge from Ki... |
Embark on a satirical, mystical quest to liberate financial knowledge from King EDGAR’s vaults. Assemble AI companion... | Aug 20, 2025 | Quests Data-Engineering +1 | #lvl-1100 #sec-edgar #api +4 | |
| Quests |
The Temple of Templates: Binary Abstractions an...
Embark on a fantasy-themed quest to master software templates and reusable ar... |
Embark on a fantasy-themed quest to master software templates and reusable architectures across C++, HTML/Jinja, and ... | Aug 25, 2025 | Quests Development +1 | #lvl-1100 #templates #design-patterns +3 | |
| Quests |
Terminal Enchantment: Oh-My-Zsh Mastery related...
Transform your terminal into a powerful development weapon by mastering Oh-My... |
Transform your terminal into a powerful development weapon by mastering Oh-My-Zsh framework, themes, plugins, and VSC... | Sep 01, 2025 | Quests Development +2 | #binary-level-indicator #terminal-mastery #zsh +5 | |
| Quests |
Nerd Font Enchantment: Terminal Icon Mastery
Install and configure Nerd Fonts to unlock the full visual potential of your ... |
Install and configure Nerd Fonts to unlock the full visual potential of your terminal themes and plugins | Sep 01, 2025 | Quests Side-Quests +2 | #binary-level-indicator #terminal-mastery #nerd-fonts +5 | |
| Quests |
Forging the Stats Portal: Data Analytics Quest
Build a comprehensive statistics page that reveals the hidden metrics of your... |
Build a comprehensive statistics page that reveals the hidden metrics of your Jekyll site, displaying real-time conte... | Oct 08, 2025 | Quests Development +1 | #lvl-0001 #jekyll #data-analytics +5 | |
| Quests |
Recursive Realms: Testing Infinite Loops with AI
Master recursion, unit testing, and AI integration by navigating self-replica... |
Master recursion, unit testing, and AI integration by navigating self-replicating code towers | Oct 09, 2025 | Quests Development +1 | #lvl-0010 #python #language-learning +3 | |
| Quests |
Stack Attack Analysis: IT-Journey
Comprehensive technology stack analysis and documentation for the IT-Journey ... |
Comprehensive technology stack analysis and documentation for the IT-Journey educational platform | Nov 02, 2025 | Stack Analysis | #stack-analysis #technology-stack #ruby +7 | |
| Quests |
Stack Attack: Deciphering the Technology Matrix
Master the art of repository analysis and technology stack documentation usin... |
Master the art of repository analysis and technology stack documentation using AI-powered investigation techniques | Nov 02, 2025 | Quests Development +1 | #lvl-0001 #ai-assisted-development #repository-analysis +4 | |
| Quests |
Forging the Prompt Crystal: Master AI Communica...
Master prompt engineering to craft optimal AI instructions. Learn systematic ... |
Master prompt engineering to craft optimal AI instructions. Learn systematic design, iterative refinement, and struct... | Nov 03, 2025 | Quests AI-Development +1 | #lvl-0010 #ai-development #prompt-engineering +3 | |
| Quickstart |
Setting up Django and Git
Learn how to efficiently set up Django with Git for seamless version control ... |
Learn how to efficiently set up Django with Git for seamless version control and project management in your web devel... | Mar 12, 2025 | Development Git +3 | #Django #Git #how-to +2 | |
| Quickstart |
VS Code for Neuroscience: Complete Setup Guide ...
Complete VS Code setup guide for neuroscience researchers with PsychoPy, Spyd... |
Complete VS Code setup guide for neuroscience researchers with PsychoPy, Spyder, and computational modeling tools on ... | Jul 22, 2025 | Tools Neuroscience +1 | #psychopy #neuroscience #vscode +5 | |
| Quickstart | Github Setup | Base setup | May 20, 2024 | |||
| Quickstart | Quick Start (~) Index | Here’s an index of all the quickstart documents in the collection. | Jul 23, 2025 | |||
| Quickstart | Jekyll Setup | Jekyll is a static site generator. It takes text written in your favorite markup language and uses layouts to create ... | Nov 20, 2023 | quickstart | ||
| Quickstart |
Complete Machine Setup Guide: Jekyll Developmen...
Step-by-step guide to setting up Jekyll development environment across Window... |
Step-by-step guide to setting up Jekyll development environment across Windows, macOS, and Linux with automation scri... | Jul 22, 2025 | Development Guides +3 | #development #Jekyll #machine-setup +4 |