{"id":16446480,"url":"https://github.com/fbukevin/engineer","last_synced_at":"2025-10-14T07:06:52.833Z","repository":{"id":40177943,"uuid":"239452767","full_name":"fbukevin/engineer","owner":"fbukevin","description":"blog posts of software development","archived":false,"fork":false,"pushed_at":"2023-04-12T00:25:10.000Z","size":4937,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-26T10:16:44.161Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://fbukevin.github.io/engineer/","language":"Ruby","has_issues":true,"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/fbukevin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"license.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-02-10T07:31:21.000Z","updated_at":"2020-02-25T07:06:31.000Z","dependencies_parsed_at":"2023-02-12T05:30:47.947Z","dependency_job_id":null,"html_url":"https://github.com/fbukevin/engineer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fbukevin/engineer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fbukevin%2Fengineer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fbukevin%2Fengineer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fbukevin%2Fengineer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fbukevin%2Fengineer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fbukevin","download_url":"https://codeload.github.com/fbukevin/engineer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fbukevin%2Fengineer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279018206,"owners_count":26086303,"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-10-14T02:00:06.444Z","response_time":60,"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":[],"created_at":"2024-10-11T09:47:43.164Z","updated_at":"2025-10-14T07:06:52.818Z","avatar_url":"https://github.com/fbukevin.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# The Hacker-Blog theme\n\n*Hacker-Blog is a minimalistic, responsive jekyll theme built for hackers. It is based on the [hacker theme](https://github.com/pages-themes/hacker) for project pages.*\n\nDemo: [https://ashishchaudhary.in/hacker-blog](https://ashishchaudhary.in/hacker-blog)\n\n### Included\n\n1. Pagination\n2. SEO tags\n3. Archive Page\n4. About Page\n5. RSS (`https://base-url/atom`)\n6. Sitemap (`https://base-url/sitemap`)\n7. Google Analytics (optional)\n\n## Usage\n\n1. Fork and Clone this repository\n2. Customize your blog\n3. Add a new post in `_posts/` directory with proper name format (as shown in placeholder posts)\n4. Commit and push to master on a repository named `\u003cgithubusername.github.io\u003e`.\n5. Visit `\u003cgithubusername\u003e.github.io`\n\n## Local Build\n\nIf you want to see the changes before pushing the blog to Github, do a local build.\n\n1. [`gem install jekyll`](https://jekyllrb.com/docs/installation/#install-with-rubygems)\n2. `gem install jekyll-seo-tag`\n3. `gem install jekyll-paginate`\n4. `gem install jekyll-sitemap`\n5. (`cd` to the blog directory, then:) `jekyll serve --watch --port 8000`\n6. Go to `http://0.0.0.0:8000/` in your web browser.\n\n*Note: In case you have set a `baseurl` different than `/` in `_config.yml`, go to `http://0.0.0.0:8000/BASEURL/` instead.*\n\n### Local build using docker\n\n```bash\ndocker run --rm -p 8000:8000 \\\n  --volume=\"LOCATION_OF_YOUR_JEKYLL_BLOG:/srv/jekyll\" \\\n  -it tocttou/jekyll:3.5 \\\n  jekyll serve --watch --port 8000\n```\n\nReplace `LOCATION_OF_YOUR_JEKYLL_BLOG` with the full path of your blog repository. Visit `http://localhost:8000/` to access the blog.\n\n*Note: In case you have set a `baseurl` different than `/` in `_config.yml`, go to `http://0.0.0.0:8000/BASEURL/` instead.*\n\n## Customizing\n\n### Configuration variables\n\nEdit the `_config.yml` file and set the following variables:\n\n```yml\ntitle: [The title of your blog]\ndescription: [A short description of your blog's purpose]\nauthor:\n  name: [Your name]\n  email: [Your email address]\n  url: [URL of your website]\n\nbaseurl: [The base url for this blog.]\n\npaginate: [Number of posts in one paginated section (default: 3)]\nowner: [Your name]\nyear: [Current Year]\n```\n\n*Note: All links in the site are prepended with `baseurl`. Default `baseurl` is `/`. Any other baseurl can be setup like `baseurl: /hacker-blog`, which makes the site available at `http://domain.name/hacker-blog`.*\n\nAdditionally, you may choose to set the following optional variables:\n\n```yml\ngoogle_analytics: [Your Google Analytics tracking ID]\n```\n\n### About Page\n\nEdit `about.md`\n\n### Layout\n\nIf you would like to modify the site style:\n\n**HTML**\n\nFooter: Edit `_includes/footer.html`\n\nHeader: Edit `_includes/header.html`\n\nLinks in the header: Edit `_includes/links.html`\n\nMeta tags, blog title display, and additional CSS: Edit `_includes/head.html`\n\nIndex page layout: Edit `_layouts/default.html`\n\nPost layout: Edit `_layouts/post.html`\n\n**CSS**\n\nSite wide CSS: Edit `_sass/base.scss`\n\nCustom CSS: Make `_sass/custom.scss` and use it. Then add `@import \"custom\";` to `css/main.scss`\n\n**404 page**\n\nEdit `404.md`\n\n## License\n\nCC0 1.0 Universal\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffbukevin%2Fengineer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffbukevin%2Fengineer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffbukevin%2Fengineer/lists"}