1
0
Fork 0

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

This commit is contained in:
Hamcha 2023-09-14 11:18:48 +02:00
parent 6529694337
commit a6f7620784
Signed by: hamcha
GPG Key ID: 1669C533B8CF6D89
5 changed files with 89 additions and 0 deletions

View File

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

View File

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

View File

@ -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!
<!--more-->
## 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_

View File

@ -0,0 +1,3 @@
---
title: CAD software
---

13
layouts/taxonomy/tag.html Normal file
View File

@ -0,0 +1,13 @@
{{ define "main" }}
<h1>Posts tagged "{{ .Title }}"</h1>
<section class="post-list">
{{ range .Pages.ByPublishDate.Reverse }}
<article>
<time datetime="{{ .Date | time.Format "2006-01-02"}}">{{ .Date | time.Format "2006-01-02"}}</time> <a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ if .Params.tldr }}
<div class="summary">{{.Params.tldr|markdownify}}</div>
{{ end }}
</article>
{{ end }}
</section>
{{ end }}