- Marcros are divided into two food sources:
- Red Meat (Ruminants) for protein and fat
- Rumainants are herbivore mamals that digest cellulose
- Sources are:
- Bison
- New York Strip
- Top Sirloin
- Red Meat (Ruminants) for protein and fat
- Lean Ground Beef
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Before method that runs before each test and can communicate values via arguments | |
// Pros: Consolidate setup code | |
// Pros: No sharing of memory between tests, can run in parallel | |
// Pros: Use symbols for dependencies | |
// Cons: A little bit magical with using reflection. | |
func TestSomething(t *testing.T) { | |
t.Before(func (t *testing.T) (*db.Conn, map[string]interface{}) { | |
return createDBConn(t), createFixture() |
Prompt yourself every 5 minutes after 7 PM if you really want to still be using your computer or not. This helps to avoid late night device use. You can dismiss the dialog every 5 minutes. If you don't dismiss it within 15 seconds your computer will shutdown.
- Add the
shutdown.applescript
to your local bin folder~/.local/bin/shutdown.applescript
. You may have to create this directory first withmkdir -p ~/.local/bin
. Make the script executable with
OlderNewer