"Ten minutes of Googling is now ten seconds in the terminal."
~ John D.
For developers, referencing things online is inevitable – but one can only look up "how to do [X] in docker or git" so many times before losing your mind.
Install-Module PShell-AI
Set your OpenAI API key.
Note: Make sure you add credits to your account. Otherwise you only get back blank responses.
$env:OpenAIKey='[your-key]'
- Generate shell commands from a description.
- Reference code snippets for any programming language.
- Fast, minimal UI.
- Auto-extract code from response and copy to clipboard.
- Follow up to refine command or explanation.
- Concise, helpful responses.
If you install PwshSpectreConsole
you will get a better display of the responses.
Install-Module PwshSpectreConsole
q make a new git branch
git branch new-branch
q find files that contain "administrative" in the name
Get-ChildItem -Path "C:\Path\To\Search" -Filter "*administrative*" -Recurse
q initialize a static map in golang
staticMap := map[string]int{
"apple": 1,
"banana": 2,
"cherry": 3,
}
q greet fn in PowerShell
function Greet {
param (
[string]$Name = "Guest"
)
Write-Host "Hello, $Name! Welcome to PowerShell!"
}
q create a generator function in python for dates
from datetime import datetime, timedelta
def date_generator(start_date, end_date):
current_date = start_date
while current_date <= end_date:
yield current_date
current_date += timedelta(days=1)