My personal website https://bitdispenser.dev/
 
 
 
Go to file
Davide Polonio 5717b5be9b
continuous-integration/drone/push Build is passing Details
feat: add part one of Songlify bot (#15)
* update gitignore
* add new words to spellchecker

Co-authored-by: Davide Polonio <poloniodavide@gmail.com>
Reviewed-on: #15
Co-authored-by: polpetta <polpetta@poldebra.me>
Co-committed-by: polpetta <polpetta@poldebra.me>
2022-01-05 16:07:22 +00:00
archetypes First draft 2021-04-26 22:39:17 +02:00
content feat: add part one of Songlify bot (#15) 2022-01-05 16:07:22 +00:00
layouts/partials First draft 2021-04-26 22:39:17 +02:00
static feat: add part one of Songlify bot (#15) 2022-01-05 16:07:22 +00:00
themes First draft 2021-04-26 22:39:17 +02:00
tools feat: add part one of Songlify bot (#15) 2022-01-05 16:07:22 +00:00
.drone.yml Add spellchecker (#5) 2021-05-19 21:47:51 +00:00
.fleek.json chore: fleek should now upload images too 2021-12-15 00:06:56 +01:00
.gitattributes First article (#1) 2021-05-19 08:24:42 +00:00
.gitignore feat: add part one of Songlify bot (#15) 2022-01-05 16:07:22 +00:00
.gitmodules First draft 2021-04-26 22:39:17 +02:00
.markdownlint-cli2.yaml First article (#1) 2021-05-19 08:24:42 +00:00
Dockerfile chore: fleek should now upload images too 2021-12-15 00:06:56 +01:00
LICENSE Initial commit 2021-04-26 20:35:04 +00:00
README.md Update README (#6) 2021-05-20 11:33:17 +00:00
config.toml feat(about-me): add 'About-me' section (#12) 2021-12-26 17:09:32 +00:00
package-lock.json feat(about-me): add 'About-me' section (#12) 2021-12-26 17:09:32 +00:00
package.json Add spellchecker (#5) 2021-05-19 21:47:51 +00:00

README.md

bitdispenser.dev

Build Status

This is my personal website where I like to keep my thoughts mostly about technology & software. The site is statically generated thanks to Hugo, and it huses the Hermit theme. Posts are written in Markdown and then checked with Aspell.

Note: for all the people reading this on Github, the repository is Just a mirror. If you want to clone from the real source, you need to head to my personal Gitea instance. You can clone the repository with:

git clone https://git.poldebra.me/polpetta/bitdispenser.dev.git

Building the website

You can have a live preview of the website locally using the following command:

hugo serve

Note that this repository uses Git LFS, so you need to enable it and pull binary objects first before building the site, otherwise you will likely have missing images & assets. If you don't have git LFS, type:

git lfs install
git lfs pull

Lint & spellchecker checks

Lint & spellchecker are respectively done with a npm package and a bash script. For running them you need node installed.

For lint checking:

npm install
npm run lint

For spell check:

npm run spellchecker

or

./tools/spellchecker.sh en

License

Images and all the other content taken on internet are of their rispective owners. All the other content is to consider under CC-BY-SA 4.0. Code snippets otherwise specified are to be considered under MIT license.