- 1 envelope knox gelatin
- 1/4 cup cold water
- 1 1/4 cup canned pumpkin (not pre spiced)
- 1/2 cup milk
- 1/2 tsp ginger
- 1/2 tsp nutmeg
- 1 tsp cinnamon
- 1/2 tsp salt
- 1 tsp vanilla
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
| { | |
| "eventId": "6660be23-4477-4b9a-abf8-3cfe9cddd38e", | |
| "eventTimestamp": "2021-07-20T09:28:06.4939859-07:00", | |
| "timestamp": "2021-07-20T16:28:06.4967239+00:00", | |
| "metadata": { | |
| "service": "WasSetToMyService?", | |
| "schema": "http://schemas.data.api.godaddy.com/v1/events/pleskshared/domains.json" | |
| }, | |
| "source": { | |
| "producer": "KinesisTestDriver" |
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
| // This is based partially on the code lifted from this article: | |
| // https://stackoverflow.com/questions/41594683/encrypt-decrypt-in-c-sharp-using-certificate | |
| using System; | |
| using System.Text; | |
| using System.IO; | |
| using System.Security.Cryptography; | |
| using System.Security.Cryptography.X509Certificates; | |
| namespace Setec.Astronomy.ConsoleApp |
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
| using System; | |
| using System.IO; | |
| using Amazon; | |
| using Amazon.SecretsManager; | |
| using Amazon.SecretsManager.Model; | |
| using Amazon.Runtime; | |
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
| package com.mahldcat.mcjtytutorial.datagen; | |
| import com.mahldcat.mcjtytutorial.ExampleMod; | |
| //import com.mcjty.mytutorial.blocks.ComplexMultipartBlock; | |
| //import com.mcjty.mytutorial.blocks.ComplexMultipartTile; | |
| import com.mahldcat.mcjtytutorial.setup.Registration; | |
| import net.minecraft.block.Block; | |
| import net.minecraft.block.BlockState; | |
| import net.minecraft.data.DataGenerator; | |
| import net.minecraft.state.properties.BlockStateProperties; |
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
| buildscript { | |
| repositories { | |
| maven { url = 'https://files.minecraftforge.net/maven' } | |
| mavenCentral() | |
| } | |
| dependencies { | |
| classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '4.1.+', changing: true | |
| } | |
| } | |
| apply plugin: 'net.minecraftforge.gradle' |
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
| using System; | |
| using System.Collections.Generic; | |
| // This is based off a code fragment I saw in a java tutorial. | |
| // Wanted to play around with this--both to convert it to C# | |
| // and was screwing around with abstracting this into a separate | |
| // component that would "Do Work", and defer instantiation of the | |
| // worker entities until later? | |
| // | |
| namespace DeferredCreate |
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
| param( | |
| #the repo to walk | |
| [Parameter(Mandatory=$true)] | |
| $repoKey="", | |
| #how many artifacts should we keep? | |
| [int]$toLive = 5, | |
| #any packages we want to black list? | |
| $blackList =@(), | |
| #the api key to use | |
| [Parameter(Mandatory=$true)] |
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
| package <<NAMESPACE THIS THING>> | |
| class nuget { | |
| // it is possible to define values in the pipeline, and pass them in as args | |
| // so no need to put them into the script object | |
| static def generatenugetconfig(script, nugetList) { | |
| def workspace = script.pwd() | |
| def nugetConfigName= "nuget.config" | |
| //HACK: the java libs is causing all sorts of glitchy behavior on windows.... |
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
| @Library('net-core-build') _ | |
| import static <<namespace from net-core-build lib>>.nuget.*; | |
| import static <<namespace from net-core-build lib>>.csproj.*; | |
| pipeline { | |
| agent { | |
| label 'netcore' | |
| } | |
| environment { |