1
0
Fork 0

Compare commits

..

2 commits

Author SHA1 Message Date
fb7a7a7485
muh seo
All checks were successful
continuous-integration/drone/push Build is passing
2023-09-15 23:12:05 +02:00
bb931ce77c
Woops missed that 2023-09-15 23:11:56 +02:00
3 changed files with 8 additions and 1 deletions

View file

@ -2,3 +2,6 @@ baseURL = 'https://faulty.equipment/'
languageCode = 'en-us' languageCode = 'en-us'
title = 'Faulty Equipment' title = 'Faulty Equipment'
theme = "fesite" theme = "fesite"
[Params]
description = 'Ramblings and analysis of one random software developer'

View file

@ -18,7 +18,7 @@ After looking at FreeCAD I wanted to wrap up the list of popular free choices be
## Fusion 360 ## Fusion 360
Fusion 360 is by far the most popular CAD software in 3D printing crowd. It initially launched as a trendy companion to Inventor, making most of its press due to being available on Mac OS X (most parametric CAD software like Inventor and Solidworks are Windows-only to this day). Fusion 360 is by far the most popular CAD software in 3D printing crowd. It initially launched as a trendy companion to Inventor, making most of its press due to being available on Mac OS X (most parametric CAD software like Inventor and Solidworks are Windows-only to this day) it somehow became the de-facto standard of 3D printing nerds worldwide, with tons of video-tutorials and learning material to find everywhere.
Fusion 360 requires online access (at least every 2 weeks) and has mandatory updates, I got prompted to either "Update now" or "Quit and update later", this means if any change for the worse comes later on (which they already have and totally will keep doing) you will have no choice to remain on the old version. Fusion 360 requires online access (at least every 2 weeks) and has mandatory updates, I got prompted to either "Update now" or "Quit and update later", this means if any change for the worse comes later on (which they already have and totally will keep doing) you will have no choice to remain on the old version.

View file

@ -14,4 +14,8 @@
{{ range .AlternativeOutputFormats -}} {{ printf ` {{ range .AlternativeOutputFormats -}} {{ printf `
<link rel="%s" type="%s" href="%s" title="%s" /> <link rel="%s" type="%s" href="%s" title="%s" />
` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} {{ end -}} ` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} {{ end -}}
<meta
name="description"
content="{{ if .Params.description }}{{ .Params.description }}{{ else if .Site.Params.description }}{{ .Site.Params.description }}{{ end }}"
/>
</head> </head>