{"id":22800771,"url":"https://github.com/sashkhen/shu-cv","last_synced_at":"2026-04-05T21:32:30.925Z","repository":{"id":261830001,"uuid":"885472153","full_name":"sashkhen/shu-cv","owner":"sashkhen","description":"Personal CV project","archived":false,"fork":false,"pushed_at":"2024-12-11T03:00:42.000Z","size":3389,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-30T19:32:26.187Z","etag":null,"topics":["clsx","css-modules","css-variables","cv","dark-mode","gh-pages","media-queries","momentjs","react","react-qr-code","responsive","typescript","vite","web"],"latest_commit_sha":null,"homepage":"https://sashkhen.github.io/shu-cv/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sashkhen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-11-08T16:44:44.000Z","updated_at":"2024-12-11T02:58:02.000Z","dependencies_parsed_at":"2024-11-08T17:43:56.715Z","dependency_job_id":"71ef131d-cbd9-4a11-8edd-cf9f2d91a080","html_url":"https://github.com/sashkhen/shu-cv","commit_stats":null,"previous_names":["sashkhen/shu-cv"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sashkhen/shu-cv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashkhen%2Fshu-cv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashkhen%2Fshu-cv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashkhen%2Fshu-cv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashkhen%2Fshu-cv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sashkhen","download_url":"https://codeload.github.com/sashkhen/shu-cv/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashkhen%2Fshu-cv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31451439,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"ssl_error","status_checked_at":"2026-04-05T21:22:51.943Z","response_time":75,"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":["clsx","css-modules","css-variables","cv","dark-mode","gh-pages","media-queries","momentjs","react","react-qr-code","responsive","typescript","vite","web"],"created_at":"2024-12-12T08:07:51.595Z","updated_at":"2026-04-05T21:32:30.839Z","avatar_url":"https://github.com/sashkhen.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sashkhen's CV\n\nPersonal CV project. Webpage supports light and dark theme, it's responsive and print ready.\n\n## Installation and usage\n\n### Installing\n\nIn order to use this project you need to clone repo, install dependencies and start in dev mode\n\n```bash\ngit clone https://github.com/sashkhen/shu-cv.git\n\ncd shu-cv\n\nnpm i\n\nnpm run dev\n```\n\n### Updating\n\nIf you'd like to update CV with you own info, go to [data.json](./src/constants/data.json) file and make necessary adjustments.\n\nIn order to adjust print version sizing go to [global styles](./src/index.css) file and adjust base `font-size` value for `print` media query:\n\n```css\n...\n\n@media print {\n  ...\n\n  html {\n    font-size: 11.25px;\n  }\n}\n```\n\nIn order to update document title and favicon:\n\n- go to [public folder](./public/) and replace existing logo files with your own\n- go to [index.html](./index.html), update title, update favicon(s) `href` and `type` attributes\n\n### Building\n\nIn order to build app for production use\n\n```bash\nnpm run build\n```\n\n### Deployment\n\nIn order to deploy your own version of CV to github pages:\n\n- make sure your project is on github ([changing a remote repository's URL](https://medium.com/@ninadkarlekar/deploying-your-react-project-on-github-pages-a-step-by-step-guide-f8b364fa75fa))\n- update `package.json`\n\n```json\n{\n  \"homepage\": \"https://\u003cusername\u003e.github.io/\u003crepository\u003e\",\n}\n```\n\n- commit and push changes\n- run `gh-pages` scripts\n\n```bash\nnpm run deploy\n```\n\n## Built with\n\n### React + TypeScript + Vite\n\nThis template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.\n\nCurrently, two official plugins are available:\n\n- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh\n- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh\n\n#### Expanding the ESLint configuration\n\nIf you are developing a production application, we recommend updating the configuration to enable type aware lint rules:\n\n- Configure the top-level `parserOptions` property like this:\n\n```js\nexport default tseslint.config({\n  languageOptions: {\n    // other options...\n    parserOptions: {\n      project: ['./tsconfig.node.json', './tsconfig.app.json'],\n      tsconfigRootDir: import.meta.dirname,\n    },\n  },\n})\n```\n\n- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`\n- Optionally add `...tseslint.configs.stylisticTypeChecked`\n- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:\n\n```js\n// eslint.config.js\nimport react from 'eslint-plugin-react'\n\nexport default tseslint.config({\n  // Set the react version\n  settings: { react: { version: '18.3' } },\n  plugins: {\n    // Add the react plugin\n    react,\n  },\n  rules: {\n    // other rules...\n    // Enable its recommended rules\n    ...react.configs.recommended.rules,\n    ...react.configs['jsx-runtime'].rules,\n  },\n})\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsashkhen%2Fshu-cv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsashkhen%2Fshu-cv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsashkhen%2Fshu-cv/lists"}