Blog about tech stuff
Visit sharedmemory!!!
- install hugo for your os
- Clone Repo
- Modify/Create the markdown files
- Run
hugo
- from the root directory of this repo
- commit changes, especially files in the docs folder
- ???
- profit
If you want to create a new post do the following:
- move to the root directory of this repo
- run
hugo new hacks/0x00_quick-local-file-sharing.md
- set the correct
weight
andtitle
in the header of the new markdown file - if you want to publish it remove
draft: true
from the header and check thedate
You can check your changes locally first:
hugo server
and visit http://localhost:1313/sharedmemory/
If you happy with your changes then generate the html files in doc
folder with:
hugo
Then commit the changes