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
# Update MachineSpecificSettings when Windows does to change the UID for the audio hardware | |
# To use Get-AudioDevice, install AudioDeviceCmdlets | |
# Install-Module -Name AudioDeviceCmdlets | |
# See https://github.com/frgnca/AudioDeviceCmdlets | |
# | |
# I used https://jsonlint.com/ for verifying the embedded JSON that Adobe uses | |
# get the latest version of Audition installed | |
$version = (gci ([IO.Path]::Combine( $env:APPDATA, "Adobe\Audition")) | sort-object Name -Descending | Select-Object -First 1).Name |
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
# SRT File format https://docs.fileformat.com/video/srt/ | |
# WebVTT file format https://developer.mozilla.org/en-US/docs/Web/API/WebVTT_API | |
param ( | |
[Parameter(Mandatory = $true)][string]$localPath | |
) | |
# Get all of the matching file names | |
$MatchingFileNames = (Get-ChildItem $localPath -File) | sort-Object Name | |
# walk through the list of files |
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
#! /usr/bin/env python3 | |
# Use this to generate a list of glyph names from a font to a | |
# text file. This can be passed to pyftsubset to generate a | |
# small font. | |
# This can also generate a C# constants class from the font | |
# Usage: | |
# dump-cmap.py fontfile.ttf glyphlist.txt | |
# or | |
# dump-cmap.py fontfile.ttf constants.cs fontname namespace |
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
#! /usr/bin/env python3 | |
# This script will recursively walk through all of the .xaml files | |
# in a project and collect the names of the icon font glyphs | |
# For a line that contains the following markup | |
# Glyph="{x:Static icons:MaterialDesignIconFont.AccountEditOutline}"/> | |
# It would return account-edit-outline | |
# | |
# Usage: | |
# WalkThru.py project-folder IconFontAlias |
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
/* | |
SQL code for SQL Server from | |
https://stackoverflow.com/questions/66496778/sql-statement-including-makevalid-crushing-the-server | |
*/ | |
/* | |
C# version using SqlGeography instead of SqlGeometry | |
Requires the Microsoft.SqlServer.Types assembly | |
Install-Package Microsoft.SqlServer.Types -Version 14.0.1016.290 | |
*/ | |
void MakeValidCall() |
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
# One parameter, to set the Num Lock state to On or Off, with | |
# On as the default | |
Param( | |
[Parameter(Mandatory=$false)] | |
[ValidateSet("On", "Off")] | |
[String[]] $onoff='On' | |
) | |
# Get the current state of the Num Lock key | |
$CurrentState = [console]::NumberLock |
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
[system.console] | Get-Member -Static -MemberType property | Format-Table name |
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
using System; | |
namespace Os.Properties | |
{ | |
// Get access to the hidden SDK class SystemProperties. The SystemProperties | |
// class provides access to the System Properties store. This store contains | |
// a list of key-value pairs | |
// See https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/os/SystemProperties.java | |
public static class SysProp | |
{ |
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
if (new FilterGraph() is IFilterGraph2 graphBuilder) | |
{ | |
// Create a video capture filter for the device | |
graphBuilder.AddSourceFilterForMoniker(dev.Mon, null, dev.Name, out IBaseFilter capFilter); | |
// Cast that filter to IAMCameraControl from the DirectShowLib | |
IAMCameraControl _camera = capFilter as IAMCameraControl; | |
// Get the current focus settings from the webcam | |
_camera.Get(CameraControlProperty.Focus, out int v, out CameraControlFlags f); |
NewerOlder