Skip to content

Instantly share code, notes, and snippets.

View ErinLMoore's full-sized avatar
💭
🦑 ✨ 🏃🏻‍♀️

Erin Moore ErinLMoore

💭
🦑 ✨ 🏃🏻‍♀️
View GitHub Profile
@ErinLMoore
ErinLMoore / make_python_project.sh
Created March 21, 2017 20:53
A bash script to quickly stand up a small python module.
PROJECT_NAME=${1:-Python_Project}
#PROJECT_NAME_LOWER=`echo "$PROJECT_NAME" | tr '[:upper:]' '[:lower:]'`
mkdir $PROJECT_NAME
cd $PROJECT_NAME
echo "import sys\nsys.path.append('~\_________')\nfrom src.$PROJECT_NAME import _______\n\nclass main():" > main.py
touch main.py
mkdir src
mkdir test
cd src
touch __init__.py
@ErinLMoore
ErinLMoore / rfh.md
Last active July 27, 2017 02:32
🍰🍳🥘🍛 Recipes from Hell 🍛🥘🍳🍰

Recipes From Hell

a minimally edited collection of computer-generated recipes based on The Historic American Cookbook Dataset

For Rarebits, Housewife, and Cookery Stars

Contents:

  • For Steamed Potatoes and Potatoes .............. 237
  • Contrivance of the Parmesan ........... 394-139
@ErinLMoore
ErinLMoore / toe.md
Created July 27, 2017 02:36
🌜🏰👸🏼 Tales Of Enchantment 👸🏾🏰🌛

TALES OF ENCHANTMENT

Cherry-picked neural network output trained on The Fairy Books by Andrew Lang

Table Of Contents:

  • The Black Rabbles of Armassy Bear
  • The Three Days or the Star Master
  • The Story of the Princess Mirlimmp
  • The Magic King Grumbly
@ErinLMoore
ErinLMoore / MoGBW.txt
Created September 12, 2017 16:53
Moths of Great Britain (whimsical)
scarce vapourer
dingy footman
banana stowaway
least black arches
oak processionary
sallow kitten
three-humped prominent
wild cherry sphinx
small elephant hawk-moth
blackberry looper
@ErinLMoore
ErinLMoore / code.py
Created March 24, 2023 18:21
Adafruit Neotrellis Micropython coe
# SPDX-FileCopyrightText: 2022 ladyada for Adafruit Industries
# SPDX-License-Identifier: MIT
import time
import board
from adafruit_neotrellis.neotrellis import NeoTrellis
from adafruit_neotrellis.multitrellis import MultiTrellis
from random import randint
###### Settings ########