Skip to content

Instantly share code, notes, and snippets.

View manchuwook's full-sized avatar
💭
I may be slow to respond.

Steven Altsman manchuwook

💭
I may be slow to respond.
View GitHub Profile
@manchuwook
manchuwook / pihole.yaml
Created May 11, 2020 16:20
PiHole Yaml
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: pihole-admin
imagePullSecrets:
- name: dockersecret
---
apiVersion: storage.k8s.io/v1
kind: StorageClass
<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns">
<key attr.name="label" attr.type="string" for="node" id="label"/>
<key attr.name="Edge Label" attr.type="string" for="edge" id="edgelabel"/>
<key attr.name="weight" attr.type="double" for="edge" id="weight"/>
<key attr.name="r" attr.type="int" for="node" id="r"/>
<key attr.name="g" attr.type="int" for="node" id="g"/>
<key attr.name="b" attr.type="int" for="node" id="b"/>
<key attr.name="x" attr.type="float" for="node" id="x"/>
<key attr.name="y" attr.type="float" for="node" id="y"/>
@manchuwook
manchuwook / hlsrcharacter.ts
Created August 3, 2019 16:21
Hero Lab Shadowrun Character JSON class for Typescript
export interface Welcome {
actor: Actor;
}
export interface Actor {
actorAttr: ActorAttr;
containers: { [key: string]: Container };
picks: { [key: string]: Pick };
amendments: Amendment[];
actorSettings: { [key: string]: ActorSetting };