function Get-DBCServiceInformation {
$DisplayName = "Incontact"
# Check if running PowerShell 5 or earlier
if ($PSVersionTable.PSVersion.Major -le 5) {
# Get all services that match the display name using Get-WmiObject
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
<# | |
.SYNOPSIS | |
Executes the FFmpeg command to convert an input file to a specified audio format. | |
.DESCRIPTION | |
This function converts a given input file to the specified audio format using the FFmpeg command-line tool. | |
It allows customization of audio parameters such as sampling rate, channels, bitrate, and codec. | |
.PARAMETER InputFile | |
The path to the input file. |
- Papers with Code for Open X-Embodiment dataset
- Bridge Data for Robotic Arm manipulation Task
- General Robotic Navigation Models Page General Robotic Navigation Models Page
- A General-Purpose Robotic Navigation Model Video
- Autonomous finetuning : https://auto-improvement.github.io/
- EmbodiedAI video resources
- end2end EmbodiedAI
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
@echo off | |
:: Display the full path of this batch file for debugging | |
:: echo Debug: Batch file path: %~f0 | |
:: Get the full path of this batch file | |
set "batchFilePath=%~f0" | |
:: Get the base name (without extension) of the batch file | |
set "baseName=%~n0" | |
:: echo Debug: Base name of batch file: %baseName% |
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
// ==UserScript== | |
// @name Export Wealthsimple transactions to CSV for YNAB | |
// @namespace https://shotasenga.com/ | |
// @version 2024090300 | |
// @description Export transactions from Wealthsimple to a CSV file for YNAB import | |
// @author Shota Senga | |
// @match https://my.wealthsimple.com/app/activity* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=wealthsimple.com | |
// @grant none | |
// ==/UserScript== |
This guide outlines the process of extracting custom font icons from a font file (EV-IVR--Script-Studio
) using FontForge. With the assistance of Meta AI, we successfully extracted the required icons in SVG format.
Analysis of the Certificate Authorities accessible within AWS Lambda.
- Install python version similar to one installed on aws lambda (eg: 3.12)
- Download
cryptography
package intopython
subfolder using command listed at https://docs.aws.amazon.com/lambda/latest/dg/python-package.html#python-package-create-update - Zip
python
folder and upload to layers. - Create python function with below code
- Assign cryptography layer to python function.
winget install -e --id Git.Git
winget install -e --id=Python.Python.3.13
winget install -e --id Microsoft.VisualStudioCode
winget install -e --id Microsoft.PowerShell
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
# Get all files in the current directory, excluding the output file | |
Get-ChildItem -File | Where-Object {$_.Name -ne "file_contents.txt"} | ForEach-Object { | |
# Print the filename | |
"Filename: $($_.Name)" | |
# Print the file contents | |
"Contents:" | |
Get-Content -Path $_.FullName | |
"------------------------" | |
} | Out-File -FilePath "file_contents.txt" -Encoding utf8 |
NewerOlder