From a6f7620784dbbee20f687bd14e465a00ed9a7bbe Mon Sep 17 00:00:00 2001 From: Hamcha Date: Thu, 14 Sep 2023 11:18:48 +0200 Subject: [PATCH] add tags --- content/posts/cad-shootout-freecad.md | 2 + content/posts/cad-shootout-onshape.md | 2 + content/posts/tgstation-roles.md | 69 +++++++++++++++++++++++++++ content/tags/cad/_index.md | 3 ++ layouts/taxonomy/tag.html | 13 +++++ 5 files changed, 89 insertions(+) create mode 100644 content/posts/tgstation-roles.md create mode 100644 content/tags/cad/_index.md create mode 100644 layouts/taxonomy/tag.html diff --git a/content/posts/cad-shootout-freecad.md b/content/posts/cad-shootout-freecad.md index 77c14e0..172143f 100644 --- a/content/posts/cad-shootout-freecad.md +++ b/content/posts/cad-shootout-freecad.md @@ -2,6 +2,8 @@ title: "Hobby CAD shootout: FreeCAD" date: 2023-09-13T22:00:00+02:00 toc: true +tags: + - cad 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. diff --git a/content/posts/cad-shootout-onshape.md b/content/posts/cad-shootout-onshape.md index 89d7eb7..858bcf1 100644 --- a/content/posts/cad-shootout-onshape.md +++ b/content/posts/cad-shootout-onshape.md @@ -2,6 +2,8 @@ title: "Hobby CAD shootout: Onshape" date: 2023-09-11T19:00:00+02:00 toc: true +tags: + - cad tldr: | I explore Onshape for hobbyist use. Onshape is an incredible application that is both powerful and intuitive. diff --git a/content/posts/tgstation-roles.md b/content/posts/tgstation-roles.md new file mode 100644 index 0000000..f9276c5 --- /dev/null +++ b/content/posts/tgstation-roles.md @@ -0,0 +1,69 @@ +--- +title: "Thoughts on /tg/station roles" +date: 2022-06-27T17:02:09+02:00 +draft: true +--- + +This is a long winded post full of personal rants, if you want the short version: + +{{< tldr >}} +I think Viro and Geneticists are bad roles as they should be reworked from the ground up to be less isolated and less "click on window and hope the RNG doesn't hate you" +{{< /tldr >}} + +Do you have no clue what that was about? Cool, keep reading! + + + +## PREFACE: Space Station 13 + +_TODO: EXPLAIN SS13 IN A PARAGRAPH SOMEHOW_ + +### PREFACE act 2: /tg/station is a game design trial by fire + +SS13 is an incredibly complex game, providing emergent gameplay in a multiplayer settings with constant changes and many communities testing different things. + +With the same people playing for upwards of decades with very fast iterations (the average round on my preferred /tg/station server is ~45 minutes), players will generally react strongly to changes and when given the opportunity and test the limit of every new mechanic as soon as it is introduced. + +Any new design has to account for weird interactions with the existing 9999 systems, exploits that might be found, [playerbase anger](https://hackmd.io/@tgstation/HJCoL8MUw#Ethical-and-Moral-Considerations-to-Avoid-Angering-Players) and cannot rely on secrets as the code is public. + +I believe this to be an incredibly tricky environment but with opportunity to foster truly unique experiences. For coders, Space Station 13 is an incredible sandbox in which you can sneak your passions for everyone to poke at. For players, mechanics can be something to explore, just pass the time or can even become a story device. + +## The roles + +_TODO_ + +### Note on personal experience and role omissions + +_TODO_ + +### Function vs Roleplay + +_TODO_ + +### What makes a good functional role + +_TODO_ + +### Good functional roles + +_TODO_ + +#### Chemist + +_TODO_ + +#### Engineering (Station engineer, Atmos Tech) + +_TODO_ + +### Bad functional roles + +_TODO_ + +### How RP level affects roles + +_TODO_ + +## Closing notes + +_TODO_ diff --git a/content/tags/cad/_index.md b/content/tags/cad/_index.md new file mode 100644 index 0000000..2b15c5e --- /dev/null +++ b/content/tags/cad/_index.md @@ -0,0 +1,3 @@ +--- +title: CAD software +--- \ No newline at end of file diff --git a/layouts/taxonomy/tag.html b/layouts/taxonomy/tag.html new file mode 100644 index 0000000..326ddaa --- /dev/null +++ b/layouts/taxonomy/tag.html @@ -0,0 +1,13 @@ +{{ define "main" }} +

Posts tagged "{{ .Title }}"

+
+{{ range .Pages.ByPublishDate.Reverse }} +
+ {{ .Title }} + {{ if .Params.tldr }} +
{{.Params.tldr|markdownify}}
+ {{ end }} +
+{{ end }} +
+{{ end }}