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
# AI-enhanced PowerShell script using prompting for natural language and predictive insights | |
Import-Module PSAI | |
$assistant = New-OAIAssistant | |
# System Health Metrics | |
$metrics = @{ | |
CPU = (Get-Counter '\Processor(_Total)\% Processor Time').CounterSamples.CookedValue | |
Disk = (Get-WmiObject Win32_LogicalDisk | Measure-Object -Property FreeSpace -Average).Average | |
Memory = (Get-Counter '\Memory\% Committed Bytes In Use').CounterSamples.CookedValue |
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 Invoke-ATMCashDispenser { | |
param([int]$AmountRequested) | |
class UnitOfWork { | |
hidden [int]$Amt | |
[int]$Request | |
[int]$NumberOf50 | |
[int]$NumberOf20 | |
[int]$NumberOf10 | |
[int]$NumberOf5 |
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
<# | |
.EXAMPLE | |
llm "what is the capital of spain" -provider openai | |
.EXAMPLE | |
llm "what is the capital of spain" -provider anthropic | |
.EXAMPLE | |
llm "what is the capital of spain" -provider gemini | |
#> |
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
param( | |
$Alive = 'O', | |
$Dead = ' ', | |
$SleepInSeconds = .5 | |
) | |
<# | |
Conway's Game of Life | |
The classic cellular automata simulation. Press Ctrl-C to stop. | |
More info at: https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life |
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
# Load necessary .NET libraries | |
Add-Type -AssemblyName PresentationFramework, WindowsBase | |
# XAML definition | |
[xml]$xaml = @" | |
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
Title="Posh Runner" Height="300" Width="400"> | |
<Grid> | |
<Label Content="PS Cmd:" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top"/> |
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 Get-ChatCompletion { | |
param( | |
$messages, | |
$model = "gpt-3.5-turbo", | |
$functions, | |
$function_call, | |
$temperature = 0.7, | |
$max_tokens, | |
$stop, | |
$top_p = 1.0, |
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
$list1 = ConvertFrom-Csv @" | |
list1 | |
Gigi | |
Jo | |
Chin | |
Phil | |
Jojo | |
"@ | |
$list2 = ConvertFrom-Csv @" |
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
role : system | |
content : Please respond with JSON. The JSON must always be an array of objects. | |
Have an entry for each task for each developer like this template: | |
{ | |
ProjectManager: "Jane Doe", | |
Developer: "John Doe", | |
TaskName: "Create a new API", | |
StartDate: "2020-01-01", | |
Duration: 5 |
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
$data = ConvertFrom-Csv @' | |
Name,Score,Grade | |
Ahmed,76 | |
Bassam,91 | |
Amira,42 | |
Nadia,83 | |
Joseph,36 | |
Mary,45 | |
Ashraf,81 | |
Amal,56 |
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
#Requires -Modules PowerShellAI | |
$str = Get-Clipboard | |
$prompt = " | |
Clean up this copy-paste from YouTube and make it suitable for pasting into Notion as meeting notes. | |
- Remove time stamps | |
- Remove line breaks | |
- Grammar, spell check and proper punctuation | |
$str |