mirror of
https://github.com/lleene/hugo-site.git
synced 2025-01-23 03:52:21 +01:00
small content update
This commit is contained in:
parent
3cfdbc4305
commit
94e935401c
11
content/links.md
Normal file
11
content/links.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
title: "Links"
|
||||||
|
date: 2021-08-29T12:35:51+02:00
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
## Not Fun
|
||||||
|
|
||||||
|
List of links go here:
|
||||||
|
|
||||||
|
## Fun
|
@ -1,7 +1,13 @@
|
|||||||
---
|
---
|
||||||
title: "Building With SVG"
|
title: "Building With SVG"
|
||||||
date: 2021-08-28T11:53:54+02:00
|
date: 2021-08-28T11:53:54+02:00
|
||||||
draft: true
|
draft: false
|
||||||
|
toc: true
|
||||||
|
tags:
|
||||||
|
- svg
|
||||||
|
- xml
|
||||||
|
- hugo
|
||||||
|
- golang
|
||||||
---
|
---
|
||||||
|
|
||||||
# SVG Tools and Hugo Integration
|
# SVG Tools and Hugo Integration
|
||||||
@ -73,8 +79,8 @@ added directly to KGT as a feature in future releases.
|
|||||||
rect, line, path { stroke-width: 1.5px; stroke: white; fill: transparent; }
|
rect, line, path { stroke-width: 1.5px; stroke: white; fill: transparent; }
|
||||||
rect, line, path { stroke-linecap: square; stroke-linejoin: rounded; }
|
rect, line, path { stroke-linecap: square; stroke-linejoin: rounded; }
|
||||||
path { fill: transparent; }
|
path { fill: transparent; }
|
||||||
text { fill: white; }
|
text { fill: white; font-family:'Trebuchet MS'; }
|
||||||
text.literal { font-family: monospace; }
|
text.literal { }
|
||||||
line.ellipsis { stroke-dasharray: 1 3.5; }
|
line.ellipsis { stroke-dasharray: 1 3.5; }
|
||||||
tspan.hex { font-family: monospace; font-size: 90%; }
|
tspan.hex { font-family: monospace; font-size: 90%; }
|
||||||
path.arrow { fill: white; }
|
path.arrow { fill: white; }
|
||||||
|
@ -1,12 +1,24 @@
|
|||||||
---
|
---
|
||||||
title: "Mile Stones"
|
title: "Mile Stones"
|
||||||
date: 2021-08-28T16:13:52+02:00
|
date: 2021-08-28T16:13:52+02:00
|
||||||
draft: true
|
draft: false
|
||||||
|
tags:
|
||||||
|
- website
|
||||||
|
- plan
|
||||||
|
- ideas
|
||||||
---
|
---
|
||||||
|
|
||||||
This is a list of topics that I may include at somepoint in time:
|
This is a list of topics that I may include at some point in time:
|
||||||
1. SSL and NGINX setup guide
|
1. SSL and NGINX setup guide
|
||||||
2. Postfix setup guide
|
2. Postfix setup guide
|
||||||
3. Danbooru setup guide
|
3. Danbooru setup guide
|
||||||
4. pyside notes from pyviewer project
|
4. pyside notes from pyviewer project
|
||||||
5. other notes
|
5. other fun stuff
|
||||||
|
|
||||||
|
I also want to share some of the IC design work building up a technical profile:
|
||||||
|
1. Chip gallery
|
||||||
|
2. Acedemic topics
|
||||||
|
3. ADC stuff
|
||||||
|
4. Time domain processing
|
||||||
|
5. Skill and Cadence utilities
|
||||||
|
6. Design flow and scripts
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
title: "Setting up a new site."
|
title: "Setting up a new site."
|
||||||
date: 2021-08-24T10:24:27+02:00
|
date: 2021-08-24T10:24:27+02:00
|
||||||
draft: false
|
draft: false
|
||||||
toc: false
|
toc: true
|
||||||
images:
|
|
||||||
tags:
|
tags:
|
||||||
- website
|
- website
|
||||||
- setup
|
- setup
|
||||||
- hugo
|
- hugo
|
||||||
|
- git-filter
|
||||||
---
|
---
|
||||||
|
|
||||||
Previously I tried using grav with the intention to serve a simple website as
|
Previously I tried using grav with the intention to serve a simple website as
|
||||||
@ -43,15 +43,28 @@ Currently I setup two branches: `master` which is deployed statically on
|
|||||||
leene.dev, and `dev` which is just for local development as I try out different
|
leene.dev, and `dev` which is just for local development as I try out different
|
||||||
things. I setup a clean-smudge git filter to manage deployment on a site-basis:
|
things. I setup a clean-smudge git filter to manage deployment on a site-basis:
|
||||||
|
|
||||||
```toml
|
``` toml
|
||||||
[filter "hostmgmt"]
|
[filter "hostmgmt"]
|
||||||
smudge = sed 's@\\$HOSTNAME\\$@http://localhost@'
|
smudge = sed 's@\\$HOSTNAME\\$@http://localhost@'
|
||||||
clean = sed 's@http://localhost@\\$HOSTNAME\\$@'
|
clean = sed 's@http://localhost@\\$HOSTNAME\\$@'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Note if we make a change to just the filter we can re-apply it by resetting our
|
||||||
|
index and checking out HEAD again.
|
||||||
|
|
||||||
|
``` bash
|
||||||
|
rm .git/index
|
||||||
|
git checkout HEAD -- "$(git rev-parse --show-toplevel)"
|
||||||
|
```
|
||||||
|
|
||||||
But looking closer at the hugo documentation, it would be better to prepare a
|
But looking closer at the hugo documentation, it would be better to prepare a
|
||||||
similar development and production configuration. We'll see if this can evaluate
|
similar development and production configuration. We'll see if this can evaluate
|
||||||
system environment variables.
|
system environment variables. Alternatively you can also specify the server
|
||||||
|
parameters directly.
|
||||||
|
|
||||||
|
``` bash
|
||||||
|
hugo server --bind=0.0.0.0 --baseURL=http://zathura --port=1313
|
||||||
|
```
|
||||||
|
|
||||||
## Planned features and content
|
## Planned features and content
|
||||||
|
|
||||||
|
8
content/projects/pyside.md
Normal file
8
content/projects/pyside.md
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
title: "Pyside"
|
||||||
|
date: 2021-08-29T12:53:19+02:00
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
Notes on using pyside to bind python with qml.
|
Loading…
x
Reference in New Issue
Block a user