- Upgrade to Enterprise edition of Windows 10/11 if you are running Home or Pro.
- You can do this through the Change Edition option in the Extras menu in MAS.
- Open the Group Policy Editor. Search for "Edit Group Policy" in search or run
gpedit.msc.
gpedit.msc.If you sometimes find yourself needing to share a file over HTTP, there are not many file-sharing solutions you can use.
This action works by publishing files via GitHub Pages behind an obscure prefix path. It updates the repository README with the URLs, so that you have links to the published files.
You can keep the repository secret, and the files are public but semi-secret, so you can share them without concern that other files will be discovered.
| -- Can be executed from Terminal using "osascript safari_cache_clean.scpt" | |
| -- inspired by http://www.macuser.de/forum/f30/safari-alle-cache-544226/ | |
| set appname to "Safari" | |
| if appIsRunning(appname) then | |
| set started to true | |
| -- Quit App | |
| tell application appname to quit | |
| else |
My top three pieces of advice for people getting started with voice agents.
Spend time up front understanding why latency and instruction following accuracy drive voice AI tech choices.
You will need to add significant tooling complexity as you go from proof of concept to production. Prepare for that. Especially important: build lightweight evals as early as you can.
The right path is: start with a proven, "best practices" tech stack -> get everything working one piece at a time -> deploy to real-world users and collect data -> then think about optimizing cost/latency/etc.
Note
This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.
How to use this script:
Console tab| #Requires -RunAsAdministrator | |
| # Unlock-PowerCfg - v22.05.11 | |
| # Disable "Connected Standby" | |
| Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Power' -Name 'CSEnabled' -Value 0 -Force | |
| # Get Power Settings entries and add/set 'Attributes' to 2 to unhide | |
| $PowerCfg = (Get-ChildItem 'HKLM:\SYSTEM\CurrentControlSet\Control\Power\PowerSettings' -Recurse).Name -notmatch '\bDefaultPowerSchemeValues|(\\[0-9]|\b255)$' | |
| foreach ($item in $PowerCfg) { Set-ItemProperty -Path $item.Replace('HKEY_LOCAL_MACHINE','HKLM:') -Name 'Attributes' -Value 2 -Force } |