Skip to content

Instantly share code, notes, and snippets.

View purinkle's full-sized avatar

Rob Whittaker purinkle

View GitHub Profile

5e New Character Questionnaire

This is a checklist of questions to help you build a new character. You can answer them however you want, but if you want instant inspiration, most questions have tables that you can roll to get your answers. To do this properly, you will need the PHB (Player's Handbook), and the XGE (Xanathars Guide to Everything). Note, with the answer to many questions, you should think as to why that question is true. Does the answer fit with what you have so far?

Character Essentials

What class are you?

@matsubo
matsubo / README.md
Last active January 31, 2023 10:46
tmuxinator example for rails development using vim.

README

Rails CLI configuration using tmuxinator

Istallation

% gem install tmuxinator
@PurpleBooth
PurpleBooth / README-Template.md
Last active May 3, 2024 18:53
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@kylekeesling
kylekeesling / kyles_super_cool_pdf.rb
Created November 15, 2013 03:07
How to Generate a Prawn PDF class with a repeating footer
class KylesSuperCoolPdf < Prawn::Document
def initialize
super()
repeat :all do
#Create a bounding box and move it up 18 units from the bottom boundry of the page
bounding_box [bounds.left, bounds.bottom + 18], width: bounds.width do
text "Probably the Best Footer Ever", size: 8, align: :center
end