1
0
Fork 0

add frontmatter
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Hamcha 2023-09-14 14:43:00 +02:00
parent a08d53b8d5
commit 16d1eb3f4c
Signed by: hamcha
GPG Key ID: 1669C533B8CF6D89
7 changed files with 114 additions and 0 deletions

View File

@ -0,0 +1 @@
{}

View File

@ -0,0 +1 @@
{}

5
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"frontMatter.dashboard.openOnStart": true,
"[markdown]": {
}
}

View File

@ -1,6 +1,7 @@
---
title: "Hobby CAD shootout: FreeCAD"
date: 2023-09-13T22:00:00+02:00
lastmod: 2023-09-14T12:34:37.222Z
toc: true
software: FreeCAD
license: Free and open source, LGPL license
@ -10,6 +11,9 @@ tldr: |
I explore FreeCAD for hobbyist use.
FreeCAD is the most featureful of the FOSS options but it's incredibly frustrating to use and IMO not reliable enough for the time being.
However the team [seems to care](https://forum.freecad.org/viewtopic.php?t=75768) so I have hopes for the future.
keywords:
- cad
- freecad
---
After [looking at one of the best commercial options]({{< relref "cad-shootout-onshape.md" >}} "Hobby CAD shootout: Onshape") around I decided to check out the most prominent open source option.

View File

@ -0,0 +1,24 @@
---
title: "Hobby CAD shootout: Fusion360"
date: 2023-09-14T19:00:00+02:00
toc: true
draft: true
software: Fusion360
license: Limited free version for personal use, otherwise starts at $545/year/user
tags:
- cad
tldr: |
I explore Fusion360 for hobbyist use.
TODO
---
The top pick of the 3D printing crowd
## Fusion360
### Free for personal use
### Dark mode?
## The trials

View File

@ -10,6 +10,9 @@ tldr: |
I explore Onshape for hobbyist use.
Onshape is an incredible application that is both powerful and intuitive.
The free tier gives you everything, provided you are ok with the non-commercial and non-private constraints however performance gets really sketchy with complex designs and the pricing is steep.
keywords:
- cad
- onshape
---

76
frontmatter.json Normal file
View File

@ -0,0 +1,76 @@
{
"$schema": "https://frontmatter.codes/frontmatter.schema.json",
"frontMatter.taxonomy.contentTypes": [
{
"name": "default",
"pageBundle": false,
"previewPath": null,
"fields": [
{
"title": "title",
"name": "title",
"type": "string"
},
{
"title": "date",
"name": "date",
"type": "datetime"
},
{
"title": "lastmod",
"name": "lastmod",
"type": "datetime"
},
{
"title": "toc",
"name": "toc",
"type": "datetime"
},
{
"title": "software",
"name": "software",
"type": "string"
},
{
"title": "license",
"name": "license",
"type": "string"
},
{
"title": "tags",
"name": "tags",
"type": "tags"
},
{
"title": "tldr",
"name": "tldr",
"type": "string"
},
{
"title": "keywords",
"name": "keywords",
"type": "choice",
"choices": [
"cad",
"freecad"
]
}
]
}
],
"frontMatter.framework.id": "hugo",
"frontMatter.content.publicFolder": "static",
"frontMatter.preview.host": "http://localhost:1313",
"frontMatter.content.pageFolders": [
{
"path": "[[workspace]]/content/pages",
"title": "Pages",
"previewPath": "pages"
},
{
"path": "[[workspace]]/content/posts",
"title": "Posts",
"previewPath": "posts"
}
]
}