-
make a recent version ISO using https://uupdump.net/
-
choose Windows 10 scheme, install Windows 11 on top of it. with Windows 10 scheme (the OS selection window) you don't get forced to set tpm, nor to encrypt the hd.
-
(direct continue 1. ) avoid encrypting the hd or any files, remove tpm component.
-
sound and network can be set disabled as well as not to auto enable on boot. do that.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| /** | |
| * Worker-based JSON serializer. | |
| * | |
| * @fileoverview | |
| * Serializes JavaScript values to UTF-8 JSON bytes in an inline Web Worker. | |
| * | |
| * @const {Object} | |
| */ | |
| const default_options = Object.freeze({ | |
| detect_circular_references: true, |
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
| "use strict"; | |
| const paths = process.argv.slice(2) //actual array of arguments.callee | |
| ,n_paths = paths.length //amount of arguments | |
| ,n_cpus = Math.max(1, require("os").availableParallelism() - 1) //require("os").cpus().length //maximum amount of parallel jobs, good practice is to keep 1 CPU free. | |
| ,n_workers = Math.max(1, Math.min(n_paths || 1, n_cpus)) //amount of array to generate from 1 to top-capped by amount of CPUs, unless there are less arguments than CPUs in which case choose exact amount by amount of arguments. | |
| ,n_ratio = n_paths / n_workers //float. represents the average number of input items per job. fractional value is important. It preserves the information about where the extra items should be placed. | |
| ,workers_data = new Array(n_workers) //pre-allocate empty array for array of a |
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
| "use strict"; | |
| const args = process.argv.slice(2) //actual array of arguments.callee | |
| ,n_args = args.length //amount of arguments | |
| ,n_cpus = Math.max(1, require("os").availableParallelism() - 1); //require("os").cpus().length //maximum amount of parallel jobs, good practice is to keep 1 CPU free. | |
| ,n_arrays = Math.max(1, Math.min(n_args || 1, n_cpus)) //amount of array to generate from 1 to top-capped by amount of CPUs, unless there are less arguments than CPUs in which case choose exact amount by amount of arguments. | |
| ,n_ratio = n_args / n_arrays //float. represents the average number of input items per job. fractional value is important. It preserves the information about where the extra items should be placed. | |
| ,jobs = new Array(n_arrays) //pre-allocate empty array for array of arrays. | |
| ; |
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
| ::@echo off | |
| chcp 65001 1>nul 2>nul | |
| goto LOOP | |
| ::----------------------------------------------------------------- | |
| :PROCEDURE_FILE | |
| setlocal | |
| ::--------------------------------------- |
-af "loudnorm=I=-16:TP=-1.5:LRA=30"-af "loudnorm=I=-16:TP=-1.5:LRA=10"-af "loudnorm=I=-16:TP=-1.5:LRA=5"
All three target roughly the same overall loudness and peak level:
- Integrated loudness: -16 LUFS
- True peak: -1.5 dBTP
The difference is the target loudness range (LRA):
- https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/2fbefd36-dded-41f5-afda-333919c6570e/MicrosoftEdgePolicyTemplates.cab
- https://github.com/mcmilk/7-Zip-zstd/releases/latest
- MicrosoftEdgePolicyTemplates.cab - unpack just the
windows/admx"folder" from the.cabfile. %systemroot%\sysvol\domain\policies\PolicyDefinitions%SystemRoot%\PolicyDefinitions.- copy
msedge.admx,msedgeupdate.admx,msedgewebview2.admx, as well asen-USfolder, optionally include additional language folders if you have them installed on your Windows. - when paste to
%SystemRoot%\PolicyDefinitions, mergeen-USfolder. - open
cmd.exeas admin, runC:\Windows\System32\gpupdate.exe /force(seeUpdating policy... Computer Policy update has completed successfully. User Policy update has completed successfully.) - open
cmd.exeas admin, run%SystemRoot%\system32\mmc.exe C:\Windows\System32\gpedit.msc
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
| /* | |
| running the code, as content script in a web-extension at "document_start" | |
| will probably be better than running timer/loop of discovering elements from DOM, | |
| or having mutation observer listener(s). | |
| this example makes sure all suitable elements are lazyloading | |
| (I also added crossdomain for selected few). | |
| ----------------------------------------------------- |
NewerOlder