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
{ | |
"JPSS 2 & LOFTID": { | |
"date": "Nov. 10", | |
"rocket": "Atlas 5", | |
"spaceport": "Vandenberg Space Force Base, California", | |
"pad": "SLC-3E", | |
"launchWindow": "0925 GMT (5:25 a.m. EDT; 2:25 a.m. PDT) (Instantaneous)", | |
"moreInfoLink": "JPSS2andLOFTID.html", | |
"rocketPicture": "Atlas_V_Cropped.png" | |
}, |
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
var markdownDocumentation = markdownDocumentation || (() => { | |
const version = '1.0.3'; | |
const lastUpdate = 1578236090; | |
var documentationCSS = '[css]<br>' | |
+ 'bg {<br>' | |
+ "padding: 10px; background: AliceBlue; background-image: url('https://i.imgur.com/i9vmkzO.png');<br>" | |
+ '}<br>' | |
+ '<br>' | |
+ 'h1 {<br>' |
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
var markdownNotesBio = markdownNotesBio || (() => { | |
const version = '1.0.1'; | |
const lastUpdate = 1578078196; | |
const schemaVersion = 1.0; | |
const CONFIG = { | |
apiStart: '<!-- API_markdown -->', | |
apiEnd: '<!-- API_markdown_end -->' | |
}; |
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
var markdown = markdown || (() => { | |
const version = '1.0.9'; | |
const lastUpdate = 1578236090; | |
const checkInstall = () => { | |
log('-=> markdown v'+version+' <=- ['+(new Date(lastUpdate*1000))+']'); | |
}; |
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
//if (MarkStart) {MarkStart('DifficultyRating');} | |
/* | |
* Difficulty Rating - 5e Encounter Calculator | |
* by Michael Greene (Volt Cruelerz) | |
* | |
*/ | |
on('ready', () => { | |
const drname = 'Difficulty Rating'; |
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
let airIndex = new Error(); | |
// =============================================================================== | |
// AIRBAG - API Crash Handler | |
// | |
// Version 1.3.2 | |
// | |
// By: github.com/VoltCruelerz | |
// =============================================================================== | |
// Whether or not the code is operational |
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 org.example.basicapp; | |
import com.amazonaws.services.sagemakerruntime.AmazonSageMakerRuntime; | |
import com.amazonaws.services.sagemakerruntime.AmazonSageMakerRuntimeClientBuilder; | |
import com.amazonaws.services.sagemakerruntime.model.InvokeEndpointRequest; | |
import com.amazonaws.services.sagemakerruntime.model.InvokeEndpointResult; | |
import java.nio.ByteBuffer; | |
public class App |