Overview
This page contains the Jekyll configuration file, site tree structure, and automated workflows for maintaining configuration synchronization across the IT-Journey platform.
Configuration Management
Automated Updates
The configuration files in this directory are automatically updated via GitHub Actions workflow whenever the root `_config.yml` file changes. This ensures consistency and reduces manual maintenance overhead.
Trigger Events:
- Push to main branch with changes to `_config.yml`
- Manual workflow dispatch
Manual Regeneration
If you need to manually regenerate the configuration files, use these commands:
PowerShell (Windows)
# Regenerate Config File
cd ~/github/it-journey
cp _config.yml pages/_about/settings/config-utf16.txt
Get-Content pages/_about/settings/config-utf16.txt | Set-Content -Encoding UTF8 pages/_about/settings/_config.yml
# Generate tree structure
tree /f > pages/_about/settings/tree-utf16.txt
Get-Content pages/_about/settings/tree-utf16.txt -Encoding Unicode | Set-Content -Encoding UTF8 pages/_about/settings/tree.txt
Bash (Linux/macOS)
# Regenerate Config File
cd ~/github/it-journey
cp _config.yml pages/_about/settings/_config.yml
# Generate tree structure (respecting .gitignore)
# This will automatically exclude files/directories listed in .gitignore
if command -v tree >/dev/null 2>&1; then
ignore_pattern=\$(generate_gitignore_pattern)
tree -a -I "\$ignore_pattern" --dirsfirst --charset ascii > pages/_about/settings/tree.txt
else
# Fallback for systems without tree command
find . -type d | grep -v -E "(\$(generate_gitignore_pattern))" | sort > pages/_about/settings/tree.txt
fi
Gitignore Integration
The tree structure and sitemap generation automatically respect the `.gitignore` file, ensuring that:
- Files and directories listed in `.gitignore` are excluded from the tree structure
- Sitemap generation skips ignored files
- Documentation remains clean and relevant
- Sensitive or build artifacts are not included in public documentation
Current .gitignore patterns respected:
_site
.sass-cache
.jekyll-cache
.jekyll-metadata
_algolia_api_key
Gemfile.lock
.obsidian
pages/_notes/.DS_Store
*.DS_Store
.env
Jekyll Configuration
Current configuration from `_config.yml`:
# Welcome to Jekyll!
# Configuration file for Jekyll.
# Full docs at: http://jekyllrb.com/docs/configuration/
# YAML docs at: https://yaml.org/spec/1.2.2/
# ---------------------------------------------------------------------------------
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server.
#
# If you need help with YAML syntax, here are some quick references for you:
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
# https://learnxinyminutes.com/docs/yaml/
#
# You can find config options at: https://jekyllrb.com/docs/configuration/options/
#
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via IT-Journey, amr@it-journey.dev, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via .
# Site Settings ###################################################################
founder : "Amr Abdel-Motaleb"
remote_theme : "bamr87/zer0-mistakes"
# theme : "jekyll-theme-zer0"
## Github Information
github_user : &github_user "bamr87"
repository_name : &github_repository "it-journey"
repository : [*github_user, "/", *github_repository] # GitHub username/repo-name
local_repo : *github_repository
branch : "main"
repo_map : "/about/sitemap/"
github_base_url : [*github_user, '.' , *site_domain] # the base hostname & protocol for your site, e.g. http://example.com
portfolio : [*github_user, '.', 'github.io']
## Site Information ---------------------------------------------------------------
title : IT-Journey
title_url : "/"
title_icon : "globe"
subtitle : "zer0 to her0"
subtitle_url : "localhost"
subtitle_icon : "code"
title_separator : "|" # Appears in the web browser tab name
domain : &domain "it-journey"
domain_ext : ".dev"
sub_domain : &sub_domain ""
baseurl : "" # the subpath of your site, e.g. /blog - Use this if you want this whole repo to be a domain branch
url_dev : ['https://', *sub_domain, '.', *domain, *domain_ext ]
url : &url 'https://it-journey.dev' # the base hostname & protocol for your site, e.g. http://example.com
public_folder : "assets"
port : 4002 # Jekyll Serve Dev port
dg_port : 4001 # TODO: Doppelganger site. Use this if you want to switch between parallel deployments
og_image : '/images/wizard-on-journey.png'
### Owner Information -------------------------------------------------------------
name : &name "Amr"
email : "amr@it-journey.dev"
description : >- # this means to ignore newlines until the next variable
Collection of articles, notes, and tutorials to build a website
or headless CMS using Jekyll and Github Pages.
This is my journey from zer0 to her0.
level : 'her0'
# Maintainer Information----------------------------------------------------------
maintainers:
- name: *name
profile: ["https://github.com", "/", *github_user]
- name: "Vacant"
profile: "/github.com"
## Personalization ----------------------------------------------------------------
locale : "en-US"
home_dir : &home '/Users/bamr87/'
local_git : [ *home, 'github' ]
logo : /assets/images/gravatar-small.png # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
logo_link : [ *url, *baseurl ] # URL to link the logo to, e.g. "/"
teaser : /images/favicon_gpt_computer_retro.png # path of fallback teaser image, e.g. "/assets/images/500x300.png"
info_banner : /images/info-banner-mountain-wizard.png # path of fallback teaser image, e.g. "/assets/images/500x300.png"
breadcrumbs : true # true, false (default)
words_per_minute : 200
_posts_file_structure : "year-month-day-title.md"
## Identity #####################################################################
author:
name : *name # *name is a YAML reference pointing to the &anchor earlier
avatar : "/assets/images/gravatar-small.png"
email_hash : '71d7a4fc9712df49e13d606e620f89c7' # https://en.gravatar.com/site/check/{ site.email }
gravatar : [ 'https://s.gravatar.com/avatar/', *email_hash, '?s=80' ]
bio : "IT nerd trying to be an IT hero"
location : "Denver, CO"
twitter_username : "bamr87"
github_username : *github_user
## Site Analytics #############################################################
google_analytics : 'G-ZBDKNMC168'
## Site verification #############################################################
google_site_verification : null
bing_site_verification : null
alexa_site_verification : null
yandex_site_verification : null
aver_site_verification : null
baidu_site_verification : null
## Affiliations ##############################################################
default_icon: "bi" ## Bootstrap Icons https://icons.getbootstrap.com/
links:
- label: "BASH Consulting"
url: "https://bashconsultants.com"
icon: "bi-link"
- label: "Twitter"
icon: "bi-twitter"
url: "https://twitter.com/bamr87"
- label: "GitHub"
icon: "bi-github"
url: [ 'https://github.com/' , *github_user ]
- label: "Instagram"
icon: "bi-instagram"
url: "https://instagram.com/bamr42"
youtube:
- label: "YouTube"
icon: "bi-youtube"
url: "https://www.youtube.com/channel/UCO0j3Opg3J9i2iWnDwHUsXQ"
## Build Framework ##############################################################
powered_by:
- name: "Ruby"
version: "2.7.4"
url: "https://www.ruby-lang.org/"
icon: "bi-gem"
- name: "Jekyll"
version: "3.9.5"
url: "https://jekyllrb.com/"
icon: "bi-joystick"
- name: "Bootstrap"
version: "5.2.0"
url: "https://getbootstrap.com/"
icon: "bi-bootstrap"
- name: "Algolia"
version:
url: "https://algolia.com/"
icon: "bi-search"
- name: "JQuery"
url: "https://jquery.com/"
icon: "bi-filetype-js"
- name: "MathJax"
version: "1.0"
url: "https://www.mathjax.org/"
icon: "bi-calculator"
- name: "GitHub Pages"
version: "231"
url: "https://pages.github.com/"
icon: "bi-github"
- name: "docker"
version: "20.10.8"
url: "https://www.docker.com/"
icon: "bi-docker"
### Plugins #####################################################################
# https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/about-github-pages-and-jekyll#plugins
# http://jekyllrb.com/docs/plugins/
# All plugins are enabled by default for GitHub Pages. https://pages.github.com/versions/
plugins:
- github-pages
- jekyll-remote-theme
- jekyll-feed
- jekyll-sitemap
- jekyll-seo-tag
- jekyll-paginate
- jekyll-relative-links
## Gisgus Plugin #################################################################
gisgus:
enabled: true
data-repo-id: "MDEwOlJlcG9zaXRvcnkyODM4MjI1NzM"
data-category-id: "DIC_kwDOEOrJ7c4CAn8D"
# https://github.blog/2022-02-14-include-diagrams-markdown-files-mermaid/
## Conversion
# Markdown Options https://jekyllrb.com/docs/configuration/markdown/
# https://github.com/github/jekyll-commonmark-ghpages
markdown: kramdown
# highlighter: rouge
# lsi: false
# excerpt_separator: "\n\n"
# incremental: false
# Markdown Processing https://jekyllrb.com/docs/configuration/markdown/
kramdown: # https://kramdown.gettalong.org/options.html
input: GFM
header_offset: 0
# hard_wrap: false
# auto_ids: true
# footnote_nr: 1
# entity_output: as_char
toc_levels: 1..6
# smart_quotes: lsquo,rsquo,ldquo,rdquo
# enable_coderay: false
# Collections: https://jekyllrb.com/docs/collections/
# Permalinks: https://jekyllrb.com/docs/permalinks/
collections_dir: &collections_dir pages
local_repo_path: [ *collections_dir, '/', *local_repo ]
collections:
pages:
output: true
permalink: /:collection/:name/
posts:
output: true
permalink: /:collection/:year/:month/:day/:slug/
docs:
output: true
permalink: /:collection/:categories/:name/
quests:
output: true
permalink: /:collection/:categories/:name/
hobbies:
output: true
permalink: /:collection/:categories/:name/
notebooks:
output: true
permalink: /:collection/:path/:name/
notes:
output: true
permalink: /:collection/:path/:name/
quickstart:
output: true
permalink: /:collection/:name/
about:
output: true
permalink: /:collection/:categories/:name/
permalink: pretty
# pagination https://jekyllrb.com/docs/pagination/
paginate: 10
paginate_path: "/pages/:num/"
# Defaults https://jekyllrb.com/docs/configuration/front-matter-defaults/
defaults:
# ALL
-
scope:
path: ""
values:
layout: root
author_profile: false
read_time: true
comments: false # true
share: true
related: true
sidebar:
nav: main
permalink: /:collection/:name/
# pages
-
scope:
path: pages
values:
layout: &pages default
author_profile: true
read_time: true
comments: # true
share: true
related: true
toc_sticky: true
sidebar:
nav: searchCats
permalink: /:path/:name/
# pages/_about
-
scope:
path: pages/_about
values:
layout: *pages
collection: about
share: true
related: true
sidebar:
nav: about
# pages/_quickstart
-
scope:
path: pages/_quickstart
values:
layout: default
collection: quickstart
share: true
related: true
sidebar:
nav: quickstart
# pages/_posts
-
scope:
path: pages/_posts
values:
layout: journals
author_profile: true
read_time: true
comments: # true
share: true
related: true
sidebar:
nav: dynamic
# permalink: /:collection/:name/
# pages/_docs
-
scope:
path: pages/_docs
values:
layout: *pages
# category: docs
author_profile: true
read_time: true
comments: # true
share: true
related: true
sidebar:
nav: docs
# permalink: /docs/:category/:name/
# pages/_quests
-
scope:
path: pages/_quests
values:
layout: *pages
author_profile: true
read_time: true
comments: # true
share: true
related: true
sidebar:
nav: dynamic
permalink: /:categories/:slug
# pages/_hobbies
-
scope:
path: pages/_hobbies
type: hobbies
values:
layout: *pages
share: false
author_profile: false
sidebar:
nav: hobbies
# pages/_notes
-
scope:
path: pages/_notes
type: notes
values:
layout: *pages
share: false
author_profile: false
sidebar:
nav: dynamic
# Exclude from processing.
# The following items will not be processed, by default.
# Any item listed under the `exclude:` key here will be automatically added to
# the internal "default list".
#
# Excluded items can be processed by explicitly listing the directories or
# their entries' file path in the `include:` list.
exclude:
- .sass-cache/
- .jekyll-cache/
- .obsidian
- Gemfile.lock
- gemfiles/
- Gemfile
- node_modules/
- vendor/
# - "*.sh"
- submodules/
# Sass/SCSS
sass:
sass_dir: _sass
style: expanded
# TODO: Fix bootstrap plugin
# load_paths:
# - /usr/local/bundle/gems/bootstrap-5.3.3/assets/stylesheets
algolia:
application_id: 'SP02Z3YYL4'
search_only_api_key: '3b9200e21085fbebc263950c157b2682'
index_name: dev_it-journey
## Style Settings -------------------------------------------------------------
# theme : "zer0-mistakes-jekyll"
# remote_theme : "bamr87/zer0-mistakes"
theme_skin : "dark" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
# style : "default" # "default", "dark", "light", "solarized-dark", "solarized-light"
# remote_style : "bamr87/zer0-mistakes"
theme_color:
main: #007bff
secondary: #6c757d
red: #a11111
yellow: #ffe900
teal: #376986
blue: #007bff
green: #28a745
purple: #6f42c1
pink: #e83e8c
orange: #fd7e14
brown: #795548
cyan: #17a2b8
indigo: #6610f2
lime: #cddc39
amber: #ffc107
deep_orange: #ff5722
deep_purple: #673ab7
light_blue: #03a9f4
light_green: #8bc34a
light_purple: #9c27b0
light_red: #f44336
light_yellow: #ffeb3b
light_teal: #009688
## Copyright Settings --------------------------------------------------------------
cr_year: 2024
cr_entity: *name
cr_lisense: "MIT"
## Sitemap Settings --------------------------------------------------------------
# sitemap_include: A list of file extensions that should be included in the sitemap. By default, HTML files and any files with sitemap: true in their front matter are included.
# sitemap_exclude: A list of files or directories that should be excluded from the sitemap.
sitemap_include: ["html", "xml"]
sitemap_exclude: ["secret.html", "private"]
Site Tree Structure
Current directory structure (auto-generated):
.
|-- _data
| |-- navigation
| | |-- about.yml
| | |-- docs.yml
| | |-- hobbies.yml
| | |-- home.yml
| | |-- main.yml
| | |-- posts.yml
| | `-- quickstart.yml
| |-- schema
| |-- navigation-old.yml
| |-- README.md
| `-- ui-text.yml
|-- .devcontainer
| `-- devcontainer.json
|-- .frontmatter
| |-- database
| | |-- mediaDb.json
| | |-- pinnedItemsDb.json
| | `-- taxonomyDb.json
| `-- templates
| |-- article.md
| |-- default.md
| |-- notes.md
| |-- poem.md
| `-- quests.md
|-- .ruby-lsp
| |-- .gitignore
| |-- Gemfile
| |-- last_updated
| `-- main_lockfile_hash
|-- .vscode
| |-- extensions.json
| |-- it-journey.code-workspace
| |-- jekyll.code-workspace
| `-- settings.json
|-- assets
| |-- css
| | |-- custom.css
| | `-- main.scss
| |-- gif
| | `-- windows-developer-settings.gif
| |-- images
| | |-- jekyll
| | | |-- 8102
| | | | |-- change-baseurl.png
| | | | |-- change-path.png
| | | | |-- domain-changed.png
| | | | |-- edit-readme.png
| | | | |-- error-too-large.png
| | | | |-- fork-jekyll.png
| | | | |-- main-css.png
| | | | |-- merge-after-build.png
| | | | |-- merge-request.png
| | | | |-- new-domain.png
| | | | |-- pipeline-build.png
| | | | |-- pipeline-deploy.png
| | | | |-- pipeline-pending.png
| | | | |-- remove-fork-relationship.png
| | | | |-- settings-pages.png
| | | | |-- stage-and-commit.png
| | | | |-- test-local.png
| | | | |-- test-migration.png
| | | | |-- test-new-domain.png
| | | | `-- test-website.png
| | | |-- 8103
| | | | `-- local.png
| | | |-- 8104
| | | | |-- githubpage.png
| | | | |-- installmsys2.png
| | | | |-- jekyllsite.png
| | | | |-- msys.png
| | | | |-- setupruby.png
| | | | `-- ubuntuapp.png
| | | |-- 8105
| | | | |-- nomachine_port.png
| | | | |-- nomachine_preferences.png
| | | | `-- port.png
| | | |-- 8111
| | | | |-- account.png
| | | | |-- comments.png
| | | | `-- count.png
| | | |-- 8112
| | | | |-- collection.png
| | | | |-- datafile.png
| | | | |-- excerpt.png
| | | | |-- favorite.png
| | | | |-- javahighlight.png
| | | | |-- pagination.png
| | | | |-- portfolio.png
| | | | |-- table_markdown.png
| | | | |-- table_partial.png
| | | | |-- table_scroll.png
| | | | |-- table_striped.png
| | | | `-- withouthighlight.png
| | | |-- 8113
| | | | `-- progress_bar.png
| | | |-- 8117
| | | | `-- sharelinks.png
| | | |-- 8118
| | | | |-- buttondesign.png
| | | | |-- buttontype.png
| | | | |-- desktop_201.png
| | | | |-- desktop_home.png
| | | | |-- desktop_tutorial.png
| | | | |-- mobile_201.png
| | | | |-- mobile_home.png
| | | | |-- mobile_tutorial.png
| | | | |-- multi-domain.png
| | | | |-- scripts.png
| | | | |-- sharing_facebook.png
| | | | |-- sharing_linkedin.png
| | | | `-- sharing_twitter.png
| | | |-- 8122
| | | | |-- button-bottom.png
| | | | `-- button-top.png
| | | |-- 8123
| | | | |-- custom-style.png
| | | | |-- highlighting_with_js.png
| | | | |-- javahighlight.png
| | | | |-- line-numbers.png
| | | | `-- withouthighlight.png
| | | |-- 8126
| | | | `-- mathml.png
| | | |-- 8131
| | | | |-- cloudflare_notification.png
| | | | |-- godaddy_changenameserver.png
| | | | |-- godaddy_done.png
| | | | |-- godaddy_mydomains.png
| | | | |-- godaddy_nameservers.png
| | | | |-- rssfeed.png
| | | | `-- sitemap.png
| | | |-- 8132
| | | | `-- imagesize_before.png
| | | |-- 8133
| | | | |-- header_githubpages.png
| | | | `-- header_netlify_fixed.png
| | | |-- 8141
| | | | |-- branches.png
| | | | |-- dashboard.png
| | | | |-- fix1.png
| | | | |-- fix2.png
| | | | |-- history.png
| | | | |-- history2.png
| | | | |-- latestbuild.png
| | | | |-- linkerror.png
| | | | |-- notification_builderror.png
| | | | |-- notification_fixed.png
| | | | |-- notification_travis.png
| | | | |-- travis1.png
| | | | |-- travis2.png
| | | | |-- travisci_account.png
| | | | `-- travisci_activate.png
| | | |-- 8142
| | | | |-- custom_domain.png
| | | | |-- godaddy_adddns.png
| | | | |-- godaddy_cart.png
| | | | |-- godaddy_domain.png
| | | | |-- godaddy_searchdomain.png
| | | | |-- rongzhuang_home.png
| | | | `-- rongzhuang_portfolio.png
| | | `-- 8143
| | | |-- app.png
| | | |-- authorize.png
| | | |-- changename.png
| | | |-- homepage.png
| | | |-- inprogress.png
| | | |-- install_netlify.png
| | | |-- monitor.png
| | | |-- newname.png
| | | |-- newsite.png
| | | |-- options.png
| | | |-- portfolio.png
| | | |-- published.png
| | | |-- repository.png
| | | `-- settings.png
| | |-- 20250116190030.png
| | |-- about-profile.png
| | |-- ai-blockchain.png
| | |-- ai-campus.png
| | |-- ai-erp-control.png
| | |-- ai-gpt-results.png
| | |-- aws-cloud-pract-practice-test-domain.png
| | |-- bash-fix.png
| | |-- building-machines.png
| | |-- class-struggle.png
| | |-- excel-data-validationlist.png
| | |-- excel-to-wizard.png
| | |-- favicon_gpt_computer_retro.png
| | |-- frontend-forests.png
| | |-- git-django.png
| | |-- github-fork-it-journey.png
| | |-- github-login.png
| | |-- google-gpt-results.png
| | |-- gpt-code-review.png
| | |-- gpt-gas-riddle-confusion.png
| | |-- gpt-gas-riddle.png
| | |-- gpt-penrose-1.png
| | |-- gpt-penrose-2.png
| | |-- gpt-penrose-svg.png
| | |-- gpt-site-uptime-code.png
| | |-- gpt-site-uptime.png
| | |-- gpt-syntax-help.png
| | |-- gravatar-small.png
| | |-- gravatar.png
| | |-- great-lambda-pyramids-v1.png
| | |-- header_pages.png
| | |-- hover-note.png
| | |-- info-banner-mountain-wizard-1100pxx220px.png
| | |-- info-banner-mountain-wizard-1100X220.xcf
| | |-- info-banner-mountain-wizard.png
| | |-- iTerm-shortcuts-2.png
| | |-- iTerm-shortcuts.png
| | |-- jekyll-seo-preview.png
| | |-- jekyll-seo-snippet.png
| | |-- jekyll-serve-1.png
| | |-- markdown_paste.gif
| | |-- markdown-paste-update-path.png
| | |-- nubi-sink.png
| | |-- nubi-son.png
| | |-- nubi-yawn.png
| | |-- penrose-hard.png
| | |-- pixel_art_diptych_1920x1080.png
| | |-- sharex-imgur.png
| | |-- sharex-upload-task-imgur.png
| | |-- sonic-pi-app.png
| | |-- sonic-pi-change-skin.png
| | |-- sonic-pi-chords.png
| | |-- sonic-pi-note-numbers.png
| | |-- sonic-pi-scale-1.png
| | |-- sonic-pi-scale-2.png
| | |-- sonic-pi-scale-3.png
| | |-- sonic-pi-synth-options.png
| | |-- top-nav.png
| | |-- windows-developer-settings-powershell.png
| | |-- windows-developer-settings.png
| | |-- wizard-on-journey.png
| | |-- zer0-checkpoint-1.png
| | `-- zer0-checkpoint-2.png
| |-- js
| | |-- auto-hide-nav.js
| | |-- back-to-top.js
| | |-- cheetsheet.js
| | |-- code-copy.js
| | |-- color-modes.js
| | |-- docs.min.js
| | |-- halfmoon.js
| | |-- myScript.js
| | |-- nanobar.min.js
| | |-- particles-source.js
| | |-- particles.js
| | `-- side-bar-folders.js
| |-- svg
| | |-- great-lamda-pyramids.svg
| | |-- jquery-4.svg
| | |-- penrose-actual.svg
| | |-- penrose-amr-42px.svg
| | |-- penrose-amr-banner-468x60px.svg
| | |-- penrose-amr-business-card-74x52px.svg
| | |-- penrose-amr-icon-1000.svg
| | |-- penrose-amr-icon-256.png
| | |-- penrose-amr-icon-256.svg
| | |-- penrose-amr-icon-32px.svg
| | |-- penrose-amr-icon-36px.svg
| | |-- penrose-amr-icon-48px.svg
| | |-- penrose-amr-icon.png
| | |-- penrose-amr-icon.svg
| | |-- penrose-amr.svg
| | |-- penrose-gpt-vs-human.png
| | |-- penrose-min-plain.svg
| | |-- penrose-min.svg
| | |-- penrose-test.svg
| | |-- penrose.png
| | |-- penrose.svg
| | `-- qrcode-bash-consultants-site.svg
| `-- particles.json
|-- pages
| |-- _about
| | |-- contribute
| | | |-- contributors
| | | | `-- bamr87
| | | | `-- README.md
| | | `-- contributing.md
| | |-- features
| | | |-- add-floating-back-to-top-button.md
| | | |-- index.md
| | | `-- jekyll.md
| | |-- profile
| | | `-- bamr87.md
| | |-- settings
| | | |-- _config.yml
| | | |-- config.md
| | | |-- sitemap-data.yml
| | | |-- sitemap.md
| | | |-- tree.md
| | | `-- tree.txt
| | |-- about_new.md
| | |-- about.md
| | |-- automation.md
| | |-- purpose.md
| | |-- theme.md
| | `-- versioning.md
| |-- _docs
| | |-- jekyll
| | | |-- cannot-start-jekyll-at-specific-port.md
| | | |-- continuously-deploy-jekyll-website-to-gitHub-pages-with-travis-ci.md
| | | |-- deploying-jekyll-website-to-netlify.md
| | | |-- deploying-personal-website-with-custom-domain.md
| | | |-- generating-diagrams-and-flowcharts-with-mermaid.md
| | | |-- index.md
| | | |-- jekyll-comments-with-disqus.md
| | | |-- jekyll-config.md
| | | |-- jekyll-diagram-with-mermaid.md
| | | |-- jekyll-frontmatter-cms.md
| | | |-- jekyll-google-analytics.md
| | | |-- jekyll-highlighting.md
| | | |-- jekyll-liquid.md
| | | |-- jekyll-math-symbols-with-mathjax.md
| | | |-- jekyll-pagination.md
| | | |-- jekyll-performance-optimization.md
| | | |-- jekyll-progress-bar.md
| | | |-- jekyll-search-function-for-static-website.md
| | | |-- jekyll-security.md
| | | |-- jekyll-social-share-buttons-with-sharethis.md
| | | |-- jekyll-social-share-buttons.md
| | | `-- jekyll-usage-and-customization.md
| | `-- index.md
| |-- _hobbies
| | |-- Aquarium_Equipment_List.csv
| | |-- home.md
| | `-- music.md
| |-- _notebooks
| | |-- html_md_doc_scrapper_v2.ipynb
| | |-- html_md_doc_scrapper.ipynb
| | |-- html_md_doc_scrapper.md
| | |-- JeykLLM-create.ipynb
| | |-- JeykLLM-create.md
| | |-- jupyter-to-markdown.ipynb
| | |-- jupyter-to-markdown.md
| | |-- jupyter.md
| | |-- markdown-to-script.ipynb
| | |-- markdown-to-script.md
| | `-- parodynew.ipynb
| |-- _notes
| | |-- cheetsheets
| | | |-- 2022-10-07-powershell.md
| | | |-- Bash cheatsheet.md
| | | |-- bash.md
| | | |-- command-line.md
| | | |-- mac-shortcuts.md
| | | |-- markdown.md
| | | |-- programming.md
| | | |-- Shell and the CLI.md
| | | `-- Windows Powershell Cheatsheet.md
| | |-- code-snippets
| | | |-- chrod-progressions.rb
| | | |-- gimp-img-resize.py
| | | |-- resize_and_center.py
| | | |-- sonic-pi.rb
| | | `-- test.md
| | |-- dev
| | | |-- projects
| | | | |-- Master_s Project.md
| | | | |-- People.md
| | | | |-- Production.md
| | | | `-- Project List.md
| | | |-- 2024-05-14-side-bar-folders.md
| | | |-- Curiculum.md
| | | `-- Take good notes.md
| | |-- Journal Entries
| | | |-- Github_s hidden gem.md
| | | |-- GPT App Build.md
| | | `-- What is my PiDentity_.md
| | |-- misc
| | | |-- AWS Practice Question Set.md
| | | |-- cloud.md
| | | `-- Favicons.md
| | |-- zero
| | | `-- Start.md
| | |-- 2025-01-16-iterm-tips-and-tricks.md
| | |-- 2025-01-16-mastering-iterm-shortcuts-for-efficiency.md
| | |-- 2025-01-23-sass-mixins.md
| | |-- 2025-01-24-set-up-azure-for-jekyll-contact-us-form.md
| | |-- 2025-01-24-using-jekyll-lambda-and-ses-for-efficient-web-solutions.md
| | |-- 2025-02-05-host-django-on-raspberry-pi-a-complete-guide.md
| | |-- html_md_doc_scrapper.md
| | |-- index.md
| | `-- jekyllm-integration.md
| |-- _posts
| | |-- gpt
| | | |-- 2024-02-14-vscode_extension.md
| | | |-- 2024-03-11-cv-analysis.md
| | | |-- chat_2023_12_14_22_02_47.md
| | | `-- dynamic-sidebar-tree.md
| | |-- recipies
| | | `-- 2022-01-07-fish-flavored-egg-plant.md
| | |-- reflections
| | | |-- 2021-10-27-build-die-repeat.md
| | | `-- 2021-11-08-it-purpose.md
| | |-- reports
| | | `-- 2023-04-20-arab americans.md
| | |-- 2000-01-01-index.md
| | |-- 2022-01-07-jekyll-and-travis.md
| | |-- 2022-01-09-sonic-pi.md
| | |-- 2022-02-27-dual-boot-win-linux.md
| | |-- 2022-05-09-javascript-testing.md
| | |-- 2022-06-10-desktop-widgets-windows.md
| | |-- 2022-07-01-angular-tour-of-heros.md
| | |-- 2022-12-05-sharex.md
| | |-- 2023-03-17-penrose-triangle.md
| | |-- 2023-03-26-chat-gpt-vs-the-impossible-triangle.md
| | |-- 2023-04-07-krita-tips-and-tricks.md
| | |-- 2023-04-14-windows-sub-linux-setu.md
| | |-- 2023-11-04-latex-your-cv.md
| | |-- 2023-12-04-robots-dot-txt.md
| | |-- 2024-02-10-retropie-imaging.md
| | |-- 2024-03-06-auto-hide-nav-bar.md
| | |-- 2024-03-10-raspberry-pi-5-case-build.md
| | |-- 2024-03-27-bootable-mac-os.md
| | |-- 2024-04-02-dockering-your-it-journey.md
| | |-- 2024-04-13-sec's-edgar-database.md
| | |-- 2024-04-25-placeholders.md
| | |-- 2024-05-01-doc-scraper.md
| | |-- 2024-05-09-bootstrap-your-theme-and-character.md
| | |-- 2024-05-14-jekyll-sidebar.md
| | |-- 2024-05-16-fight-with-tools.md
| | |-- 2024-05-22-Threat-of-women.md
| | |-- 2024-05-23-searchbar-and-sitemaping.md
| | |-- 2024-05-28-auto-increment-frontmatter-version.md
| | |-- 2024-06-01-latest-trends-in-manufacturing-technology.md
| | |-- 2024-06-02-markdown-code-to-scripts.md
| | |-- 2024-06-16-enchanted-baking-unicorn-delights.md
| | |-- 2024-06-16-unwavering-joy-of-fetch.md
| | |-- 2024-06-17-wizard-topples-capitalist-dominance-ingeniously.md
| | |-- 2024-06-18-aquaaid's-devastating-desert-mission.md
| | |-- 2024-06-24-furry-monarchs-rule-night.md
| | |-- 2024-06-26-defiances-role-in-democracy.md
| | |-- 2024-06-27-gpt-prompt-engineering.md
| | |-- 2024-06-27-sandle-tuesday.md
| | |-- 2024-07-18-texan-cowboys-learn-history-pyramid-scheme-revealed.md
| | |-- 2024-10-07-django-on-aws-lambda.md
| | |-- 2024-10-14-aws-database-setup-for-django-lambda-functions.md
| | |-- 2024-10-14-deploy-django-on-aws-lambda-with-sam-a-stepby-step-guide.md
| | |-- 2024-12-31-cats-and-dogs.md
| | |-- 2025-03-12-article-schema.md
| | |-- 2025-03-12-excel-circular-reference-or-piece-of-pi.md
| | |-- 2025-03-13-excel-guru's-are-the-most-valuable-programmers.md
| | |-- 2025-03-13-excel-to-python.md
| | |-- 2025-03-15-ai-to-create-ai.md
| | |-- 2025-03-19-open-ai-future-features-with-github-action.md
| | |-- 2025-05-01-injustice.md
| | |-- 2025-05-02-erp-and-tech-economics.md
| | |-- 2025-06-29-planting-seeds.md
| | |-- bash-scripting.md
| | `-- groking-about-it-journey.dev.md
| |-- _quests
| | |-- codex
| | | |-- glossary.md
| | | `-- world_map.md
| | |-- frontend
| | | |-- frontend-docker.md
| | | |-- frontend-levels.md
| | | |-- frontend.md
| | | |-- lvl-000-frontend-docker.md
| | | |-- lvl-001-frontend-docker.md
| | | `-- lvl-010-frontend-docker.md
| | |-- init_world
| | | |-- hello-cloud
| | | | |-- gcp
| | | | | |-- gcloud-cs.sh
| | | | | |-- gcp-start.sh
| | | | | |-- vm-startup.sh
| | | | | `-- vm.yaml
| | | | `-- install-web.sh
| | | |-- hello-linux
| | | | |-- bash-test.sh
| | | | |-- linux-fun.md
| | | | `-- shebang.sh
| | | |-- hello-mac
| | | | |-- apm-apps.sh
| | | | |-- hb-install.sh
| | | | |-- hb-packages.sh
| | | | |-- hello-mac.sh
| | | | `-- iterminate2.sh
| | | |-- hello-win
| | | | |-- hello-win.md
| | | | |-- profile-ps.ps1
| | | | |-- setup-minimal.ps1
| | | | `-- setup.ps1
| | | |-- tools
| | | | `-- tools.md
| | | |-- 2023-11-23-begin-your-it-journey.md
| | | |-- 2023-11-23-character-building.md
| | | |-- 2023-11-23-it-fundamentals.md
| | | |-- 2023-11-24-character-selection.md
| | | |-- 2023-11-24-os-selection.md
| | | `-- hello-noob.md
| | |-- lvl_000
| | | |-- 2024-05-28-bash-run.md
| | | |-- bash_crawl.sh
| | | |-- calculator.sh
| | | `-- profile.sh
| | |-- lvl_001
| | | |-- js_testing.js
| | | |-- js-examples.js
| | | |-- personal-site.md
| | | `-- python.py
| | |-- lvl_0010
| | | `-- bookstore
| | | |-- test
| | | | `-- 2adbb1321d218103
| | | | `-- pg_2379.json
| | | |-- book-data-clean.py
| | | |-- book-data-verify.py
| | | |-- cleaned_output.csv
| | | |-- combined_output.csv
| | | |-- json-extractor.py
| | | `-- verified_output.csv
| | |-- 2025-03-08-django-and-git.md
| | |-- 2025-04-18-action-triggers.md
| | |-- 2025-04-18-branches-and-pull-requests.md
| | |-- 2025-04-18-change-logs.md
| | |-- 2025-04-18-commitments-to-clean-commits.md
| | |-- 2025-04-18-revolutionizing-work-with-ai-automation.md
| | |-- 2025-04-18-sourcery-code-methods.md
| | |-- home.md
| | `-- README.md
| |-- _quickstart
| | |-- 2025-03-08-setting-up-django-and-git.md
| | |-- github-setup.md
| | |-- index.md
| | |-- jekyll-setup.md
| | `-- machine-setup.md
| |-- home.md
| |-- index.html
| `-- search.md
|-- prompts
| |-- seed_prompt.md
| `-- seed.prompt.yml
|-- script
| |-- append_feature.py
| |-- cibuild
| |-- create-dockerfile.sh
| |-- create-gemfile.sh
| |-- hb-packages.sh
| |-- hello_algolia.rb
| |-- jupyter-to-markdown.sh
| |-- version-number.sh
| |-- zer0_md_to_sh.py
| |-- zer0.py
| `-- zer0.sh
|-- scripts
| |-- README.md
| `-- update-settings.sh
|-- submodules
| |-- homebrew
| |-- jekyll
| `-- README.md
|-- TODO
| `-- todo-tree-20240515-2103.md
|-- _config_dev.yml
|-- _config.yml
|-- .gitignore
|-- .gitmodules
|-- .seed.md
|-- .travis.yml
|-- 404.html
|-- CNAME
|-- CODE_OF_CONDUCT.md
|-- CONTRIBUTING.md
|-- docker-compose.yml
|-- Dockerfile
|-- favicon.ico
|-- frontmatter.json
|-- Gemfile
|-- index.md
|-- init_setup.sh
|-- LICENSE
|-- README.md
|-- roadmap.md
|-- robots.txt
|-- SECURITY.md
`-- zer0.md
84 directories, 500 files
Site Map Data
Site structure and page information:
---
generated_date: 2025-07-03T16:48:48.000Z
generator: update-settings-script
respects_gitignore: true
pages:
- file: ./CODE_OF_CONDUCT.md
title: ""
- file: ./.seed.md
title: ""
- file: ./zer0.md
title: "zer0"
- file: ./.frontmatter/templates/default.md
title: "template"
- file: ./.frontmatter/templates/article.md
title: ""
- file: ./.frontmatter/templates/poem.md
title: "cats and dogs"
- file: ./.frontmatter/templates/notes.md
title: ""
- file: ./.frontmatter/templates/quests.md
title: ""
- file: ./404.html
title: ""
- file: ./TODO/todo-tree-20240515-2103.md
title: ""
- file: ./README.md
title: "README - it-journey"
- file: ./roadmap.md
title: "My Roadmap"
- file: ./index.md
title: "Hello World"
- file: ./CONTRIBUTING.md
title: "Contributing"
- file: ./scripts/README.md
title: ""
- file: ./submodules/README.md
title: "Submodules"
- file: ./.github/instructions/space.instructions.md
title: ""
- file: ./.github/copilot-instructions.md
title: ""
- file: ./.github/ISSUE_TEMPLATE/feature_request.md
title: "Feature Request - "
- file: ./.github/ISSUE_TEMPLATE/bug_report.md
title: ""
- file: ./.github/ISSUE_TEMPLATE/custom.md
title: ""
- file: ./prompts/seed_prompt.md
title: ""
- file: ./_data/README.md
title: ""
- file: ./pages/_notebooks/markdown-to-script.md
title: ""
- file: ./pages/_notebooks/JeykLLM-create.md
title: "Chat GPT Text Generation"
- file: ./pages/_notebooks/jupyter.md
title: "Jupyter"
- file: ./pages/_notebooks/html_md_doc_scrapper.md
title: "HTML to markdown web scraping"
- file: ./pages/_notebooks/jupyter-to-markdown.md
title: "Jupyter Notebook to Markdown Converter"
- file: ./pages/search.md
title: "search"
- file: ./pages/_about/versioning.md
title: "versioning"
- file: ./pages/_about/settings/config.md
title: "Jekyll Configuration & Site Structure"
- file: ./pages/_about/settings/tree.md
title: "Site Tree Structure"
- file: ./pages/_about/settings/sitemap.md
title: "Site Navigation Map"
- file: ./pages/_about/about_new.md
title: "About"
- file: ./pages/_about/features/add-floating-back-to-top-button.md
title: "Add Floating Back-to-Top button"
- file: ./pages/_about/features/index.md
title: "Features (~) Index"
- file: ./pages/_about/features/jekyll.md
title: "Jeykll"
- file: ./pages/_about/profile/bamr87.md
title: ""
- file: ./pages/_about/theme.md
title: "Bootstrap Theme Examples"
- file: ./pages/_about/contribute/contributors/bamr87/README.md
title: "Bamr87"
- file: ./pages/_about/contribute/contributing.md
title: "contributing"
- file: ./pages/_about/purpose.md
title: "Purpose"
- file: ./pages/_about/about.md
title: "About"
- file: ./pages/_about/automation.md
title: "Configuration Automation System"
- file: ./pages/index.html
title: "All posts"
- file: ./pages/_posts/2024-05-28-auto-increment-frontmatter-version.md
title: "Auto Increment Frontmatter Version"
- file: ./pages/_posts/2024-06-27-gpt-prompt-engineering.md
title: "GPT Prompt Engineering"
- file: ./pages/_posts/2024-06-26-defiances-role-in-democracy.md
title: "Defiance's Role in Democracy"
- file: ./pages/_posts/recipies/2022-01-07-fish-flavored-egg-plant.md
title: "Fish Flavored Egg plant"
- file: ./pages/_posts/2022-01-09-sonic-pi.md
title: "Sonic Pi"
- file: ./pages/_posts/2023-03-26-chat-gpt-vs-the-impossible-triangle.md
title: "Chat GPT vs The Impossible Triangle"
- file: ./pages/_posts/2024-07-18-texan-cowboys-learn-history-pyramid-scheme-revealed.md
title: "Texan Cowboys Learn History: Pyramid Scheme Revealed"
- file: ./pages/_posts/2025-03-12-excel-circular-reference-or-piece-of-pi.md
title: "Excel: Circular Reference Error by Design"
- file: ./pages/_posts/reflections/2021-11-08-it-purpose.md
title: "IT Purpose"
- file: ./pages/_posts/reflections/2021-10-27-build-die-repeat.md
title: "Build-Destroy-Repeat"
- file: ./pages/_posts/2023-03-17-penrose-triangle.md
title: "penrose triangle"
- file: ./pages/_posts/2024-05-22-Threat-of-women.md
title: "Rise of the Matriarchs: Capitalism and Religion Face the Femme Fatale"
- file: ./pages/_posts/2024-05-09-bootstrap-your-theme-and-character.md
title: "Bootstrap your theme and character"
- file: ./pages/_posts/2024-06-27-sandle-tuesday.md
title: "Sandle Tuesday"
- file: ./pages/_posts/gpt/chat_2023_12_14_22_02_47.md
title: "CMS App with Python and JavaScript"
- file: ./pages/_posts/gpt/2024-03-11-cv-analysis.md
title: "GPT - CV Analysis"
- file: ./pages/_posts/gpt/2024-02-14-vscode_extension.md
title: "Building a VS Code Extension"
- file: ./pages/_posts/gpt/dynamic-sidebar-tree.md
title: "Dynamic Sidebar Tree"
- file: ./pages/_posts/2024-03-06-auto-hide-nav-bar.md
title: "Auto Hide Navbar"
- file: ./pages/_posts/2024-10-14-aws-database-setup-for-django-lambda-functions.md
title: "AWS Database Setup for Django Lambda Functions"
- file: ./pages/_posts/groking-about-it-journey.dev.md
title: "Groking About IT Journey"
- file: ./pages/_posts/2024-04-02-dockering-your-it-journey.md
title: "Dockering Your IT Journey"
- file: ./pages/_posts/2025-05-02-erp-and-tech-economics.md
title: "ERP Systems as the Engine of Modern Economic Design"
- file: ./pages/_posts/2022-07-01-angular-tour-of-heros.md
title: "Angular Tour of Heros"
- file: ./pages/_posts/2025-05-01-injustice.md
title: "Exploring the Roots of Injustice"
- file: ./pages/_posts/2022-02-27-dual-boot-win-linux.md
title: "dual boot win linux"
- file: ./pages/_posts/2024-06-18-aquaaid's-devastating-desert-mission.md
title: "AquaAid's Devastating Desert Mission"
- file: ./pages/_posts/2025-03-12-article-schema.md
title: "AI's Infinite Loop: Unveiling Arbitrage in Complexity of Models"
- file: ./pages/_posts/2024-05-01-doc-scraper.md
title: "doc scraper"
- file: ./pages/_posts/2024-10-07-django-on-aws-lambda.md
title: "How to build a Django Application on AWS Lambda"
- file: ./pages/_posts/2023-12-04-robots-dot-txt.md
title: "robots dot txt"
- file: ./pages/_posts/2024-04-25-placeholders.md
title: "placeholders"
- file: ./pages/_posts/2024-06-02-markdown-code-to-scripts.md
title: "Markdown Code to Scripts"
- file: ./pages/_posts/2023-04-07-krita-tips-and-tricks.md
title: "Krita Tips and Tricks"
- file: ./pages/_posts/2000-01-01-index.md
title: "Journey (~) Index"
- file: ./pages/_posts/2024-03-27-bootable-mac-os.md
title: "Bootable mac os"
- file: ./pages/_posts/2025-06-29-planting-seeds.md
title: "planting seeds"
- file: ./pages/_posts/2024-05-14-jekyll-sidebar.md
title: "jekyll sidebar"
- file: ./pages/_posts/2024-02-10-retropie-imaging.md
title: "RetroPie Imaging"
- file: ./pages/_posts/2022-12-05-sharex.md
title: "sharex"
- file: ./pages/_posts/2022-01-07-jekyll-and-travis.md
title: "Jekyll and Travis"
- file: ./pages/_posts/2022-05-09-javascript-testing.md
title: "test"
- file: ./pages/_posts/bash-scripting.md
title: "Bash Scripting"
- file: ./pages/_posts/2024-05-23-searchbar-and-sitemaping.md
title: "Searchbar and sitemaping"
- file: ./pages/_posts/2024-05-16-fight-with-tools.md
title: "fight with tools"
- file: ./pages/_posts/2025-03-13-excel-guru's-are-the-most-valuable-programmers.md
title: "Excel Guru's are the most valuable programmers"
- file: ./pages/_posts/2024-12-31-cats-and-dogs.md
title: "cats and dogs"
- file: ./pages/_posts/2024-06-01-latest-trends-in-manufacturing-technology.md
title: "Latest Trends in Manufacturing Technology"
- file: ./pages/_posts/2025-03-13-excel-to-python.md
title: "Excel to Python"
- file: ./pages/_posts/2023-04-14-windows-sub-linux-setu.md
title: "Windows Sub-linux Setup"
- file: ./pages/_posts/2024-06-24-furry-monarchs-rule-night.md
title: "Furry Monarchs Rule Night"
- file: ./pages/_posts/2024-03-10-raspberry-pi-5-case-build.md
title: "Raspberry Pi"
- file: ./pages/_posts/2024-06-16-unwavering-joy-of-fetch.md
title: "Unwavering Joy of Fetch"
- file: ./pages/_posts/2024-06-17-wizard-topples-capitalist-dominance-ingeniously.md
title: "Wizard Topples Capitalist Dominance Ingeniously"
- file: ./pages/_posts/2024-10-14-deploy-django-on-aws-lambda-with-sam-a-stepby-step-guide.md
title: "Deploy Django on AWS Lambda with SAM: A Step-by-Step Guide"
- file: ./pages/_posts/2024-04-13-sec's-edgar-database.md
title: "SEC's Edgar Database"
- file: ./pages/_posts/2023-11-04-latex-your-cv.md
title: "LaTex your CV"
- file: ./pages/_posts/2024-06-16-enchanted-baking-unicorn-delights.md
title: "Enchanted Baking: Unicorn Delights"
- file: ./pages/_posts/reports/2023-04-20-arab americans.md
title: ""
- file: ./pages/_posts/2022-06-10-desktop-widgets-windows.md
title: "Desktop Widgets - Windows"
- file: ./pages/_posts/2025-03-15-ai-to-create-ai.md
title: "AI to create AI"
- file: ./pages/_posts/2025-03-19-open-ai-future-features-with-github-action.md
title: "Open AI Future Features with Github Action"
- file: ./pages/_docs/jekyll/jekyll-comments-with-disqus.md
title: "Jekyll - Comments with Disqus"
- file: ./pages/_docs/jekyll/jekyll-highlighting.md
title: "Jekyll - Highlighting"
- file: ./pages/_docs/jekyll/jekyll-math-symbols-with-mathjax.md
title: "Jekyll - Math Symbols with MathJax"
- file: ./pages/_docs/jekyll/jekyll-social-share-buttons-with-sharethis.md
title: "Jekyll - Social Share Buttons with ShareThis"
- file: ./pages/_docs/jekyll/jekyll-security.md
title: "Jekyll - Security"
- file: ./pages/_docs/jekyll/jekyll-search-function-for-static-website.md
title: "Jekyll - Search Function for Static Website - draft"
- file: ./pages/_docs/jekyll/continuously-deploy-jekyll-website-to-gitHub-pages-with-travis-ci.md
title: "Continuously Deploy Jekyll to GitHub Pages with Travis-CI"
- file: ./pages/_docs/jekyll/index.md
title: "Jekyll"
- file: ./pages/_docs/jekyll/deploying-personal-website-with-custom-domain.md
title: "Deploying Personal Website with Custom Domain"
- file: ./pages/_docs/jekyll/jekyll-config.md
title: "Configuration Options | Jekyll • Simple, blog-aware, static sites"
- file: ./pages/_docs/jekyll/jekyll-usage-and-customization.md
title: "Jekyll - Usage and Customization"
- file: ./pages/_docs/jekyll/cannot-start-jekyll-at-specific-port.md
title: "Cannot Start Jekyll at Specific Port"
- file: ./pages/_docs/jekyll/jekyll-frontmatter-cms.md
title: "Jekyll Frontmatter CMS"
- file: ./pages/_docs/jekyll/generating-diagrams-and-flowcharts-with-mermaid.md
title: "Generating Diagrams and Flowcharts with Mermaid"
- file: ./pages/_docs/jekyll/jekyll-performance-optimization.md
title: "Jekyll - Performance Optimization"
- file: ./pages/_docs/jekyll/jekyll-google-analytics.md
title: "Jekyll - Google Analytics - Draft"
- file: ./pages/_docs/jekyll/jekyll-liquid.md
title: "Jekyll - Liquid"
- file: ./pages/_docs/jekyll/jekyll-social-share-buttons.md
title: "Jekyll - Social Share Buttons"
- file: ./pages/_docs/jekyll/deploying-jekyll-website-to-netlify.md
title: "Deploying Jekyll Website to Netlify"
- file: ./pages/_docs/jekyll/jekyll-progress-bar.md
title: "Jekyll - Progress Bar"
- file: ./pages/_docs/jekyll/jekyll-pagination.md
title: "Jekyll - Pagination"
- file: ./pages/_docs/jekyll/jekyll-diagram-with-mermaid.md
title: "Jekyll - Diagram with Mermaid"
- file: ./pages/_docs/index.md
title: "Docs (~) Index"
- file: ./pages/_quickstart/github-setup.md
title: "Github Setup"
- file: ./pages/_quickstart/jekyll-setup.md
title: "Jekyll Setup"
- file: ./pages/_quickstart/index.md
title: "Quick Start (~) Index"
- file: ./pages/_quickstart/2025-03-08-setting-up-django-and-git.md
title: "Setting up Django and Git"
- file: ./pages/_quickstart/machine-setup.md
title: "Machine Setup"
- file: ./pages/home.md
title: "Home"
- file: ./pages/_hobbies/music.md
title: "Music Index"
- file: ./pages/_hobbies/home.md
title: "hobbies"
- file: ./pages/_quests/frontend/frontend-levels.md
title: "Frontend Forests Levels"
- file: ./pages/_quests/frontend/lvl-001-frontend-docker.md
title: "level-001-frontend-docker"
- file: ./pages/_quests/frontend/lvl-010-frontend-docker.md
title: "level-010-frontend-docker"
- file: ./pages/_quests/frontend/lvl-000-frontend-docker.md
title: "Frontend Docker - level 000"
- file: ./pages/_quests/frontend/frontend.md
title: "Frontend Forests: Building a Jekyll Site with Bootstrap"
- file: ./pages/_quests/frontend/frontend-docker.md
title: "Dockering Jekyll with Bootstrap 5"
- file: ./pages/_quests/2025-04-18-action-triggers.md
title: "Understanding Action Triggers in Depth"
- file: ./pages/_quests/codex/world_map.md
title: "World Map"
- file: ./pages/_quests/codex/glossary.md
title: "Glossary "
- file: ./pages/_quests/2025-04-18-change-logs.md
title: "Change Logs"
- file: ./pages/_quests/2025-04-18-revolutionizing-work-with-ai-automation.md
title: "Revolutionizing Work with AI Automation"
- file: ./pages/_quests/home.md
title: "Overworld"
- file: ./pages/_quests/README.md
title: "Quests (~) Index"
- file: ./pages/_quests/2025-04-18-branches-and-pull-requests.md
title: "Mastering Branches and Pull Requests for Developers"
- file: ./pages/_quests/init_world/tools/tools.md
title: "Tools"
- file: ./pages/_quests/init_world/hello-noob.md
title: "hello-n00b"
- file: ./pages/_quests/init_world/2023-11-23-character-building.md
title: "Character Building"
- file: ./pages/_quests/init_world/hello-win/hello-win.md
title: "Init World - Win"
- file: ./pages/_quests/init_world/2023-11-23-it-fundamentals.md
title: "IT Fundamentals"
- file: ./pages/_quests/init_world/2023-11-24-os-selection.md
title: "OS Selection"
- file: ./pages/_quests/init_world/2023-11-23-begin-your-it-journey.md
title: "Begin your IT Journey"
- file: ./pages/_quests/init_world/hello-linux/linux-fun.md
title: ""
- file: ./pages/_quests/init_world/2023-11-24-character-selection.md
title: "Character Selection"
- file: ./pages/_quests/2025-04-18-commitments-to-clean-commits.md
title: "Commitments to clean commits"
- file: ./pages/_quests/lvl_000/2024-05-28-bash-run.md
title: "bashrun and Beyond: Building an Advanced Terminal Game"
- file: ./pages/_quests/lvl_001/personal-site.md
title: "Personal Site"
- file: ./pages/_quests/2025-03-08-django-and-git.md
title: "Setting up Django and Git"
- file: ./pages/_quests/2025-04-18-sourcery-code-methods.md
title: "Exploring Sourcery Code Methods: A Developer's Guide"
- file: ./pages/_notes/2025-01-16-mastering-iterm-shortcuts-for-efficiency.md
title: "Mastering iTerm Shortcuts for Efficiency"
- file: ./pages/_notes/misc/Favicons.md
title: "Favicons"
- file: ./pages/_notes/misc/cloud.md
title: "AWS Practice Question Set"
- file: ./pages/_notes/misc/AWS Practice Question Set.md
title: "AWS Practice Question Set"
- file: ./pages/_notes/2025-01-24-set-up-azure-for-jekyll-contact-us-form.md
title: "Set Up Azure for Jekyll Contact Us Form"
- file: ./pages/_notes/2025-02-05-host-django-on-raspberry-pi-a-complete-guide.md
title: "Host Django on Raspberry Pi: A Complete Guide"
- file: ./pages/_notes/2025-01-23-sass-mixins.md
title: "Sass mixins"
- file: ./pages/_notes/2025-01-24-using-jekyll-lambda-and-ses-for-efficient-web-solutions.md
title: "Using Jekyll, Lambda, and SES for Efficient Web Solutions"
- file: ./pages/_notes/html_md_doc_scrapper.md
title: "HTML to markdown web scraping"
- file: ./pages/_notes/zero/Start.md
title: "Start"
- file: ./pages/_notes/index.md
title: "Notes (~) Index"
- file: ./pages/_notes/jekyllm-integration.md
title: "Jekyll LLM Integration Ideas"
- file: ./pages/_notes/cheetsheets/markdown.md
title: "Markdown"
- file: ./pages/_notes/cheetsheets/Shell and the CLI.md
title: "Shell and the CLI"
- file: ./pages/_notes/cheetsheets/mac-shortcuts.md
title: "Mac keyboard shortcuts"
- file: ./pages/_notes/cheetsheets/command-line.md
title: "Shell and the CLI"
- file: ./pages/_notes/cheetsheets/Bash cheatsheet.md
title: "Bash cheatsheet"
- file: ./pages/_notes/cheetsheets/Windows Powershell Cheatsheet.md
title: "Windows Powershell Cheatsheet"
- file: ./pages/_notes/cheetsheets/programming.md
title: "Programming"
- file: ./pages/_notes/cheetsheets/bash.md
title: "Bash cheatsheet"
- file: ./pages/_notes/cheetsheets/2022-10-07-powershell.md
title: "Windows Powershell Cheatsheet"
- file: ./pages/_notes/code-snippets/test.md
title: "test"
- file: ./pages/_notes/Journal Entries/What is my PiDentity_.md
title: "What is my PiDentity?"
- file: ./pages/_notes/Journal Entries/GPT App Build.md
title: "GPT App Build"
- file: ./pages/_notes/Journal Entries/Github_s hidden gem.md
title: "Github's hidden gem"
- file: ./pages/_notes/dev/Curiculum.md
title: "Curiculum"
- file: ./pages/_notes/dev/projects/Master_s Project.md
title: "Master's Project"
- file: ./pages/_notes/dev/projects/People.md
title: "People"
- file: ./pages/_notes/dev/projects/Production.md
title: "Production"
- file: ./pages/_notes/dev/projects/Project List.md
title: "Project List"
- file: ./pages/_notes/dev/Take good notes.md
title: "Take good notes"
- file: ./pages/_notes/dev/2024-05-14-side-bar-folders.md
title: "side-bar-folders"
- file: ./pages/_notes/2025-01-16-iterm-tips-and-tricks.md
title: "iTerm Tips and Tricks"
- file: ./SECURITY.md
title: ""
Related Files
- Tree Structure - Detailed site tree visualization
- Sitemap - Complete site navigation map
- Raw Config File - Direct access to configuration
- GitHub Workflow - Automation workflow
Workflow Integration
This configuration management follows IT-Journey’s core principles:
Design for Failure (DFF)
- Automated backups of configuration files
- Fallback to manual regeneration processes
- Error handling in workflow steps
Don’t Repeat Yourself (DRY)
- Single source of truth for configuration
- Automated synchronization across settings
- Reusable workflow components
AI-Powered Development (AIPD)
- AI-generated documentation updates
- Intelligent workflow optimization
- Automated content enhancement
Release Early and Often (REnO)
- Continuous integration for configuration changes
- Automatic deployment of updates
- Incremental improvement processes
Last updated: 2025-07-03 17:12:14 +0000
Workflow: update-settings.yml