| Program | Category | Notes |
|---|---|---|
| 7+ Taskbar Tweaker | Tweaking | Adjust taskbar behavior. |
| AltSnap | Window management | Easily move windows with mouse. |
| Autoruns | Startup management | Turn off startup processes. |
| CCleaner | System cleanup | Upsells are a little annoying. |
| dBpoweramp | Audio encoder | Transcode music batches in parallel. |
| DisplayFusion | Tweaking | Plethora of multi-monitor, desktop, and shell tweaks. |
| Driver Store Explorer | System cleanup | Uninstall unused drivers. |
- Save the
disable-program-reopen.ps1file below to a directory on your computer, such as%SYSTEMROOT%\System32\GroupPolicy\User\Scripts\Logon. - Allow unsigned local PowerShell scripts to run on your computer.
- Open PowerShell as an administrator.
- Run the following command and answer
Ywhen it prompts you.Set-ExecutionPolicy RemoteSigned
- Set a Group Policy to run this script when users log on.
- Open the Local Group Policy Editor (
gpedit.msc, or search for Group Policy in the Start Menu).
- Your server is running Windows Server 2019.
- Your client is using PuTTY or OpenSSH Client, and you know how to connect to servers and set private keys.
- Your server user is an administrator.
- Install the OpenSSH Server feature.
- Go to Settings › Apps › Apps & features › Manage optional features.
- Select + Add a feature.
- Select OpenSSH Server, then select Install.
- Windows
- Apache httpd 2.4.50 x64 VC16
- mod_authn_ntlm
- Restore
- Advanced Mode
- Restore an entire volume
- Pick the Source snapshot and wait for it to finish matching
- For the Destination, pick any drive (it won't be overwritten) and create a new Subvolume in it (it's just a new subdirectory which will contain the restored files)
- Change the restore method to Restore Missing Files Only
- In Files Chosen, deselect the root drive so that there are 0 files chosen
- In Options → More Choices → Windows → System, ensure Restore System State is checked. I also disabled Restore Security Information because registry hive files have very restrictive permissions by default, which makes them harder to work with while restoring.
- Restore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import xapi from 'xapi'; | |
| const cameraBrightnessCheckboxWidgetId = "camera_brightness_checkbox"; | |
| const brightnessModeConfiguration = xapi.Config.Cameras.Camera["1"].Brightness.Mode; | |
| brightnessModeConfiguration.on(renderBrightnessCheckbox); | |
| render(); | |
| async function render(){ | |
| return renderBrightnessCheckbox(await brightnessModeConfiguration.get()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| grep --include '*.js' --recursive --invert-match --line-regexp --count --exclude-dir='lib' --exclude-dir='thirdparty' --exclude-dir='vendor' '\s*' . | awk -F : '{ sum += $2 } END { print sum }' |

