Item | Amount | Notes |
---|---|---|
Peanut Butter | 50% |
I used Meridian Smooth Peanut Butter |
>85% Chocolate | 50% |
I used Green & Black's 85% |
Cinamon Sugar | <2g |
For sprinkling |
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
Serial.println("SCHAR_MIN = " + String(SCHAR_MIN, DEC) + ", " + String(SCHAR_MIN, HEX)); // minimum value for a signed char | |
Serial.println("SCHAR_MAX = " + String(SCHAR_MAX, DEC) + ", " + String(SCHAR_MAX, HEX)); // maximum value for a signed char | |
Serial.println("UCHAR_MAX = " + String(UCHAR_MAX, DEC) + ", " + String(UCHAR_MAX, HEX)); // maximum value for an unsigned char | |
Serial.println("CHAR_MIN = " + String(CHAR_MIN, DEC) + ", " + String(CHAR_MIN, HEX)); // minimum value for a char | |
Serial.println("CHAR_MAX = " + String(CHAR_MAX, DEC) + ", " + String(CHAR_MAX, HEX)); // maximum value for a char | |
Serial.println("SHRT_MIN = " + String(SHRT_MIN, DEC) + ", " + String(SHRT_MIN, HEX)); // minimum value for a short | |
Serial.println("SHRT_MAX = " + String(SHRT_MAX, DEC) + ", " + String(SHRT_MAX, HEX)); // maximum value for a short | |
Serial.println("USHRT_MAX = " + String(USHRT_MAX, DEC) + ", " + Str |
The terms regular expression, regex and regexp are 100% synonymous. I call them regexes.
Gotcha: The
\
character is both an escape and an unescape character depending on the context.
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
[RequireComponent(typeof(Renderer))] | |
public class ColorSetter : MonoBehaviour | |
{ | |
private const string PROPERTY_ID = "Target Color"; | |
private Renderer _renderer; | |
private void Start() | |
{ | |
_renderer = GetComponent<Renderer>(); | |
} |
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
using System; | |
using System.Diagnostics.CodeAnalysis; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using Xunit; | |
namespace Junk.TaskCanceled.Tests | |
{ | |
[SuppressMessage("ReSharper", "MethodSupportsCancellation", Justification = "That's the point of the test.")] | |
public class Tests |
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
using Cinemachine; | |
using UnityEngine; | |
[ExecuteAlways] | |
[RequireComponent(typeof(CinemachineTargetGroup))] | |
public class TargetGroupTransition : MonoBehaviour | |
{ | |
[Range(0, 1)] public float Blend = 1; | |
private CinemachineTargetGroup _targetGroup; |
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
/* Blend to camera focus from the character to the firefly. | |
* No effect on actual target group weighting. | |
*/ | |
using System.Collections; | |
using Cinemachine; | |
using UnityEngine; | |
namespace Project | |
{ | |
[RequireComponent(typeof(CinemachineTargetGroup))] |
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
{ | |
"source": "mockoon:1.8.0", | |
"data": [ | |
{ | |
"type": "environment", | |
"item": { | |
"uuid": "", | |
"lastMigration": 10, | |
"name": "New environment", | |
"endpointPrefix": "", |
NewerOlder