Skip to content

Instantly share code, notes, and snippets.

AI Prompt for creating a Session Plan
Ok you are now my co-dm for a d&d campaign that I am running called The Ruined Prince set in the homebrewed world of Atellas. The party are guardians for a boy named Raeshi. They are to escort him to the heart of the world where he is to confront his destiny with the help of the guardians, but first they must assemble the rod of seven parts.

Session notes consists of the SlyFlourish method of building a plan.

Review the Characters, Strong Start, Possible Scenes, Important NPCs, Fantastic Locations, Secrets and clues, possible rewards/treasure
For Review the Characters: Use the following information and shorten it to the smallest amount possible.
Galad is a twilight cleric who was chosen by the Priest of Fharlanghn during the Trial of Ekba and set out on a journey to the Archive of Istis and Time's End to find his destiny.
Ulrik is an armorer artificer who became an amateur archaeologist and explored Dwarven and Elven ruins in search of knowledge. His affinity for mag
@callmeradical
callmeradical / summer_reading.md
Created July 23, 2019 18:30
Summer Reading List 2019

My Summer Reading List

This is an ordered list of books I am planning on reading this summer. I think the list is fairly ambitious, and this is a late start (end of July), but I fully intend on completing this list.

  1. Seeking Wisdom
  2. Spiritual Discipleship
  3. The Shotgun Arcana
  4. The Queen of Swords
  5. The Black Company (Complete Chronicles)

Keybase proof

I hereby claim:

  • I am callmeradical on github.
  • I am callmeradical (https://keybase.io/callmeradical) on keybase.
  • I have a public key whose fingerprint is 7D48 87CC 3BF1 402C 6CEE 718B 0F04 50DC 6713 BF86

To claim this, I am signing this object:

@callmeradical
callmeradical / user_data
Last active August 29, 2015 14:20
test_kitchen_user_data
#!/bin/bash
# download crts
wget http://url-here/certs/ca-bundle.crt -O /etc/pki/tls/certs/ca-bundle.crt
wget http://url-here/certs/ca-bundle.trust.crt -O /etc/pki/tls/certs/ca-bundle.trust.crt
## for chef
mkdir -p /opt/chef/embedded/ssl/certs
mkdir -p /opt/chef/embedded/lib/ruby/site_ruby/1.9.1/rubygems/ssl_certs
ln -s /etc/pki/tls/certs/ca-bundle.crt /opt/chef/embedded/ssl/certs/ca-bundle.crt
ln -s /etc/pki/tls/certs/ca-bundle.trust.crt /opt/chef/embedded/ssl/certs/ca-bundle.trust.crt
ln -s /etc/pki/tls/certs/ca-bundle.crt /opt/chef/embedded/lib/ruby/site_ruby/1.9.1/rubygems/ssl_certs/cert.pem
@callmeradical
callmeradical / rgetmail.rb
Created November 6, 2013 18:53
A ruby script to use with get mail for downloading all mall from a user.
require 'optparse'
options = {}
puts "This script is meant to be used with GoogleApps accounts."
OptionParser.new do |opts|
opts.banner = "Usage: rgetmail.rb [options]"
opts.on('-e', '--email EMAIL_ADDRESS','User Email Address') { |v| options[:email] = v }
@callmeradical
callmeradical / fetchart.rb
Created June 1, 2011 06:48
search for and download album art from amazon by movesmyers
#!/usr/bin/ruby -w
# search amazon for album art.
# run this from the directory where the album resides.
require 'rubygems'
require 'hpricot'
require 'open-uri'
# ****************************************************************
# Additional functionality