public class KaiterraTelemetry
{
public string Param {get;set;}
public string Units{get;set;}
public int Span {get;set;}
public KaiterraTelemetryPoint[] Points {get;set;}
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
function sleep(ms) { | |
return new Promise((resolve) => setTimeout(resolve, ms)); | |
} | |
async function deleteAll() { | |
while (true) { | |
document.getElementById("idSelectAll").click(); | |
await sleep(300); | |
document.querySelector('[data-testid="toolbar:movetotrash"]').click(); |
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
name: Issues and work tracking | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "docs/**" | |
- "nextmind-robot-telepresence/Library/PackageCache/**" | |
- "nextmind-robot-telepresence/Library/ScriptAssemblies/**" |
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
name: OSS Licence Compliance | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [assigned, opened, reopened] | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "docs/**" |
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
{ | |
"name": "mergetext", | |
"description": "Extract text from images and merge with content text to produce merged_text", | |
"skills": [ | |
{ | |
"@odata.type": "#Microsoft.Skills.Vision.OcrSkill", | |
"name": "#1", | |
"description": "Extract text (plain and structured) from image.", | |
"context": "/document/normalized_images/*", | |
"textExtractionAlgorithm": null, |
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
{ | |
"name": "docindexer", | |
"description": null, | |
"dataSourceName": "docs", | |
"skillsetName": "mergetext", | |
"targetIndexName": "uklegislation", | |
"disabled": null, | |
"schedule": null, | |
"parameters": { | |
"batchSize": null, |
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
from asyncvideoindexer import AsyncVideoIndexer | |
VIDEO_INDEXER_ACCOUNT_ID = "your-account-id" | |
VIDEO_INDEXER_KEY = "your-account-key" | |
VIDEO_INDEXER_ACCOUNT_LOCATION = "your-account-location" | |
async def get_video_indexer(): | |
video_indexer = await AsyncVideoIndexer.AsyncVideoIndexer.create( | |
VIDEO_INDEXER_ACCOUNT_ID, |
async def main(): video_indexer = await AsyncVideoIndexer.create( os.environ.get("VIDEO_INDEXER_ACCOUNT_ID"), os.environ.get("VIDEO_INDEXER_KEY"), os.environ.get("VIDEO_INDEXER_ACCOUNT_LOCATION"), )
video_to_upload = (
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
# URL: www.sealjay.com/unlocking-content-with-summaries-and-insight/ | |
from diagrams import Cluster, Diagram, Edge | |
from diagrams.programming.language import Csharp, Python | |
from diagrams.azure.ml import CognitiveServices | |
from diagrams.azure.web import Search, AppServices, AppServicePlans | |
from diagrams.azure.storage import BlobStorage | |
from diagrams.azure.integration import LogicApps | |
from diagrams.generic.storage import Storage | |
from diagrams.azure.compute import FunctionApps | |
from diagrams.onprem.compute import Server |
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
import click | |
@click.group() | |
def cli(): | |
"""A CLI to search for news articles using Bing News, and return appropriate articles.""" | |
@cli.command("phrase") | |
@click.option("-p", "--search_phrase", prompt="What phrase are you searching for?") | |
def search_bing_by_phrase(search_phrase): |
NewerOlder