This is content converted from Markdown!
Here's a JSON sample:
{
"foo": "bar"
}
package net.bubblemix.signature; | |
import java.io.UnsupportedEncodingException; | |
import java.nio.charset.Charset; | |
import java.nio.charset.StandardCharsets; | |
import java.security.InvalidKeyException; | |
import java.security.KeyFactory; | |
import java.security.KeyPair; | |
import java.security.KeyPairGenerator; | |
import java.security.NoSuchAlgorithmException; |
<html> | |
<head> | |
<style> | |
h1 { | |
font-family: Calibri; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Hello World!</h1> |
var request = require('request'); | |
const MicrosoftGraph = require("@microsoft/microsoft-graph-client"); | |
// required inputs | |
var tenant = ''; // tenant id | |
var clientId = ''; // application id | |
var secret = ''; // application password | |
// prepare http request | |
var url = 'https://login.microsoftonline.com/' + tenant + '/oauth2/v2.0/token'; |
"""" Pulls car data from Tesla inventory API """ | |
from datetime import datetime | |
import json | |
import requests | |
from pprint import pprint | |
import argparse | |
def get_cars(model='m3', condition='used', region='NSW'): | |
""" Get cars from Tesla inventory API """ |
"""" This script demonstrates how to use the Content Safety API Shield Prompt """ | |
import os | |
from pprint import pprint | |
from azure.ai.contentsafety import ContentSafetyClient | |
from azure.core.credentials import AzureKeyCredential | |
from azure.core.exceptions import HttpResponseError | |
from azure.core.rest import HttpRequest, HttpResponse |