Skip to content

Instantly share code, notes, and snippets.

@claydegruchy
claydegruchy / Getting over a cold.md
Created April 14, 2025 13:05
Getting over a cold

Getting over a cold

Every time I get a cold I forget how shitty it is and I forget all my tips on how to get over it quickly, so this is a log so I don't forget.

Phases

When I get a cold, I usually experience each of these in order, stacking until the end. Each has its own needs, so they'll be addressed separately

Sore Throat

This is a warning sign that the sickness is approaching.

  • Brush teeth more often.

playing games on a plane or without internet

why

all you have is a macbook and your friend has another machine, such as a steam deck, phone or computer. you want to play games. you're in the sky and can't get down from there for a while. what do you do?

what

what we want to do is make a wifi network from this mac for others to connect to

outline

this is for ventrua but you could use whatever probably. start here: https://support.apple.com/guide/mac-help/share-internet-connection-mac-network-users-mchlp1540/13.0/mac/13.0

List of political parties in Sweden for EU election 2024

This is a list generally for my own personal use.

The goal is for the reader to get an idea of what each party really stands for. I'm trying to only add things that the party has commented on in a concrete way, or shown a clear goal of attaining. No general 'I want to do cool stuff lol' or hand wavey 'i think the environment is important :):):):)' type of statements.

I have cut this list down pretty heavily compared to the original running list as I didn't want to do 100+ investigations given that a lot of information for these parties either doesnt exist, is written in blovian (link), or is behind some random news site paywall.

I based my assessment of who gets into this list on which parties in the previous link put a picture on their application. No, this is not a a particuarly scientific approach.

@claydegruchy
claydegruchy / List of most Starfield Events, Maps of hazards
Last active November 20, 2023 22:20
A list of most starfield event triggers
OnAction
OnActivate
OnActorActivatedRef
OnActorValueChanged
OnActorValueGreaterThan
OnActorValueLessThan
OnAffinityEvent
OnAffinityEventSent
OnAliasChanged
OnAliasChangedSpecific
// Creates UVs for THREE js geometry
// useful for if you need to add a texture to a concave hull, for example
import * as THREE from 'three';
function generateUvs(geometry) {
const uvNumComponents = 2;
geometry.computeVertexNormals();
function pointsInPlaneToPoints2D(points3D) {