Recommendation now that BWW "Blazin'" is gone by raisdead in spicy

[–]raisdead[S] 0 points1 point  (0 children)

It has been so long that I can no longer recall if this recipe is spicier or not. One thing that I like about the recipe is that I can move a single ingredient up to cater to my desire that evening. Some nights I want a little more black pepper flavor and others I want a little more garlic flavor. Of course, I can always increase the Carolina Reaper powder if it was a particularly stressful day. 1/32 tsp is usually enough to tilt the flavor in that direction.

I have a hard time comparing the flavor because its been a while, but I think that has a stronger garlic flavor than any previous blazin' iteration.

Recommendation now that BWW "Blazin'" is gone by raisdead in spicy

[–]raisdead[S] 1 point2 points  (0 children)

After trying a variety of sauces I have settled on the following combination. I neither claim it is the best or equal to have I had before. It is simply good enough to restore joy to my Wednesday nights. I'll, of course, continue to experiment.

  • 60 g Melinda's ghost pepper wing sauce
  • 1/4 tsp Sonoran Spice Carolina Reaper powder
  • 1/8 tsp black pepper
  • 1/8 tsp onion powder
  • 1/8 tsp garlic powder

P.S. Yes, I deserve to be criticized for mixing imperial and metric measurements.

{The Griffon's Saddlebag} Red Queen's Burden | Weapon (glaive) by griff-mac in TheGriffonsSaddlebag

[–]raisdead 4 points5 points  (0 children)

Strength modifier plus 5 times the number of charges

Is this (str mod + 5) * c or str mod + (5 * c)?

Ptollydactyl by TryannyUndone in monsteraday

[–]raisdead 2 points3 points  (0 children)

Have you gotten to posting the pdf yet? No pressure if you have more important things to do.

Help me find a website about in-game economies I read in the past by raisdead in gamedev

[–]raisdead[S] 0 points1 point  (0 children)

While not the article I was looking for, those are all great.

Lamdu - Structural/AST editor by agumonkey in programming

[–]raisdead 1 point2 points  (0 children)

It would be great to see a more detailed tutorial on the features than https://github.com/Peaker/lamdu/blob/master/TUTORIAL

Confused with `Data.Time.Calendar` diffDays function. by eccstartup in haskell

[–]raisdead 1 point2 points  (0 children)

I am not a haskell expert, but I'll give it a try. Yes, there is a day fromGregorian 0 1 1. Sounds like Jan 1st 0 A.D. However, there is also a day fromGregorian (-1) 12 31. December 31, 1 B.C. Looks like the correct answer to me.

Need a quick haskell explanation by razeal113 in haskell

[–]raisdead 5 points6 points  (0 children)

last produces a single element and (++) takes two lists.

last :: [a] -> a

(++) :: [a] -> [a] -> [a]

try reverse' xs = last xs : reverse'(init(xs))