- improve guides
- publish barefoot shoe piece, as guide maybe?


## Members

Monthly $8/Yearly $100/lifetime $900
free digital book that year, along with supplemental stories
access to members-only mailing list
live stream Q&As
free audio books

Monthly $14/Yearly $120/lifetime $1400
real-time access
chances to hang out when I am near your town

## Lulu and birdie:

blog about good kids books
blog about pirate research
blog about activities for kids
podcast on famous pirates
what it's like to sail in a wood ship
why pirates

 - Members:
     free ebooks
     extra members only lulu and birdie stories and outtakes
     t-shirts
     artwork



## Notes:

Fix out of sequence postgres tables:

ALTER TABLE media_luximagesize ALTER COLUMN id SET DEFAULT nextval('media_luximagesize_id_seq'::regclass);
SELECT setval('media_luximagesize_id_seq', (SELECT MAX(id) FROM media_luximagesize)+1);

ALTER TABLE media_luximage ALTER COLUMN id SET DEFAULT nextval('media_luximage_id_seq'::regclass);
SELECT setval('media_luximage_id_seq', (SELECT MAX(id) FROM media_luximage)+1);

ALTER TABLE posts_post DROP CONSTRAINT posts_post_featured_image_id_93b44ab4_fk_photos_luximage_id;