This commit is contained in:
parent
a08d53b8d5
commit
16d1eb3f4c
7 changed files with 114 additions and 0 deletions
1
.frontmatter/database/mediaDb.json
Normal file
1
.frontmatter/database/mediaDb.json
Normal file
|
@ -0,0 +1 @@
|
|||
{}
|
1
.frontmatter/database/taxonomyDb.json
Normal file
1
.frontmatter/database/taxonomyDb.json
Normal file
|
@ -0,0 +1 @@
|
|||
{}
|
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"frontMatter.dashboard.openOnStart": true,
|
||||
"[markdown]": {
|
||||
}
|
||||
}
|
|
@ -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.
|
||||
|
|
24
content/posts/cad-shootout-fusion360.md
Normal file
24
content/posts/cad-shootout-fusion360.md
Normal 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
|
||||
|
|
@ -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
76
frontmatter.json
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue