small content update

This commit is contained in:
Lieuwe Leene 2021-08-30 17:54:51 +02:00
parent 3cfdbc4305
commit 94e935401c
No known key found for this signature in database
GPG Key ID: FD6DB59EC3B879CD
5 changed files with 60 additions and 10 deletions

11
content/links.md Normal file
View 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

View File

@ -1,7 +1,13 @@
---
title: "Building With SVG"
date: 2021-08-28T11:53:54+02:00
draft: true
draft: false
toc: true
tags:
- svg
- xml
- hugo
- golang
---
# 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-linecap: square; stroke-linejoin: rounded; }
path { fill: transparent; }
text { fill: white; }
text.literal { font-family: monospace; }
text { fill: white; font-family:'Trebuchet MS'; }
text.literal { }
line.ellipsis { stroke-dasharray: 1 3.5; }
tspan.hex { font-family: monospace; font-size: 90%; }
path.arrow { fill: white; }

View File

@ -1,7 +1,11 @@
---
title: "Mile Stones"
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 some point in time:
@ -9,4 +13,12 @@ This is a list of topics that I may include at somepoint in time:
2. Postfix setup guide
3. Danbooru setup guide
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

View File

@ -2,12 +2,12 @@
title: "Setting up a new site."
date: 2021-08-24T10:24:27+02:00
draft: false
toc: false
images:
toc: true
tags:
- website
- setup
- hugo
- git-filter
---
Previously I tried using grav with the intention to serve a simple website as
@ -49,9 +49,22 @@ things. I setup a clean-smudge git filter to manage deployment on a site-basis:
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
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

View 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.