0x3d Hub is a premium, high-performance technical knowledge nexus. It curates advanced resources, development patterns, and digital frontiers into a unified, aesthetic dashboard. Built entirely with vanilla HTML, CSS, and JavaScriptβno framework bloat, no backend dependencies.
- Multi-Hub Architecture: Dedicated sections for Python, JavaScript, C/C++, Rust, Go, and Nim
- Specialized Resource Centers: Curated repositories for AI & ML, Cybersecurity, Design, DevOps, and more
- Master Vault: 1000+ categorized technical links, cheatsheets, and web tools
- Regex-Powered Search: Site-wide search with case-sensitivity and regex support (
Ctrl + /) - Lightweight CMS: Client-side admin dashboard for managing markdown databases
- Glassmorphic UI: Modern, translucent design with smooth animations
- 100% Static: No server-side processingβperfect for GitHub Pages
graph TB
subgraph "User Interface Layer"
INDEX[index.html<br/>Homepage]
BLOG[blog/index.html<br/>Blog Hub]
LANG[Language Hubs<br/>python, nim, js, rust, go, c-cpp]
RES[Resource Pages<br/>cheatsheets, apis, ai-ml, etc.]
ADMIN[admin/index.html<br/>CMS Dashboard]
end
subgraph "Core JavaScript Modules"
ML[markdown-loader.js<br/>Content Renderer]
SEARCH[search.js<br/>Regex Search Engine]
ADMIN_JS[admin/js/dashboard.js<br/>CMS Logic]
end
subgraph "Data Layer"
CONFIG[content/config.json<br/>Site Configuration]
MDDB[content/db/*.md<br/>Resource Databases]
POSTS[content/blog/*.md<br/>Blog Posts]
SHEETS[content/cheatsheets/<br/>PDF Archive]
end
subgraph "Styling"
CSS[css/styles.css<br/>Glassmorphic Design System]
end
INDEX --> ML
BLOG --> ML
LANG --> ML
RES --> ML
ADMIN --> ADMIN_JS
ML --> CONFIG
ML --> MDDB
ML --> POSTS
ADMIN_JS --> MDDB
ADMIN_JS --> CONFIG
SEARCH --> MDDB
SEARCH --> POSTS
INDEX --> SEARCH
BLOG --> SEARCH
LANG --> SEARCH
RES --> SEARCH
INDEX --> CSS
BLOG --> CSS
LANG --> CSS
RES --> CSS
ADMIN --> CSS
style ML fill:#3b82f6,stroke:#1e40af,color:#fff
style SEARCH fill:#ec4899,stroke:#be185d,color:#fff
style ADMIN_JS fill:#10b981,stroke:#047857,color:#fff
style CONFIG fill:#f59e0b,stroke:#d97706,color:#fff
style MDDB fill:#8b5cf6,stroke:#6d28d9,color:#fff
0x3d-Hub/
βββ index.html # Homepage with hero and hub grid
βββ blog/
β βββ index.html # Blog listing page
β βββ post.html # Individual blog post viewer
βββ {language}/
β βββ index.html # Language hub (python, nim, js, rust, go, c-cpp)
βββ resources/
β βββ *.html # Resource pages (cheatsheets, apis, ai-ml, etc.)
βββ admin/
β βββ index.html # CMS dashboard
β βββ js/dashboard.js # Admin logic
β βββ css/dashboard.css # Admin styling
βββ content/
β βββ config.json # Navigation, social links, resource metadata
β βββ db/
β β βββ python.md # Python resources database
β β βββ nim.md # Nim resources database
β β βββ js.md # JavaScript resources database
β β βββ apis.md # Public APIs database
β β βββ cheatsheets.md # Cheatsheet index
β β βββ ... # Other resource databases
β βββ blog/
β β βββ posts.json # Blog metadata
β β βββ *.md # Blog posts
β βββ cheatsheets/
β βββ *.pdf # Cheatsheet PDFs
βββ js/
β βββ markdown-loader.js # Core content renderer
β βββ search.js # Search engine
β βββ script.js # Utility functions
βββ css/
β βββ styles.css # Global design system
βββ img/ # Images and assets
Caution
DO NOT deploy this site without updating the following:
Edit index.html and all other HTML files to replace hardcoded URLs and metadata:
- Meta tags: Update
og:url,og:image,twitter:url,twitter:image, andcanonicallinks - Site name: Replace "0x3d Hub" with your own
- Description: Customize the site description
- Keywords: Update meta keywords to match your content
- Author: Change the author name
Example in index.html:
<link rel="canonical" href="https://YOUR-DOMAIN.com/" />
<meta property="og:url" content="https://YOUR-DOMAIN.com/" />
<meta property="og:image" content="https://YOUR-DOMAIN.com/img/logo.png" />Edit sitemap.xml to replace all URLs:
<url>
<loc>https://YOUR-DOMAIN.com/</loc>
<lastmod>2026-02-10</lastmod>
<priority>1.0</priority>
</url>Update all entries with your own domain and ensure all pages are listed.
Edit content/config.json:
- Social links: Replace GitHub, Discord, Twitter, and Email with your own
- Site name: Update the site name in the config
- Navigation: Ensure all URLs point to your domain (if using a custom domain)
If using a custom domain, update the CNAME file:
your-custom-domain.com
Edit robots.txt to point to your sitemap:
Sitemap: https://YOUR-DOMAIN.com/sitemap.xml
All content is stored in Markdown files (content/db/*.md) for easy editing and version control. Each markdown file follows this structure:
# Resource Title
Description of the resource hub.
## Category Name
- [Resource Name](https://example.com) - Brief description
- [Another Resource](https://example.com) - Brief description
## Another Category
- [Tool Name](https://example.com) - DescriptionThe Admin CMS (admin/index.html) allows you to:
- Edit markdown databases in a rich text editor
- Add/remove resources
- Export changes as downloadable files
- Use the File System Access API (Chrome/Edge) for direct file saving
The markdown-loader.js module handles all content rendering:
loadLanguagePage(lang, targetId): Parses markdown databases and renders language hubsloadBlogHub(jsonPath, targetId): Loads blog posts fromposts.jsonand renders the blog indexloadPost(targetId): Fetches individual blog posts and renders them with TOC, audio, and video supportloadDynamicResources(type): Renders resource pages (cheatsheets, APIs, etc.)render(text, baseDir): Custom markdown parser supporting:- Headings, bold, italic, links, images
- Code blocks with syntax highlighting
- Lists (ordered and unordered)
- Horizontal rules
- YouTube embeds
- Audio players
The search.js module provides a powerful search experience:
- Indexing: On load, it scans all markdown databases and blog posts, extracting titles, descriptions, and URLs
- Regex Support: Search queries can use regex patterns for advanced filtering
- Case Sensitivity: Toggle between case-sensitive and case-insensitive search
- Real-time Results: Instant filtering as you type
Trigger search with Ctrl + / or click the search icon in the header.
The content/config.json file centralizes all site metadata:
- Navigation: Header menu items
- Resources: Resource hub metadata (label, URL, icon)
- Social: Social media links for the footer
This configuration is loaded dynamically by markdown-loader.js to populate the header and footer across all pages.
The css/styles.css file provides a comprehensive design system:
- CSS Variables: Centralized color palette and spacing
- Glassmorphic Cards:
.glass-blog-cardfor translucent containers - Responsive Grid: Multi-column masonry layout for resource sections
- Typography: Inter for body text, JetBrains Mono for code
- Animations: Smooth hover effects and transitions
-
Clone the repository:
git clone https://github.com/Mr-DS-ML-85/0x3d-hub.git cd 0x3d-hub -
Serve the directory:
# Using Python python3 -m http.server 8000 # OR using Node.js npx http-server -p 8000
-
Access the site: Open
http://localhost:8000in your browser.
- Push your code to a GitHub repository
- Go to Settings β Pages
- Select Deploy from a branch
- Choose
mainbranch and/ (root)folder - Click Save
- Your site will be live at
https://<username>.github.io/<repo-name>/
- Add a
CNAMEfile to the root directory with your domain:0x3d-hub.devforge.qzz.io - Configure your DNS provider to point to GitHub Pages
- Navigate to
/admin/index.html - Select a database from the dropdown (e.g.,
python.md,js.md) - Edit content in the rich text editor
- Click Save (Download) to export changes
- (Chrome/Edge only) Click Connect Local Folder to save directly to your local repository
- Open any
.mdfile incontent/db/ - Edit using the markdown format shown above
- Commit and push changes to deploy
- Create a new markdown file in
content/db/(e.g.,ruby.md) - Follow the markdown structure
- Add a new directory with
index.html:<script> MarkdownLoader.loadLanguagePage('ruby', 'language-content'); </script>
- Update
content/config.jsonto add the language to the navigation
- Create a new markdown file in
content/db/(e.g.,databases.md) - Create a new HTML page in
resources/(e.g.,databases.html) - Use
loadDynamicResources('databases')in the page script - Update
content/config.jsonto add the resource to the resources array
Edit CSS variables in css/styles.css:
:root {
--bg-color: #0d1117;
--accent-color: #3b82f6;
--accent-secondary: #ec4899;
--text-color: #f0f6fc;
--text-muted: #8b949e;
}Replace img/logo.png with your own logo (recommended size: 512x512px).
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/new-resource) - Commit your changes (
git commit -m 'Add new resource') - Push to the branch (
git push origin feature/new-resource) - Open a Pull Request
This project is open source. Feel free to use, modify, and distribute as needed.
- Font: Inter by Rasmus Andersson
- Icons: Unicode emoji for resource page icons
- Inspiration: Modern developer documentation sites and technical knowledge hubs
Curating the future of technical knowledge. Built with β€οΈ and vanilla JavaScript.
