-
Prepare a folder where you want your backup to be.
-
Install rclone for your system
-
Run the webdav server using rclone
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
| // UOS 或 deepin 打包流程 | |
| // 参考 https://www.vvave.net/archives/how-to-build-a-debian-series-distros-installation-package.html | |
| // sudo apt-get install dh-make | |
| // sudo apt-get install build-essential | |
| const fs = require('fs-extra'); | |
| const path = require('path'); | |
| const { spawn } = require('child_process'); | |
| const globby = require('globby'); |
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
| # This script will manually rip out all VMware Tools registry entries and files for Windows 2008-2019 | |
| # Tested for 2019, 2016, and probably works on 2012 R2 after the 2016 fixes. | |
| # This function pulls out the common ID used for most of the VMware registry entries along with the ID | |
| # associated with the MSI for VMware Tools. | |
| function Get-VMwareToolsInstallerID { | |
| foreach ($item in $(Get-ChildItem Registry::HKEY_CLASSES_ROOT\Installer\Products)) { | |
| If ($item.GetValue('ProductName') -eq 'VMware Tools') { | |
| return @{ | |
| reg_id = $item.PSChildName; |
Moved to skeeto/scratch/aidrivers
These are notes to the stream: https://youtu.be/S9V-pcTrdL8
- We are not aware of a lot of GNU software available to us.
- Seems that Guix more hacker-friendly/explorable.
| Description | Nix | Guix | Comment |
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
| # frozen_string_literal: true | |
| require 'socket' | |
| require 'bindata' | |
| class DnsHeader < BinData::Record | |
| endian :big | |
| uint16 :transaction_id | |
| bit1 :flag_QR |
Electron is tricky to get set up on Windows Subsystem for Linux, but it can work!
Four things needed overall:
- you need WSL2, not WSL1
- you need node, of course, and that part isn't so bad
- you need to
apt installseveral dependencies - you need an X Server so it can display the electron GUI over in Windows-land
Setup instructions, in order:
If you need GCC newer than version 4.8.5(default version of centos 7), you can get it by using centos-release-scl
yum install -y centos-release-scl
yum install -y devtoolset-9
>scl enable devtoolset-9 bash
Install Multiple Python Versions for Specific Project
