Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seiyakobayashi/seiyakobayashi.github.io
Website for Blogging
https://github.com/seiyakobayashi/seiyakobayashi.github.io
artificial-intelligence blockchain bulletproofs cryptography ethereum web3 zk-snarks zk-starks zkp
Last synced: 11 days ago
JSON representation
Website for Blogging
- Host: GitHub
- URL: https://github.com/seiyakobayashi/seiyakobayashi.github.io
- Owner: SeiyaKobayashi
- License: mit
- Created: 2022-04-01T18:37:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-11T09:56:26.000Z (5 months ago)
- Last Synced: 2024-06-11T11:21:44.516Z (5 months ago)
- Topics: artificial-intelligence, blockchain, bulletproofs, cryptography, ethereum, web3, zk-snarks, zk-starks, zkp
- Language: HTML
- Homepage: https://blog.seiya.work/
- Size: 1.63 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## Overview
Repo for my personal [website](https://blog.seiya.work/).
## Local Development
#### Set up local environment
**Prerequisite**: the following should be installed on your local machine.
- `homebrew`
- homebrew packages
- `rbenv`
- `ruby-build````sh
# Ruby's version should be lower than '3.2.0' (as of Apr. 2024)
$ rbenv install 3.1.3
# You can also specify version locally (to avoid version conflicts)
$ rbenv global 3.1.3
# Install bundler
$ gem install bundler
# Install gems under 'vendor/bundle'
$ bundle install
```#### Run local server
Run the following command. Then access http://localhost:4000/
```sh
$ bundle exec jekyll s
```