{"id":49557547,"url":"https://github.com/ashmod/ashmod.github.io","last_synced_at":"2026-05-03T05:52:59.328Z","repository":{"id":156153882,"uuid":"628929166","full_name":"ashmod/ashmod.github.io","owner":"ashmod","description":"A website where I share stuff.","archived":false,"fork":false,"pushed_at":"2026-04-16T13:20:22.000Z","size":74589,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-03T05:52:56.136Z","etag":null,"topics":["blog","portfolio-website"],"latest_commit_sha":null,"homepage":"https://ashmod.dev/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ashmod.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-04-17T09:16:50.000Z","updated_at":"2026-04-16T13:20:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"0fb6a4f6-f982-4a31-b992-e3fe338b4e96","html_url":"https://github.com/ashmod/ashmod.github.io","commit_stats":null,"previous_names":["ashmod/ashmod.github.io"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ashmod/ashmod.github.io","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashmod%2Fashmod.github.io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashmod%2Fashmod.github.io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashmod%2Fashmod.github.io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashmod%2Fashmod.github.io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ashmod","download_url":"https://codeload.github.com/ashmod/ashmod.github.io/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashmod%2Fashmod.github.io/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32559716,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T03:21:47.309Z","status":"ssl_error","status_checked_at":"2026-05-03T03:21:43.884Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blog","portfolio-website"],"created_at":"2026-05-03T05:52:58.786Z","updated_at":"2026-05-03T05:52:59.318Z","avatar_url":"https://github.com/ashmod.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ashmod.dev\n\nPersonal portfolio and blog built with a custom Static Site Generator.\n\n## Features\n\n- Custom Node.js-based SSG for generating static HTML from Markdown\n- Responsive design with light/dark mode toggle\n- Markdown content management for blog posts and work/projects\n- Simple templating system without heavy frameworks\n- Hosted on GitHub Pages\n\n## Tech Stack\n\n- **Core**: HTML, CSS, JavaScript\n- **SSG**: Custom Node.js script (`scripts/baker.js`)\n- **Content**: Markdown files parsed with `marked`\n- **Templating**: Custom string replacement engine\n- **Hosting**: GitHub Pages\n\n## Installation\n\n### Prerequisites\n\n- Node.js (v14+ recommended)\n- npm\n\n### Setup\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/ashmod/ashmod.github.io.git\n   cd ashmod.github.io\n   ```\n\n2. Install dependencies:\n   ```bash\n   npm install\n   # Installs: fs-extra, gray-matter, marked\n   ```\n\n## Usage\n\n### Development Workflow\n\n1. Edit content in `content/` (Markdown files), templates in `templates/`, or styles in `assets/css/style.css`.\n\n2. Build the site:\n   ```bash\n   npm run build\n   ```\n\n3. Preview locally:\n   Open `index.html` in a browser or run:\n   ```bash\n   npx serve .\n   ```\n\n### Content Management\n\n#### Blog Posts\nCreate `content/blog/my-post.md`:\n```markdown\n---\ntitle: \"My Post Title\"\ndate: \"2025-01-01\"\ndescription: \"A short summary.\"\ntags: [\"tech\", \"life\"]\nlayout: post\n---\nYour content here...\n```\n\n#### Work/Projects\nCreate `content/projects/my-project.md`:\n```markdown\n---\ntitle: My Project\nyear: 2025\ndescription: A short description.\ncategory: TOOL\ntags: [\"Python\", \"CLI\"]\nlink: https://github.com/...\nlayout: project\n---\nDetails about the project...\n```\n\nCategories: `TOOL`, `WEB`, `GAME`, `ACADEMIC`, `MISC`, or `OPEN SOURCE` (via `open-source.json`).\n\n## Project Structure\n\n```\n.\n├── assets/             # Static assets (images, CSS, JS)\n├── content/            # Source content (Markdown)\n│   ├── blog/           # Blog posts\n│   ├── pages/          # Static pages\n│   └── projects/       # Work/project entries\n├── scripts/            # Build scripts\n│   └── baker.js        # Static Site Generator\n├── templates/          # HTML templates\n├── .gitignore\n├── package.json\n└── README.md\n```\n\n## Contributing\n\nContributions are always welcome. Report issues or suggest improvements via GitHub issues.\n\n## License\n\nLicensed under [Creative Commons Attribution 3.0 Unported](https://creativecommons.org/licenses/by/3.0/).\nSee [LICENSE](LICENSE) for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashmod%2Fashmod.github.io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fashmod%2Fashmod.github.io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashmod%2Fashmod.github.io/lists"}