- Clean and trim 11 trees
- Roof repair on back of house and inside drywall
- Laundry room wall repair and replace door
- Replace fence and gate on side of house
- Re-tile bathtube, replace main door, replace light fixture
- Replace entire bathtub in master, replace light fixture
This file has been truncated, but you can view the full file.
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
{ | |
"Arrow of Slaying": { | |
"name": "Arrow of Slaying", | |
"meta": { | |
"Type": "Ammunition", | |
"Cost": "0 gp", | |
"Weight": "0.05 lb", | |
"Rarity": "very rare", | |
"Magic": true, | |
"Roll": "6d10", |
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
How to Use Inventory! | |
!inv [+/-/?/help/delete] [item] [quantity] | |
Accesses the cvar inv for the current character. | |
When specifying an item with a name longer than 1 word, use the format "Item Name" | |
!inv shows the current character's inventory | |
!inv ? Item searches for the given item | |
!inv + Item adds one of the given item | |
!inv + Item # adds the given number of the given item | |
!inv - Item removes one of the given item |
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
Yeah let me copy it over for you | |
Deck of Many Things | |
by @Dominus Croebh | |
So, for this one, you need all of the cvars from the pastebins. Then you call it with: | |
!deckofmany [#] | |
The deck maxes at 22. You might notice the images don't match the names, I'm too lazy to photoshop new images. | |
Cards with a crown are only available in the full deck, as per DMG.162. |
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
# Create counter to track Ki points | |
!customcounter create Ki -min 0 -max 2 | |
# Create command to use Ki points for Flurry of Blows | |
!alias flurry !multiline | |
{{"!cc Ki -1" if get_cc("Ki") > 0 else "No Ki left"}} | |
{{"!attack Unarmed Strike" if get_cc("Ki") > 0 else ""}} | |
{{"!attack Unarmed Strike" if get_cc("Ki") > 0 else ""}} | |
# Create command to use Ki points for Flurry of Blows with named opponent |
- Is location zoned to allow rental of above-garage space?
- Yes!
- Is the property currently rented?
- Is that loft apt set up to be separate for utilities, mail, etc?
- 3 meters
- What is the community like? (How many year round folks, families vs retired folks, etc.)
- What are the oil/electric heating zones?
- Is there a fence / can one be built around the back yard for pets?
- Not completely fenced
- Sloped backyard
I hereby claim:
- I am masterots on github.
- I am masterots (https://keybase.io/masterots) on keybase.
- I have a public key ASDKksouqkELMOinqkwFJrkHvsBh57JuvXtrs_hGFgD8Bgo
To claim this, I am signing this object:
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
function largestPalindrome(lowNum, highNum) { | |
var max = 0; | |
for (var i = highNum; i >= lowNum; i--) { | |
for (var j = i; j >= lowNum; j--) { | |
var mul = j * i; | |
if (isPalindrome(mul) && mul > max) { | |
max = i * j; | |
} | |
} | |
} |
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
function isPrime(n) { | |
if (isNaN(n) || !isFinite(n) || n % 1 || n < 2) { | |
return false; | |
} | |
if (n % 2== 0) { | |
return (n == 2); | |
} | |
if (n % 3== 0) { | |
return (n == 3); | |
} |
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
function *fibbonacciGenerator(max) { | |
if (!max) { | |
console.log("Please enter a maximum number for the fibbonacciGenerator"); | |
return; | |
} | |
var previous = 0; | |
var next = 1; | |
var current = 1; | |
while (current < max) { | |
yield current; |
NewerOlder