- local: use
fastmcp
directly - production: use
fastmcp
as a gateway andcloudflare
for ssl/dns
https://***.ngrok-free.dev/mcp
Get-ScheduledTask -TaskPath '\' | ForEach-Object { | |
$xml = [xml](Export-ScheduledTask -TaskName $_.TaskName -TaskPath $_.TaskPath -ErrorAction SilentlyContinue) | |
$node = $xml.SelectSingleNode("/*[local-name()='Task']/*[local-name()='Settings']/*[local-name()='Priority']") | |
$p = 7 | |
if ($node -and $node.InnerText) { $p = [int]$node.InnerText } | |
[pscustomobject]@{ | |
Task = "$($_.TaskPath)$($_.TaskName)".TrimStart('\') | |
Priority = $p | |
} | |
} | Format-Table -Auto |
java -version
SET SESSION group_concat_max_len = 1000000; |
<script type="speculationrules"> | |
{ | |
"prerender": [ | |
{ | |
"where": { "href_matches": "/*" }, | |
"eagerness": "eager" | |
} | |
] | |
} | |
</script> |
sudo apt install python3-lxml
python -m venv venv
source venv/bin/activate
pip install pykeepass
python script.py /path/to/file.kdbx
import random | |
# ... | |
class Example: | |
staticVariable = "baz" | |
def __init__(self): |