This is a SCRIPT-8 cassette.
| # DLCs specifies how we want to handle DLCs when updating games. | |
| enum DLCs { | |
| All # Update all DLCs | |
| Installed # Only update installed DLCs | |
| None # Don't update any DLCs | |
| } | |
| # legendaryUpdateCustomisations is a custom object that we use to store update settings | |
| # to the update process for a specific app. | |
| class legendaryUpdateCustomisations { |
| ## originally based on | |
| ### https://fixtse.com/blog/zy-m100-full-zha-support | |
| ### ( https://gist.githubusercontent.com/fixtse/b95753b84c34b45f49b3116d23b66342/raw/0f84bd6e9b6c174970c7b5fc21078d4b4da06a15/TZE204_ijxvkhd0_e5m9c5hl.py ) | |
| ## with inspiration from | |
| ### https://github.com/zigpy/zha-device-handlers/pull/2525#issuecomment-1826881992 | |
| ## and my own changes and additions | |
| import math | |
| from typing import Dict | |
| from zigpy.profiles import zha |
This is my desktop setup scripts for Windows. It installs a number of apps using scoops (in preference) and failing that, via chocolatey. It also makes a number of customisations and streamlining operations to Windows itself via registry changes and various powershell scripts, the most notable of which is the [Windows 10 Debloater][3] script.
After that, It sets up my [WSL][4] environment, and uses my [linux dotfiles repo][5] to customise that. The aim of this setup is to be a reasonably dev-friendly, secure windows environment with a ready-to-go linux environment setup via WSL. More customisations will be made as things like 'controlled folder access exceptions' and other things get discovered through usage.
| # WSL: Try to run .exe versions if they exist and the non .exe version doesn't | |
| command_not_found_handle() { | |
| if cmd.exe /c "(where $1 || (help $1 |findstr /V Try)) >nul 2>nul && ($* || exit 0)"; then | |
| return $? | |
| else | |
| if [ -x /usr/lib/command-not-found ]; then | |
| /usr/lib/command-not-found -- "$1" | |
| return $? | |
| elif [ -x /usr/share/command-not-found/command-not-found ]; then | |
| /usr/share/command-not-found/command-not-found -- "$1" |
| Homebrew build logs for httpd on Ubuntu 18.04.1 LTS | |
| Build date: 2018-08-28 10:54:18 |
| Config_readinBat=1 | |
| Config_readinCpu=1 | |
| Config_readinMemoryUsage=1 | |
| Config_readinVolume=1 | |
| Config_borderWidth=10 | |
| Config_rule_#19=.*Wox.*;.*Wox.*;;0;0;0;1;0;1; | |
| Config_rule_#20=Chrome_WidgetWin_1;.*Google Chrome;;1;0;0;0;1;0; | |
| Config_rule_#21=VirtualConsoleClass;Cmder;;1;0;0;0;0;0; |
| #!/bin/bash | |
| web_service='nginx' | |
| config_files="/usr/local/etc/letsencrypt/*.ini" | |
| le_path='/opt/letsencrypt' | |
| exp_limit=30; | |
| do_reload=0; | |
| for config_file in $config_files; do |
Use ## for Period headings, ### for event headings, #### for scene headings. This way exporting to html/markdown/etc makes for nice vertical reading.
Append the tone to the card with a dash, then the tone in italics for light tones (e.g. - *Light*) or bold for dark tones (e.g. - **Dark**)
| <style> | |
| body { | |
| background: url(http://www.startextures.com/starnetblog/wp-content/uploads/2010/09/starnetblog_cloudy_starfield_texture8.jpg); | |
| } | |
| .cards { | |
| background: rgba(0,0,0,.7); | |
| color: #fff; | |
| } | |
| .columns .column .cards { | |
| border :0; |