Append this to your ~/.zshrc file.
function preexec() {
timer=$(($(date +%s%0N)/1000000))| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>A simple clock</title> | |
| </head> | |
| <body translate="no" > |
| # Extremely basic development setup to serve the current directory at http://localhost:9001 | |
| # Start nginx in this directory with `nginx -p . -c nginx.conf` | |
| # Stop nginx with `nginx -p . -s stop` | |
| events {} | |
| http { | |
| # Serve files with correct mimetypes on OSX | |
| # location may have to be adjusted depending on your OS and nginx install | |
| include /usr/local/etc/nginx/mime.types; |
| youtube-dl -x --continue --add-metadata --embed-thumbnail --audio-format mp3 --audio-quality 0 --metadata-from-title="%(artist)s - %(title)s" --prefer-ffmpeg -o "%(title)s.%(ext)s" $1 |
| Squeezebox API | |
| -------------- | |
| This document outlines the JSON RPC interface with a squeezeserver to control and obtain information about squeezeboxes. | |
| JSON : JavaScript Object Notation | |
| RPC : Remote Procedure Call | |
| Uses POST requests sent to: | |
| http://<squeezeserver_address>:9000/jsonrpc.js |
| git_protocol: ssh | |
| aliases: | |
| personal: '!cp ~/.config/gh/hosts.yml.personal ~/.config/gh/hosts.yml && gh auth status' | |
| work: '!cp ~/.config/gh/hosts.yml.work ~/.config/gh/hosts.yml && gh auth status' |
| Function Install-Scoop { | |
| New-ItemProperty -path "HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ` | |
| -propertyType ExpandString ` | |
| -name "SCOOP_GLOBAL" ` | |
| -value "${ENV:PROGRAMDATA}\scoop" | |
| Invoke-WebRequest 'https://get.scoop.sh' | Invoke-Expression | |
| 'scoop install Git-with-OpenSSH Sudo Which --global' | Set-Content -path temp_script.ps1 |
| winget install --id=Google.Chrome -e ; winget install --id=Mozilla.Firefox -e ; winget install --id=Discord.Discord -e ; winget install --id=WhatsApp.WhatsApp -e ; winget install --id=OpenJS.Nodejs -e ; winget install --id=Microsoft.WindowsTerminal -e ; winget install --id=Amazon.AWSCLI -e ; winget install --id=CPUID.CPU-Z -e ; winget install --id=Cryptomator.Cryptomator -e ; winget install --id=hiyohiyo.CrystalDiskInfo -e ; winget install --id=Git.Git -e ; winget install --id=plex.plexmediaplayer -e ; winget install --id=Microsoft.PowerToys -e ; winget install --id=SlackTechnologies.Slack -e ; winget install --id=Microsoft.Skype -e ; winget install --id=Valve.Steam -e ; winget install --id=Spotify.Spotify -e ; winget install --id=Microsoft.Teams -e ; winget install --id=Ubisoft.Uplay -e ; winget install --id=Microsoft.VisualStudioCode -e ; winget install --id=RARLab.WinRAR -e ; winget install --id=WiresharkFoundation.Wireshark -e |
| // Simplest possible custom card | |
| // Does nothing. Doesn't look like anything | |
| class MyCustomCard extends HTMLElement { | |
| setConfig(config) { | |
| // The config object contains the configuration specified by the user in ui-lovelace.yaml | |
| // for your card. | |
| // It will minimally contain: | |
| // config.type = "custom:my-custom-card" |