{"id":29970704,"url":"https://github.com/xero/resume","last_synced_at":"2025-08-04T06:02:44.135Z","repository":{"id":306210534,"uuid":"1025344741","full_name":"xero/resume","owner":"xero","description":"Resume \u0026 Professional Portfolio Website","archived":false,"fork":false,"pushed_at":"2025-08-01T05:40:17.000Z","size":1428,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-01T06:29:19.491Z","etag":null,"topics":["dark-mode","hire-me","light-mode","portfolio","postcss","professional","resume","tailwindcss","website"],"latest_commit_sha":null,"homepage":"https://Andrew.Harrison.nu","language":"HTML","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xero.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}},"created_at":"2025-07-24T05:51:45.000Z","updated_at":"2025-08-01T05:40:21.000Z","dependencies_parsed_at":"2025-07-24T11:08:40.336Z","dependency_job_id":"5b4c08c4-330c-4ea3-bca3-f543dba8808d","html_url":"https://github.com/xero/resume","commit_stats":null,"previous_names":["xero/resume"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/xero/resume","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xero%2Fresume","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xero%2Fresume/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xero%2Fresume/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xero%2Fresume/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xero","download_url":"https://codeload.github.com/xero/resume/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xero%2Fresume/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268656528,"owners_count":24285337,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-04T02:00:09.867Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["dark-mode","hire-me","light-mode","portfolio","postcss","professional","resume","tailwindcss","website"],"created_at":"2025-08-04T06:00:51.412Z","updated_at":"2025-08-04T06:02:44.127Z","avatar_url":"https://github.com/xero.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Resume Website ⟁ **[https://Andrew.Harrison.nu](https://Andrew.Harrison.nu)**\n\n![preview](https://github.com/user-attachments/assets/27d33918-94f4-49fa-94bb-3358bc4edb6f)\n\n| ![ah logo](https://raw.githubusercontent.com/xero/resume/refs/heads/main/src/ui/i/logo.png) | \u003ch1\u003eFunctions\u003cbr\u003e\u0026amp; Features\u003c/h1\u003e | ◈  Responsive Flexbox Layout w/a Modern Design \u003cbr\u003e ◈  Light/Dark Mode Toggle w/ Matching Themes \u003cbr\u003e ◈ Pure SVG Interactive Skills Spider Graph \u003cbr\u003e ◈  Image Lightboxes w/ Keyboard Support \u003cbr\u003e ◈ Dynamic Github Activity Graph \u003cbr\u003e ◈ Client Side Email Form with Validation |\n|:---:|:---:|:---|\n\n## Project Structure\n\nThe project root contains configuration files for the development and build environment, as well as, two folders:\n\n- **Sources** `src/` contains the project source files, including images, fonts, [scripts](src/ui/app.js), and [style sheets](src/ui/site.css).\n- **Distribution** `dist/` (generated at build time) the complete, compiled and minified, production files.\n\nHere's an overview of the file hierarchy:\n```\n.\n├── bun.lockb             -\u003e Dependency versioning\n├── CICaDa.js             -\u003e Build scripts\n├── dist/                 -\u003e Generated files location\n│   ├── ui/               -\u003e Production assets\n│   │   ├── app.min.js    -\u003e Minified javascript\n│   │   └── site.min.css  -\u003e Minified style sheets\n│   └── [other files]     -\u003e Copied from `src`\n├── package.json          -\u003e Packages and commands\n├── package-lock.json     -\u003e Dependency lockfile\n├── postcss.config.js     -\u003e PostCSS configuration\n├── README.md             -\u003e Project documentation\n├── src/                  -\u003e Project source files\n│   ├── favicon.ico       -\u003e Domain level favicon\n│   ├── humans.txt        -\u003e Human info\n│   ├── index.html        -\u003e Single page application\n│   ├── robots.txt        -\u003e Blocks bad bots/scrapers\n│   ├── sitemap.xml       -\u003e Sitemap for SEO\n│   └── ui/               -\u003e Development assets\n│       ├── app.js        -\u003e Application javascript\n│       ├── hax.woff2     -\u003e Customized web-font\n│       ├── i/            -\u003e Images folder\n│       └── site.css      -\u003e Style sheets\n└── tailwind.config.js    -\u003e TailwindCSS configuration\n```\n\n## Building\n\nClone the repo and install it's dependencies using `bun`:\n\n```\nbun i\n```\n\nBuild the site structure with the `build` command:\n\n```\nbun run build\n```\n\nRebuild just the CSS with the `style` command:\n\n```\nbun run style\n```\nRebuild just the javascript with the `script` command:\n\n```\nbun run script\n```\nIncrement the package version and sitemap date with the `release` command:\n\n```\nbun run release\n```\n\nthe custom [CICaDa](CICaDa.js) build script contains all the CI/CD logic using shell agnostic methods.\n\nplus it features some k-rad ascii art by my buddy [venam](https://venam.net/blog/asciiart.html)\n\n```\n❯ bun run build\n$ bun CICaDa.js\n  ......._                                                  _.......\n.'        \"-.._                                        _..-\"        `.\n \".      .' ` .`'-~-._                          _.-~-\"`. ' `.   '  .\"\n  \".  .         ` .   \"-.      _)_.._(_      .-\"   . '         .. .\"\n    \". ...     .. .`.    `.   (_)    (_)   .'    .'. ..     ...  ;vnm\n      '_   '` ..      `.   \\. | '____' | ./   .'      .. '`   _.'\n        \"-.. '  `   ..      \\\\'-~.__.~-'//      ..   '  ` ..-\"\n            \"`..          .' . '      ' . `.          ..'\"\n           .'\"   \" .  . '    `. '.--.' .'    ` .  . \"   \"`.\n           \"            .'   '\\ \\    / /`   `.            \"\n            `... .. .  '    ' (,-`  '-,) `    `  . .. ...'\n                     `.  . \"  (--------)  \" .  .'\n                       \"      (--------)      \"\n                ____________  `--------'  ____________\n               |               `.____.'               |\n               |  CICaDa CI/CD  `.__.'  Build System  |\n               |                                      |\n               |     task: clean       Complete!      |\n               |     task: copy        Complete!      |\n               |     task: style       Complete!      |\n               |     task: script      Complete!      |\n               |     task: postBuild   Complete!      |\n               |______________________________________|\n```\n\n## Dependencies\n\nThis site is programmed with the the following tools and libraries:\n\n- [Bun](https://bun.sh): Dependency and build management\n- [PostCSS](https://postcss.org): CSS build tool-chain\n- [TailwindCSS](https://tailwindcss.com): Modern CSS framework\n- [CssNano](https://cssnano.github.io/cssnano): CSS minifier\n- [Terser](https://terser.org): Javascript minifier\n- [NeoVim](https://neovim.io): My editor of choice\n\n## TailwindCSS\n\nI don't really like how you're intended to litter your HTML with their utility class attributes. My approach is to compile their classes into my own using the `@apply` keyword. This allows me to keep my DOM minimal, use my normal CSS logic style, and get the added benefits of tailwind built-in responsiveness and short declarations.\n\n## License\n\n**CC0 1.0 Universal (Public Domain Dedication)**\n\nUse this _code_ for anything, commercial or personal, with or without attribution. Just don't steal my identity ;P\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxero%2Fresume","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxero%2Fresume","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxero%2Fresume/lists"}