- Vegetable oil to cover pan
- 1 Onion, chopped
- 1 TSP whole cumin
- 1/2 TSP whole cloves
- 2 TSP dried coriander, ground
- 1/2 TSP cinnamon, ground
- 1/2 TSP nutmeg, ground
This file contains 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
javascript:(function() {var e = jQuery('[id^=pull_request_body]');if (e.length) {e.val('## What? Why?\nWhat was changed. Why did are we making this change?\n\n\n## Release Notes\n- Description text for the weekly report.\n- Description text for the weekly report.\n\n\n## Deployment Steps\nWhat needs to be done on day of launch.');}})(); |
This file contains 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
## First you can generate a weighted array | |
weighted 1: true, 2: false # [true, false, false] | |
weighted 1: true, 3: false # [true, false, false, false] | |
## Then random picks one randomly | |
## The following will return true or false with a 1:3 ratio | |
random weighted 1: true, 3: false |