Skip to content

Instantly share code, notes, and snippets.

View jglovier's full-sized avatar
😷
I may be slow to respond.

Joel Glovier jglovier

😷
I may be slow to respond.
View GitHub Profile

Chicken Enchilada Crock Pot Soup

1. Bake chicken breast

  1. Cover a baking pan in aluminum foil.
  2. Put 2-4 chicken breasts on the pan.
  3. Season with garlic powder or garlic salt and paprika.
  4. Cover the baking pan with another baking pan to keep the chicken from drying out in the oven.
  5. Bake at 300 degrees for approximately 30 minutes.

2. Cook garlic & onions

Joel 🐻 Bear's Vegetarian Garden Chili

Ingredients:

  • 2 small cans garbanzo beans
  • 2 small cans dark red kidney beans
  • 2 small cans black beans
  • 1 jar of taco sauce
  • 1 small bag of frozen sweet corn
  • 4 small cans ready cut tomatoes (garlic, oregano, basil)
  • 1 box vegetable stock

Daily Supplement Regimen

Last updated: 12/31/2022

Pills

Supplement Quantity Amount Notes
L-Theanine 1 200mg for cognitive support and relaxation/anxiety relief
Vitamin D3 1 5,000IU for mood support and depression
Calcium, Magnesium, Zinc 1 5mg zinc, 133mg magn, 333mg calc
@threepointone
threepointone / for-snook.md
Last active August 26, 2023 15:43
For Snook

https://twitter.com/snookca/status/1073299331262889984?s=21

‪“‬In what way is JS any more maintainable than CSS? How does writing CSS in JS make it any more maintainable?”

‪Happy to chat about this. There’s an obvious disclaimer that there’s a cost to css-in-js solutions, but that cost is paid specifically for the benefits it brings; as such it’s useful for some usecases, and not meant as a replacement for all workflows. ‬

‪(These conversations always get heated on twitter, so please believe that I’m here to converse, not to convince. In return, I promise to listen to you too and change my opinions; I’ve had mad respect for you for years and would consider your feedback a gift. Also, some of the stuff I’m writing might seem obvious to you; I’m not trying to tell you if all people of some of the details, but it might be useful to someone else who bumps into this who doesn’t have context)‬

So the big deal about css-in-js (cij) is selectors.

@notwaldorf
notwaldorf / list.md
Last active January 13, 2024 11:09
Meownica's packing list

Meownica's packing list

I travel a lot so I'm down to like 30 minutes of packing per any kind of trip. I always bring one carry-on suitcase for any trips up to 2 weeks (that I never check in unless forced) -- I have an Away suitcase because it's got a built-in (removable) battery, and amazing wheels.

🚨

  • 🆔Wallet & Passport
  • 💧Travel water bottle
  • 💳Travel credit cards (don't pay foreign currency fees!)
  • 💳Insurance cards
  • 💵Local currency you have
  • 🚎Local public transport cards
@jasonlong
jasonlong / example-sparkline.md
Last active May 14, 2018 02:36
Example for generating SVG sparklines – Released under CC0-1.0 (https://creativecommons.org/publicdomain/zero/1.0/)

example-sparkline

@threepointone
threepointone / 0 basics.md
Last active March 21, 2023 01:53
css-in-js

A series of posts on css-in-js

0. styles as objects

First, an exercise. Can we represent all of css with plain data? Let's try.

let redText = { color: 'red' };
@bkeepers
bkeepers / .env
Last active November 2, 2020 17:32
Probot plugin that ensures every commit message has the word "bananas"
# The ID of your GitHub App
APP_ID=
WEBHOOK_SECRET=development
# Uncomment this to get verbose logging
# LOG_LEVEL=trace # or `info` to show less
# Go to https://smee.io/new set this to the URL that you are redirected to.
# WEBHOOK_PROXY_URL=
@threepointone
threepointone / glam-for-css-folks.md
Last active September 4, 2022 07:43
why css purists will love glam

I made a little styling lib called glam

(some features are in development)

one

let's start off with the simplest use case. we'll make an 'index.html' page, and assume we've setup our js bundler to output bundle.js

// http://www.behindthename.com/names/gender/masculine/usage/georgian
$('.browsename').find('a:not([class]):not([href=""])').get().map(function(e) {
return $(e).attr('href');
}).map(function (url) {
$.ajax({
url:url,
dataType:'html',
success: function (data) {
$element = $(data).find('a.trn');
$elements = $element.get().filter(function(e) {